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