]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.ws.client/pom.xml
Add generate script
[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.runtime</groupId>
6 <artifactId>argeo-slc-runtime</artifactId>
7 <version>0.11.3-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
10 <artifactId>org.argeo.slc.support.ws.client</artifactId>
11 <packaging>jar</packaging>
12 <name>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 <Import-Package>org.w3c.dom;version="0.0.0",
42 javax.xml.*;version="0.0.0",
43 org.xml.*;version="0.0.0",
44 *
45 </Import-Package>
46 </instructions>
47 </configuration>
48 </plugin>
49 </plugins>
50 </build>
51 <dependencies>
52 <dependency>
53 <groupId>org.argeo.slc.runtime</groupId>
54 <artifactId>org.argeo.slc.support.simple</artifactId>
55 </dependency>
56 <dependency>
57 <groupId>org.argeo.slc.runtime</groupId>
58 <artifactId>org.argeo.slc.support.castor</artifactId>
59 </dependency>
60
61 <dependency>
62 <groupId>org.springframework.ws</groupId>
63 <artifactId>org.springframework.ws</artifactId>
64 </dependency>
65
66 <dependency>
67 <groupId>javax.xml.soap</groupId>
68 <artifactId>com.springsource.javax.xml.soap</artifactId>
69 </dependency>
70 <dependency>
71 <groupId>com.sun.xml</groupId>
72 <artifactId>
73 com.springsource.com.sun.xml.messaging.saaj
74 </artifactId>
75 </dependency>
76 <dependency>
77 <groupId>javax.activation</groupId>
78 <artifactId>com.springsource.javax.activation</artifactId>
79 </dependency>
80 </dependencies>
81 </project>