]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.castor/pom.xml
Adapt to new build number approach
[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>runtime</artifactId>
7 <version>0.13.1-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
10 <groupId>org.argeo.slc.runtime</groupId>
11 <artifactId>org.argeo.slc.support.castor</artifactId>
12 <name>SLC Support Castor</name>
13 <description>Implementations of SLC Specs using Castor</description>
14 <build>
15 <plugins>
16 <plugin>
17 <groupId>org.apache.felix</groupId>
18 <artifactId>maven-bundle-plugin</artifactId>
19
20 <configuration>
21 <instructions>
22 <Export-Package>
23 org.argeo.slc.*
24 </Export-Package>
25 <Import-Package>
26 org.argeo.slc.*;resolution:=optional,
27 org.argeo.slc.deploy;resolution:=optional,
28 org.argeo.slc.build;resolution:=optional,
29 org.argeo.slc.execution;resolution:=optional,
30 org.argeo.slc.core.attachment;resolution:=optional,
31 org.argeo.slc.core.structure;resolution:=optional,
32 org.argeo.slc.core.structure.tree;resolution:=optional,
33 org.argeo.slc.core.test;resolution:=optional,
34 org.argeo.slc.core.test.tree;resolution:=optional,
35 org.argeo.slc.runtime;resolution:=optional,
36 org.argeo.slc.core.execution;resolution:=optional,
37 org.argeo.slc.msg;resolution:=optional,
38 org.argeo.slc.msg.build;resolution:=optional,
39 org.argeo.slc.msg.process;resolution:=optional,
40 org.argeo.slc.msg.event;resolution:=optional,
41 org.argeo.slc.msg.test.tree;resolution:=optional,
42 org.argeo.slc.detached;resolution:=optional,
43 org.apache.xml.serialize;resolution:=optional,
44 org.apache.xerces.jaxp;resolution:=optional,
45 javax.xml.transform;resolution:=optional,
46 javax.xml.transform.stream;resolution:=optional,
47 javax.xml.transform.dom;resolution:=optional,
48 org.springframework.xml.validation;resolution:=optional,
49 org.apache.commons.io,
50 org.springframework.oxm,
51 org.springframework.core,
52 org.springframework.xml.transform,
53 org.springframework.core.io
54 </Import-Package>
55 <Fragment-Host>com.springsource.org.castor</Fragment-Host>
56 </instructions>
57 </configuration>
58 </plugin>
59 </plugins>
60 </build>
61 <dependencies>
62
63 <dependency>
64 <groupId>org.argeo.slc.runtime</groupId>
65 <artifactId>org.argeo.slc.core</artifactId>
66 <version>${version.slc}</version>
67 </dependency>
68
69 <dependency>
70 <groupId>org.springframework.ws</groupId>
71 <artifactId>org.springframework.oxm</artifactId>
72 </dependency>
73
74 <dependency>
75 <groupId>org.codehaus.castor</groupId>
76 <artifactId>com.springsource.org.castor</artifactId>
77 </dependency>
78
79 <dependency>
80 <groupId>org.apache.xerces</groupId>
81 <artifactId>com.springsource.org.apache.xerces</artifactId>
82 </dependency>
83
84 <dependency>
85 <groupId>org.apache.xalan</groupId>
86 <artifactId>com.springsource.org.apache.xalan</artifactId>
87 </dependency>
88
89 <!-- Unit Tests -->
90 <dependency>
91 <groupId>org.argeo.slc.runtime</groupId>
92 <artifactId>org.argeo.slc.unit</artifactId>
93 <scope>test</scope>
94 <version>${version.slc}</version>
95 </dependency>
96 </dependencies>
97 </project>