forked from FACT-Finder/fact-finder-java-ws-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
33 lines (32 loc) · 1.09 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>de.factfinder</groupId>
<artifactId>fff-ws-runner</artifactId>
<version>6.11.1</version>
<dependencies>
<dependency>
<!--
This package contains the generated webservice-client-classes.
You can either create your own ws-client based on the WSDL or requested this package from your Omikron contact.
-->
<groupId>de.factfinder</groupId>
<artifactId>fff-ws-client</artifactId>
<version>6.11.1</version>
</dependency>
<dependency>
<groupId>commons-httpclient</groupId>
<artifactId>commons-httpclient</artifactId>
<version>3.1</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.16</version>
</dependency>
<dependency>
<groupId>axis</groupId>
<artifactId>axis-wsdl4j</artifactId>
<version>1.5.1</version>
</dependency>
</dependencies>
</project>