]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.castor/pom.xml
Allow to refresh a comma separated list of bundles
[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"
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.2-SNAPSHOT</version>
8 <relativePath>../../org.argeo.slc</relativePath>
9 </parent>
10 <groupId>org.argeo.slc.runtime</groupId>
11 <artifactId>org.argeo.slc.support.castor</artifactId>
12 <name>Argeo SLC Support Castor</name>
13 <description>Implementations of SLC Specs using Castor</description>
14 <build>
15 <plugins>
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-source-plugin</artifactId>
23 </plugin>
24 <plugin>
25 <groupId>org.apache.maven.plugins</groupId>
26 <artifactId>maven-surefire-plugin</artifactId>
27 </plugin>
28 <plugin>
29 <groupId>org.apache.maven.plugins</groupId>
30 <artifactId>maven-jar-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.*
40 </Export-Package>
41 <Import-Package>*,javax.xml.parsers;resolution:=optional,
42 javax.xml.transform;resolution:=optional,
43 javax.xml.transform.dom;resolution:=optional,
44 javax.xml.transform.stream;resolution:=optional,
45 org.w3c.dom;resolution:=optional,
46 org.xml.sax;resolution:=optional
47 </Import-Package>
48 </instructions>
49 </configuration>
50 </plugin>
51
52 </plugins>
53 </build>
54 <dependencies>
55
56 <dependency>
57 <groupId>org.argeo.slc.runtime</groupId>
58 <artifactId>org.argeo.slc.support.simple</artifactId>
59 <version>${project.version}</version>
60 </dependency>
61
62 <dependency>
63 <groupId>org.springframework.ws</groupId>
64 <artifactId>org.springframework.oxm</artifactId>
65 </dependency>
66
67 <dependency>
68 <groupId>org.codehaus.castor</groupId>
69 <artifactId>com.springsource.org.castor</artifactId>
70 </dependency>
71
72 <dependency>
73 <groupId>org.apache.xerces</groupId>
74 <artifactId>com.springsource.org.apache.xerces</artifactId>
75 </dependency>
76
77 <dependency>
78 <groupId>org.apache.xalan</groupId>
79 <artifactId>com.springsource.org.apache.xalan</artifactId>
80 </dependency>
81
82 <dependency>
83 <groupId>javax.xml.stream</groupId>
84 <artifactId>com.springsource.javax.xml.stream</artifactId>
85 </dependency>
86 </dependencies>
87 </project>