Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKBJavaConnector/pom.xml @ 5673

Last change on this file since 5673 was 5673, checked in by bfarka, 13 years ago

added and mirgrated old java connector project

Added 4 new WSDL Files #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              <packageName>com.heuristiclab.okb.service</packageName>
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            </configuration>
79          </execution>
80        </executions>
81
82      </plugin>
83
84
85
86    </plugins>
87
88  </build>
89  <dependencies><!-- <dependency> <groupId>com.sun.xml.ws</groupId> <artifactId>jaxws-tools</artifactId>
90      <version>2.1.7</version> </dependency> -->
91    <dependency>
92      <groupId>javax.xml.bind</groupId>
93      <artifactId>jaxb-api</artifactId>
94      <version>2.0</version>
95    </dependency>
96
97    <!-- <dependency> <groupId>org.glassfish.metro</groupId> <artifactId>metro-standalone</artifactId>
98      <version>2.1-b17</version> </dependency> <dependency> <groupId>org.glassfish.metro</groupId>
99      <artifactId>bundles</artifactId> <version>2.1-b16</version> </dependency> -->
100    <dependency>
101      <groupId>org.glassfish.metro</groupId>
102      <artifactId>webservices-api</artifactId>
103      <version>2.1-b17</version>
104    </dependency>
105    <dependency>
106      <groupId>com.google.guava</groupId>
107      <artifactId>guava</artifactId>
108      <version>r07</version>
109    </dependency>
110    <dependency>
111      <groupId>org.glassfish.metro</groupId>
112      <artifactId>webservices-extra</artifactId>
113      <version>2.1-b17</version>
114    </dependency>
115
116    <dependency>
117      <groupId>org.glassfish.metro</groupId>
118      <artifactId>webservices-extra-api</artifactId>
119      <version>2.1-b17</version>
120    </dependency>
121
122    <dependency>
123      <groupId>org.glassfish.metro</groupId>
124      <artifactId>webservices-rt</artifactId>
125      <version>2.1-b17</version>
126    </dependency>
127
128    <dependency>
129      <groupId>org.glassfish.metro</groupId>
130      <artifactId>webservices-tools</artifactId>
131      <version>2.1-b17</version>
132    </dependency>
133
134    <dependency>
135      <groupId>junit</groupId>
136      <artifactId>junit</artifactId>
137      <version>4.8.1</version>
138    </dependency>
139  </dependencies>
140</project>
Note: See TracBrowser for help on using the repository browser.