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