Free cookie consent management tool by TermsFeed Policy Generator

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

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

initial import of webservice connector #1208

File size: 3.6 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  <build>
28    <plugins>
29      <plugin>
30        <artifactId>maven-compiler-plugin</artifactId>
31        <configuration>
32          <source>1.6</source>
33          <target>1.6</target>
34        </configuration>
35      </plugin>
36
37      <plugin>
38        <groupId>org.codehaus.mojo</groupId>
39        <artifactId>jaxws-maven-plugin</artifactId>
40        <executions>
41          <execution>
42            <id>generate-stubs</id>
43            <phase>process-classes</phase>
44            <goals>
45              <goal>wsimport</goal>
46            </goals>
47            <configuration>
48              <packageName>at.hl.wsclient.okb</packageName>
49              <sourceDestDir>${basedir}/generated/jax-ws</sourceDestDir>
50              <wsdlLocation>http://localhost:8732/Design_Time_Addresses/OKB-3.3/OKBService?wsdl</wsdlLocation>
51              <wsdlDirectory>${basedir}/src/main/resources</wsdlDirectory>
52              <!-- <wsdlUrls> <wsdlUrl>http://localhost:8732/Design_Time_Addresses/OKB-3.3/AuthenticationService?wsdl</wsdlUrl>
53                </wsdlUrls> -->
54              <wsdlFiles>
55                <wsdlFile>OKBService.wsdl</wsdlFile>
56              </wsdlFiles>
57              <xnocompile>true</xnocompile>
58              <extension>true</extension>
59              <verbose>true</verbose>
60              <!-- <bindingDirectory>/bindings</bindingDirectory> -->
61            </configuration>
62          </execution>
63        </executions>
64
65      </plugin>
66
67
68
69    </plugins>
70
71  </build>
72  <dependencies>
73    <dependency>
74      <groupId>javax.xml.bind</groupId>
75      <artifactId>jaxb-api</artifactId>
76      <version>2.0</version>
77    </dependency>
78
79    <!-- <dependency> <groupId>org.glassfish.metro</groupId> <artifactId>metro-standalone</artifactId>
80      <version>2.1-b17</version> </dependency> <dependency> <groupId>org.glassfish.metro</groupId>
81      <artifactId>bundles</artifactId> <version>2.1-b16</version> </dependency> -->
82    <dependency>
83      <groupId>org.glassfish.metro</groupId>
84      <artifactId>webservices-api</artifactId>
85      <version>2.1-b17</version>
86    </dependency>
87
88    <dependency>
89      <groupId>org.glassfish.metro</groupId>
90      <artifactId>webservices-extra</artifactId>
91      <version>2.1-b17</version>
92    </dependency>
93
94    <dependency>
95      <groupId>org.glassfish.metro</groupId>
96      <artifactId>webservices-extra-api</artifactId>
97      <version>2.1-b17</version>
98    </dependency>
99
100    <dependency>
101      <groupId>org.glassfish.metro</groupId>
102      <artifactId>webservices-rt</artifactId>
103      <version>2.1-b17</version>
104    </dependency>
105
106    <dependency>
107      <groupId>org.glassfish.metro</groupId>
108      <artifactId>webservices-tools</artifactId>
109      <version>2.1-b17</version>
110    </dependency>
111
112    <dependency>
113      <groupId>junit</groupId>
114      <artifactId>junit</artifactId>
115      <version>4.8.1</version>
116    </dependency>
117  </dependencies>
118</project>
Note: See TracBrowser for help on using the repository browser.