Free cookie consent management tool by TermsFeed Policy Generator

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

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

correction generation of jax-ws sources (from wsdl) #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              <sourceDestDir>${basedir}/generated/jax-ws</sourceDestDir>
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              <xnocompile>true</xnocompile>
67              <extension>true</extension>
68              <verbose>true</verbose>
69              <!-- <bindingDirectory>/bindings</bindingDirectory> -->
70            </configuration>
71          </execution>
72        </executions>
73
74      </plugin>
75
76
77
78    </plugins>
79
80  </build>
81  <dependencies><!-- <dependency> <groupId>com.sun.xml.ws</groupId> <artifactId>jaxws-tools</artifactId>
82      <version>2.1.7</version> </dependency> -->
83    <dependency>
84      <groupId>javax.xml.bind</groupId>
85      <artifactId>jaxb-api</artifactId>
86      <version>2.0</version>
87    </dependency>
88
89    <!-- <dependency> <groupId>org.glassfish.metro</groupId> <artifactId>metro-standalone</artifactId>
90      <version>2.1-b17</version> </dependency> <dependency> <groupId>org.glassfish.metro</groupId>
91      <artifactId>bundles</artifactId> <version>2.1-b16</version> </dependency> -->
92    <dependency>
93      <groupId>org.glassfish.metro</groupId>
94      <artifactId>webservices-api</artifactId>
95      <version>2.1-b17</version>
96    </dependency>
97
98    <dependency>
99      <groupId>org.glassfish.metro</groupId>
100      <artifactId>webservices-extra</artifactId>
101      <version>2.1-b17</version>
102    </dependency>
103
104    <dependency>
105      <groupId>org.glassfish.metro</groupId>
106      <artifactId>webservices-extra-api</artifactId>
107      <version>2.1-b17</version>
108    </dependency>
109
110    <dependency>
111      <groupId>org.glassfish.metro</groupId>
112      <artifactId>webservices-rt</artifactId>
113      <version>2.1-b17</version>
114    </dependency>
115
116    <dependency>
117      <groupId>org.glassfish.metro</groupId>
118      <artifactId>webservices-tools</artifactId>
119      <version>2.1-b17</version>
120    </dependency>
121
122    <dependency>
123      <groupId>junit</groupId>
124      <artifactId>junit</artifactId>
125      <version>4.8.1</version>
126    </dependency>
127  </dependencies>
128</project>
Note: See TracBrowser for help on using the repository browser.