Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKBJavaConnector/pom.xml @ 5761

Last change on this file since 5761 was 5761, checked in by mholper, 13 years ago

first Unit-Test build against new AdministrationService #1441

File size: 4.4 KB
Line 
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  <!-- <parent> <artifactId>jada-parent</artifactId> <groupId>at.oenb.jada</groupId>
4    <version>0.0.2-SNAPSHOT</version> </parent> -->
5  <modelVersion>4.0.0</modelVersion>
6  <groupId>com.heuristiclab.okb</groupId>
7  <artifactId>connector</artifactId>
8  <packaging>jar</packaging>
9  <name>connector</name>
10  <version>0.0.1-SNAPSHOT</version>
11  <description>contains a java client for HeuristicLab OKB WCF-Service</description>
12
13  <repositories>
14    <repository>
15      <id>maven2-repository.dev.java.net</id>
16      <name>Java.net Maven 2 Repository</name>
17      <url>http://download.java.net/maven/2</url>
18    </repository>
19    <repository>
20      <url>http://download.java.net/maven/2/</url>
21      <id>metro</id>
22      <layout>default</layout>
23      <name>Repository for library Library[metro]</name>
24    </repository>
25  </repositories>
26
27  <pluginRepositories>
28    <pluginRepository>
29      <url>http://download.java.net/maven/2</url>
30      <id>Java dot Net</id>
31      <layout>default</layout>
32      <name>Repository for JAX-WS commons</name>
33    </pluginRepository>
34  </pluginRepositories>
35
36  <build>
37    <plugins>
38      <plugin>
39        <artifactId>maven-compiler-plugin</artifactId>
40        <configuration>
41          <source>1.5</source>
42          <target>1.5</target>
43        </configuration>
44      </plugin>
45      <plugin>
46        <artifactId>maven-assembly-plugin</artifactId>
47        <version>2.2-beta-5</version>
48        <configuration>
49          <descriptorRefs>
50            <descriptorRef>jar-with-dependencies</descriptorRef>
51          </descriptorRefs>
52        </configuration>
53      </plugin>
54      <plugin>
55        <groupId>org.codehaus.mojo</groupId>
56        <artifactId>jaxws-maven-plugin</artifactId>
57        <version>1.10</version>
58        <executions>
59          <execution>
60            <id>generate-stubs</id>
61            <phase>generate-sources</phase>
62            <goals>
63              <goal>wsimport</goal>
64            </goals>
65            <configuration>
66
67              <wsdlUrls>
68                <wsdlLocation>http://services.heuristiclab.com/OKB.SPR-3.3/AdministrationService.svc?wsdl</wsdlLocation>
69                <wsdlLocation>http://services.heuristiclab.com/OKB.SPR-3.3/RunCreationService.svc?wsdl</wsdlLocation>
70                <wsdlLocation>http://services.heuristiclab.com/OKB.SPR-3.3/QueryService.svc?wsdl</wsdlLocation>
71                <wsdlLocation>http://services.heuristiclab.com/OKB.SPR-3.3/AuthenticationService.svc?wsdl</wsdlLocation>
72              </wsdlUrls>
73
74
75
76              <extension>true</extension>
77              <!-- <bindingDirectory>/bindings</bindingDirectory> -->
78              <xnocompile>true</xnocompile>
79              <verbose>true</verbose>
80
81            </configuration>
82          </execution>
83        </executions>
84
85      </plugin>
86
87
88
89    </plugins>
90
91  </build>
92  <dependencies><!-- <dependency> <groupId>com.sun.xml.ws</groupId> <artifactId>jaxws-tools</artifactId>
93      <version>2.1.7</version> </dependency> -->
94    <dependency>
95      <groupId>javax.xml.bind</groupId>
96      <artifactId>jaxb-api</artifactId>
97      <version>2.0</version>
98    </dependency>
99
100    <!-- <dependency> <groupId>org.glassfish.metro</groupId> <artifactId>metro-standalone</artifactId>
101      <version>2.1-b17</version> </dependency> <dependency> <groupId>org.glassfish.metro</groupId>
102      <artifactId>bundles</artifactId> <version>2.1-b16</version> </dependency> -->
103    <dependency>
104      <groupId>org.glassfish.metro</groupId>
105      <artifactId>webservices-api</artifactId>
106      <version>2.1-b17</version>
107    </dependency>
108    <dependency>
109      <groupId>com.google.guava</groupId>
110      <artifactId>guava</artifactId>
111      <version>r07</version>
112    </dependency>
113    <dependency>
114      <groupId>org.glassfish.metro</groupId>
115      <artifactId>webservices-extra</artifactId>
116      <version>2.1-b17</version>
117    </dependency>
118
119    <dependency>
120      <groupId>org.glassfish.metro</groupId>
121      <artifactId>webservices-extra-api</artifactId>
122      <version>2.1-b17</version>
123    </dependency>
124
125    <dependency>
126      <groupId>org.glassfish.metro</groupId>
127      <artifactId>webservices-rt</artifactId>
128      <version>2.1-b17</version>
129    </dependency>
130
131    <dependency>
132      <groupId>org.glassfish.metro</groupId>
133      <artifactId>webservices-tools</artifactId>
134      <version>2.1-b17</version>
135    </dependency>
136
137    <dependency>
138      <groupId>junit</groupId>
139      <artifactId>junit</artifactId>
140      <version>4.8.1</version>
141    </dependency>
142  </dependencies>
143</project>
Note: See TracBrowser for help on using the repository browser.