Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKBJavaConnector/HLOKBWebClient/pom.xml @ 5229

Last change on this file since 5229 was 5229, checked in by bfarka, 14 years ago

restructure of service project #1218

File size: 4.0 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>at.hl.wsclient</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.6</source>
42          <target>1.6</target>
43        </configuration>
44      </plugin>
45
46      <plugin>
47        <groupId>org.codehaus.mojo</groupId>
48        <artifactId>jaxws-maven-plugin</artifactId>
49        <version>1.10</version>
50        <executions>
51          <execution>
52            <id>generate-stubs</id>
53            <phase>generate-sources</phase>
54            <goals>
55              <goal>wsimport</goal>
56            </goals>
57            <configuration>
58              <packageName>at.hl.wsclient.okb</packageName>
59             
60              <wsdlLocation>http://localhost:8732/Design_Time_Addresses/OKB-3.3/OKBService?wsdl</wsdlLocation>
61              <wsdlDirectory>${basedir}/src/main/resources</wsdlDirectory>
62              <wsdlFiles>
63                <wsdlFile>OKBService.wsdl</wsdlFile>
64              </wsdlFiles><!-- <wsdlUrls> <wsdlUrl>http://localhost:8732/Design_Time_Addresses/OKB-3.3/OKBService?wsdl</wsdlUrl>
65                </wsdlUrls> -->
66              <extension>true</extension>
67              <!-- <bindingDirectory>/bindings</bindingDirectory> -->
68            </configuration>
69          </execution>
70        </executions>
71
72      </plugin>
73
74
75
76    </plugins>
77
78  </build>
79  <dependencies><!-- <dependency> <groupId>com.sun.xml.ws</groupId> <artifactId>jaxws-tools</artifactId>
80      <version>2.1.7</version> </dependency> -->
81    <dependency>
82      <groupId>javax.xml.bind</groupId>
83      <artifactId>jaxb-api</artifactId>
84      <version>2.0</version>
85    </dependency>
86
87    <!-- <dependency> <groupId>org.glassfish.metro</groupId> <artifactId>metro-standalone</artifactId>
88      <version>2.1-b17</version> </dependency> <dependency> <groupId>org.glassfish.metro</groupId>
89      <artifactId>bundles</artifactId> <version>2.1-b16</version> </dependency> -->
90    <dependency>
91      <groupId>org.glassfish.metro</groupId>
92      <artifactId>webservices-api</artifactId>
93      <version>2.1-b17</version>
94    </dependency>
95    <dependency>
96      <groupId>com.google.guava</groupId>
97      <artifactId>guava</artifactId>
98      <version>r07</version>
99    </dependency>
100    <dependency>
101      <groupId>org.glassfish.metro</groupId>
102      <artifactId>webservices-extra</artifactId>
103      <version>2.1-b17</version>
104    </dependency>
105
106    <dependency>
107      <groupId>org.glassfish.metro</groupId>
108      <artifactId>webservices-extra-api</artifactId>
109      <version>2.1-b17</version>
110    </dependency>
111
112    <dependency>
113      <groupId>org.glassfish.metro</groupId>
114      <artifactId>webservices-rt</artifactId>
115      <version>2.1-b17</version>
116    </dependency>
117
118    <dependency>
119      <groupId>org.glassfish.metro</groupId>
120      <artifactId>webservices-tools</artifactId>
121      <version>2.1-b17</version>
122    </dependency>
123
124    <dependency>
125      <groupId>junit</groupId>
126      <artifactId>junit</artifactId>
127      <version>4.8.1</version>
128    </dependency>
129  </dependencies>
130</project>
Note: See TracBrowser for help on using the repository browser.