Free cookie consent management tool by TermsFeed Policy Generator

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

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

restructure of service project #1218

File size: 4.2 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.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>at.hl.wsclient.okb</packageName>
67
68              <wsdlLocation>http://localhost:8732/Design_Time_Addresses/OKB-3.3/OKBService?wsdl</wsdlLocation>
69              <wsdlDirectory>${basedir}/src/main/resources</wsdlDirectory>
70              <wsdlFiles>
71                <wsdlFile>OKBService.wsdl</wsdlFile>
72              </wsdlFiles><!-- <wsdlUrls> <wsdlUrl>http://localhost:8732/Design_Time_Addresses/OKB-3.3/OKBService?wsdl</wsdlUrl>
73                </wsdlUrls> -->
74              <extension>true</extension>
75              <!-- <bindingDirectory>/bindings</bindingDirectory> -->
76            </configuration>
77          </execution>
78        </executions>
79
80      </plugin>
81
82
83
84    </plugins>
85
86  </build>
87  <dependencies><!-- <dependency> <groupId>com.sun.xml.ws</groupId> <artifactId>jaxws-tools</artifactId>
88      <version>2.1.7</version> </dependency> -->
89    <dependency>
90      <groupId>javax.xml.bind</groupId>
91      <artifactId>jaxb-api</artifactId>
92      <version>2.0</version>
93    </dependency>
94
95    <!-- <dependency> <groupId>org.glassfish.metro</groupId> <artifactId>metro-standalone</artifactId>
96      <version>2.1-b17</version> </dependency> <dependency> <groupId>org.glassfish.metro</groupId>
97      <artifactId>bundles</artifactId> <version>2.1-b16</version> </dependency> -->
98    <dependency>
99      <groupId>org.glassfish.metro</groupId>
100      <artifactId>webservices-api</artifactId>
101      <version>2.1-b17</version>
102    </dependency>
103    <dependency>
104      <groupId>com.google.guava</groupId>
105      <artifactId>guava</artifactId>
106      <version>r07</version>
107    </dependency>
108    <dependency>
109      <groupId>org.glassfish.metro</groupId>
110      <artifactId>webservices-extra</artifactId>
111      <version>2.1-b17</version>
112    </dependency>
113
114    <dependency>
115      <groupId>org.glassfish.metro</groupId>
116      <artifactId>webservices-extra-api</artifactId>
117      <version>2.1-b17</version>
118    </dependency>
119
120    <dependency>
121      <groupId>org.glassfish.metro</groupId>
122      <artifactId>webservices-rt</artifactId>
123      <version>2.1-b17</version>
124    </dependency>
125
126    <dependency>
127      <groupId>org.glassfish.metro</groupId>
128      <artifactId>webservices-tools</artifactId>
129      <version>2.1-b17</version>
130    </dependency>
131
132    <dependency>
133      <groupId>junit</groupId>
134      <artifactId>junit</artifactId>
135      <version>4.8.1</version>
136    </dependency>
137  </dependencies>
138</project>
Note: See TracBrowser for help on using the repository browser.