]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.castor/pom.xml
Remove Java code
[gpl/argeo-slc.git] / runtime / org.argeo.slc.support.castor / 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.castor</artifactId>
11 <name>Argeo SLC Support Castor</name>
12 <description>Implementations of SLC Specs using Castor</description>
13 <build>
14 <plugins>
15 <plugin>
16 <groupId>org.apache.maven.plugins</groupId>
17 <artifactId>maven-compiler-plugin</artifactId>
18 </plugin>
19 <plugin>
20 <groupId>org.apache.maven.plugins</groupId>
21 <artifactId>maven-source-plugin</artifactId>
22 </plugin>
23 <plugin>
24 <groupId>org.apache.maven.plugins</groupId>
25 <artifactId>maven-surefire-plugin</artifactId>
26 </plugin>
27 <plugin>
28 <groupId>org.apache.maven.plugins</groupId>
29 <artifactId>maven-jar-plugin</artifactId>
30 </plugin>
31 <plugin>
32 <groupId>org.apache.felix</groupId>
33 <artifactId>maven-bundle-plugin</artifactId>
34 <version>${version.maven-bundle-plugin}</version>
35 <configuration>
36 <instructions>
37 <Export-Package>
38 org.argeo.slc.*
39 </Export-Package>
40 <Import-Package>*,javax.xml.parsers;resolution:=optional,
41 javax.xml.transform;resolution:=optional,
42 javax.xml.transform.dom;resolution:=optional,
43 javax.xml.transform.stream;resolution:=optional,
44 org.w3c.dom;resolution:=optional,
45 org.xml.sax;resolution:=optional
46 </Import-Package>
47 </instructions>
48 </configuration>
49 </plugin>
50
51 </plugins>
52 </build>
53 <dependencies>
54
55 <dependency>
56 <groupId>org.argeo.slc.runtime</groupId>
57 <artifactId>org.argeo.slc.support.simple</artifactId>
58 </dependency>
59
60 <dependency>
61 <groupId>org.springframework.ws</groupId>
62 <artifactId>org.springframework.oxm</artifactId>
63 </dependency>
64
65 <dependency>
66 <groupId>org.codehaus.castor</groupId>
67 <artifactId>com.springsource.org.castor</artifactId>
68 </dependency>
69
70 <dependency>
71 <groupId>org.apache.xerces</groupId>
72 <artifactId>com.springsource.org.apache.xerces</artifactId>
73 </dependency>
74
75 <dependency>
76 <groupId>org.apache.xalan</groupId>
77 <artifactId>com.springsource.org.apache.xalan</artifactId>
78 </dependency>
79
80 <dependency>
81 <groupId>javax.xml.stream</groupId>
82 <artifactId>com.springsource.javax.xml.stream</artifactId>
83 </dependency>
84 </dependencies>
85 </project>