]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.ws.client/pom.xml
Centralize SLC modules versions in parent
[gpl/argeo-slc.git] / runtime / org.argeo.slc.support.ws.client / pom.xml
1 <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">
2 <modelVersion>4.0.0</modelVersion>
3 <parent>
4 <groupId>org.argeo.slc</groupId>
5 <artifactId>argeo-slc</artifactId>
6 <version>0.11.3-SNAPSHOT</version>
7 <relativePath>../../org.argeo.slc</relativePath>
8 </parent>
9 <groupId>org.argeo.slc.runtime</groupId>
10 <artifactId>org.argeo.slc.support.ws.client</artifactId>
11 <packaging>jar</packaging>
12 <name>Argeo SLC Support Web Services Client</name>
13 <build>
14 <plugins>
15 <!-- Look to parent pom for inheritances -->
16 <plugin>
17 <groupId>org.apache.maven.plugins</groupId>
18 <artifactId>maven-compiler-plugin</artifactId>
19 </plugin>
20 <plugin>
21 <groupId>org.apache.maven.plugins</groupId>
22 <artifactId>maven-jar-plugin</artifactId>
23 </plugin>
24 <plugin>
25 <groupId>org.apache.maven.plugins</groupId>
26 <artifactId>maven-source-plugin</artifactId>
27 </plugin>
28 <plugin>
29 <groupId>org.apache.maven.plugins</groupId>
30 <artifactId>maven-surefire-plugin</artifactId>
31 </plugin>
32 <plugin>
33 <groupId>org.apache.felix</groupId>
34 <artifactId>maven-bundle-plugin</artifactId>
35 <version>${version.maven-bundle-plugin}</version>
36 <configuration>
37 <instructions>
38 <Export-Package>
39 org.argeo.slc.ws.*
40 </Export-Package>
41 </instructions>
42 </configuration>
43 </plugin>
44 </plugins>
45 </build>
46 <dependencies>
47 <dependency>
48 <groupId>org.argeo.slc.runtime</groupId>
49 <artifactId>org.argeo.slc.support.simple</artifactId>
50 </dependency>
51 <dependency>
52 <groupId>org.argeo.slc.runtime</groupId>
53 <artifactId>org.argeo.slc.support.castor</artifactId>
54 </dependency>
55
56 <dependency>
57 <groupId>org.springframework.ws</groupId>
58 <artifactId>org.springframework.ws</artifactId>
59 </dependency>
60
61 <dependency>
62 <groupId>javax.xml.soap</groupId>
63 <artifactId>com.springsource.javax.xml.soap</artifactId>
64 </dependency>
65 <dependency>
66 <groupId>com.sun.xml</groupId>
67 <artifactId>
68 com.springsource.com.sun.xml.messaging.saaj
69 </artifactId>
70 </dependency>
71 </dependencies>
72 </project>