| 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
|---|
| 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
|---|
| 3 | <modelVersion>4.0.0</modelVersion> |
|---|
| 4 | <groupId>org.bridgedb.webservice</groupId> |
|---|
| 5 | <artifactId>org.bridgedb.webservice.cronos</artifactId> |
|---|
| 6 | <name>BridgeDb Webservice Cronos</name> |
|---|
| 7 | |
|---|
| 8 | <parent> |
|---|
| 9 | <artifactId>bridgedb-bundle</artifactId> |
|---|
| 10 | <groupId>org.bridgedb</groupId> |
|---|
| 11 | <version>1.1.1-SNAPSHOT</version> |
|---|
| 12 | </parent> |
|---|
| 13 | |
|---|
| 14 | <build> |
|---|
| 15 | <directory>target</directory> |
|---|
| 16 | <outputDirectory>target/classes</outputDirectory> |
|---|
| 17 | <finalName>${artifactId}-${version}</finalName> |
|---|
| 18 | <testOutputDirectory>target/test-classes</testOutputDirectory> |
|---|
| 19 | <sourceDirectory>src</sourceDirectory> |
|---|
| 20 | <scriptSourceDirectory>scripts</scriptSourceDirectory> |
|---|
| 21 | <testSourceDirectory>test</testSourceDirectory> |
|---|
| 22 | <resources> |
|---|
| 23 | <resource> |
|---|
| 24 | <directory>resources</directory> |
|---|
| 25 | </resource> |
|---|
| 26 | </resources> |
|---|
| 27 | <testResources> |
|---|
| 28 | <testResource> |
|---|
| 29 | <directory>test-resources</directory> |
|---|
| 30 | </testResource> |
|---|
| 31 | </testResources> |
|---|
| 32 | |
|---|
| 33 | <plugins> |
|---|
| 34 | <plugin> |
|---|
| 35 | <groupId>org.apache.cxf</groupId> |
|---|
| 36 | <artifactId>cxf-codegen-plugin</artifactId> |
|---|
| 37 | <version>2.2.6</version> |
|---|
| 38 | <executions> |
|---|
| 39 | <execution> |
|---|
| 40 | <id>generate-sources</id> |
|---|
| 41 | <phase>generate-sources</phase> |
|---|
| 42 | <configuration> |
|---|
| 43 | <sourceRoot>${basedir}/src-axis</sourceRoot> |
|---|
| 44 | <wsdlOptions> |
|---|
| 45 | <wsdlOption> |
|---|
| 46 | <wsdl>http://mips.helmholtz-muenchen.de/genre/proj/cronos/CronosWSService.wsdl</wsdl> |
|---|
| 47 | <extraargs> |
|---|
| 48 | <extraarg>-p</extraarg> |
|---|
| 49 | <extraarg>org.bridgedb.webservice.cronos</extraarg> |
|---|
| 50 | </extraargs> |
|---|
| 51 | </wsdlOption> |
|---|
| 52 | </wsdlOptions> |
|---|
| 53 | </configuration> |
|---|
| 54 | <goals> |
|---|
| 55 | <goal>wsdl2java</goal> |
|---|
| 56 | </goals> |
|---|
| 57 | </execution> |
|---|
| 58 | </executions> |
|---|
| 59 | </plugin> |
|---|
| 60 | <plugin> |
|---|
| 61 | <groupId>org.codehaus.mojo</groupId> |
|---|
| 62 | <artifactId>build-helper-maven-plugin</artifactId> |
|---|
| 63 | <executions> |
|---|
| 64 | <execution> |
|---|
| 65 | <id>add-source</id> |
|---|
| 66 | <phase>generate-sources</phase> |
|---|
| 67 | <goals> |
|---|
| 68 | <goal>add-source</goal> |
|---|
| 69 | </goals> |
|---|
| 70 | <configuration> |
|---|
| 71 | <sources> |
|---|
| 72 | <source>${basedir}/src-axis</source> |
|---|
| 73 | </sources> |
|---|
| 74 | </configuration> |
|---|
| 75 | </execution> |
|---|
| 76 | </executions> |
|---|
| 77 | </plugin> |
|---|
| 78 | </plugins> |
|---|
| 79 | </build> |
|---|
| 80 | |
|---|
| 81 | <dependencies> |
|---|
| 82 | <dependency> |
|---|
| 83 | <groupId>org.bridgedb</groupId> |
|---|
| 84 | <artifactId>org.bridgedb.bio</artifactId> |
|---|
| 85 | <version>${project.version}</version> |
|---|
| 86 | <scope>compile</scope> |
|---|
| 87 | </dependency> |
|---|
| 88 | <dependency> |
|---|
| 89 | <groupId>commons-discovery</groupId> |
|---|
| 90 | <artifactId>commons-discovery</artifactId> |
|---|
| 91 | <version>0.4</version> |
|---|
| 92 | <type>jar</type> |
|---|
| 93 | <scope>runtime</scope> |
|---|
| 94 | </dependency> |
|---|
| 95 | <dependency> |
|---|
| 96 | <groupId>wsdl4j</groupId> |
|---|
| 97 | <artifactId>wsdl4j</artifactId> |
|---|
| 98 | <version>1.6.2</version> |
|---|
| 99 | <type>jar</type> |
|---|
| 100 | <scope>runtime</scope> |
|---|
| 101 | </dependency> |
|---|
| 102 | <dependency> |
|---|
| 103 | <groupId>org.apache.axis</groupId> |
|---|
| 104 | <artifactId>axis</artifactId> |
|---|
| 105 | <version>1.4</version> |
|---|
| 106 | <type>jar</type> |
|---|
| 107 | </dependency> |
|---|
| 108 | <dependency> |
|---|
| 109 | <groupId>org.apache.axis</groupId> |
|---|
| 110 | <artifactId>axis-jaxrpc</artifactId> |
|---|
| 111 | <version>1.4</version> |
|---|
| 112 | <type>jar</type> |
|---|
| 113 | </dependency> |
|---|
| 114 | </dependencies> |
|---|
| 115 | </project> |
|---|