2012-05-31 22:25:31 +02:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<project
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.gcube.resourcemanagement</groupId>
|
|
|
|
<artifactId>resource-manager</artifactId>
|
2016-09-30 18:03:42 +02:00
|
|
|
<version>2.1.1-SNAPSHOT</version>
|
2012-05-31 22:25:31 +02:00
|
|
|
</parent>
|
|
|
|
<artifactId>resource-manager-stubs</artifactId>
|
|
|
|
<name>Resource Manager Stubs</name>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.core</groupId>
|
|
|
|
<artifactId>gcf</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
<version>2.5</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>copy-config</id>
|
|
|
|
<goals>
|
|
|
|
<goal>copy-resources</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>process-resources</phase>
|
|
|
|
<configuration>
|
|
|
|
<outputDirectory>${project.build.outputDirectory}/META-INF</outputDirectory>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>${configDirectory}</directory>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.gcube.tools</groupId>
|
|
|
|
<artifactId>maven-service-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<wsdls>
|
|
|
|
<wsdl>
|
2012-06-15 17:39:57 +02:00
|
|
|
<name>ResourceBinder</name>
|
|
|
|
<relativePackage>stubs.binder</relativePackage>
|
|
|
|
<namespace>${namespace}/binder</namespace>
|
|
|
|
<additionalMappings>-Nhttp://gcube-system.org/common/vremanagement/types=${basepackage}.stubs.common</additionalMappings>
|
|
|
|
</wsdl>
|
|
|
|
<wsdl>
|
|
|
|
<name>ScopeController</name>
|
|
|
|
<relativePackage>stubs.scontroller</relativePackage>
|
|
|
|
<namespace>${namespace}/controller</namespace>
|
|
|
|
<additionalMappings>-Nhttp://gcube-system.org/common/vremanagement/types=${basepackage}.stubs.common</additionalMappings>
|
|
|
|
</wsdl>
|
|
|
|
<wsdl>
|
|
|
|
<name>Reporting</name>
|
|
|
|
<relativePackage>stubs.reporting</relativePackage>
|
|
|
|
<namespace>${namespace}/reporting</namespace>
|
2012-05-31 22:25:31 +02:00
|
|
|
<additionalMappings>-Nhttp://gcube-system.org/common/vremanagement/types=${basepackage}.stubs.common</additionalMappings>
|
|
|
|
</wsdl>
|
2012-08-07 22:51:16 +02:00
|
|
|
<wsdl>
|
|
|
|
<name>Administration</name>
|
|
|
|
<relativePackage>stubs.administration</relativePackage>
|
|
|
|
<namespace>${namespace}/administration</namespace>
|
|
|
|
<additionalMappings>-Nhttp://gcube-system.org/common/vremanagement/types=${basepackage}.stubs.common</additionalMappings>
|
|
|
|
</wsdl>
|
2012-05-31 22:25:31 +02:00
|
|
|
</wsdls>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>generate-stubs</id>
|
|
|
|
<goals>
|
|
|
|
<goal>stub-gen</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
|
|
<version>1.7</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>add-source</id>
|
|
|
|
<phase>process-sources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>add-source</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<sources>
|
|
|
|
<source>${basedir}/target/generated-sources/stubs</source>
|
|
|
|
</sources>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
</plugins>
|
|
|
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|