]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.castor/pom.xml
Use listener to track services
[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>runtime</artifactId>
6 <version>0.11.5-SNAPSHOT</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <groupId>org.argeo.slc.runtime</groupId>
10 <artifactId>org.argeo.slc.support.castor</artifactId>
11 <name>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>org.argeo.slc.*;resolution:=optional,
41 org.argeo.slc.build;resolution:=optional,
42 org.argeo.slc.execution;resolution:=optional,
43 org.argeo.slc.core.attachment;resolution:=optional,
44 org.argeo.slc.core.structure;resolution:=optional,
45 org.argeo.slc.core.structure.tree;resolution:=optional,
46 org.argeo.slc.core.test;resolution:=optional,
47 org.argeo.slc.core.test.tree;resolution:=optional,
48 org.argeo.slc.runtime;resolution:=optional,
49 org.argeo.slc.core.execution;resolution:=optional,
50 org.argeo.slc.msg;resolution:=optional,
51 org.argeo.slc.msg.build;resolution:=optional,
52 org.argeo.slc.msg.process;resolution:=optional,
53 org.argeo.slc.msg.event;resolution:=optional,
54 org.argeo.slc.msg.test.tree;resolution:=optional,
55 org.argeo.slc.detached;resolution:=optional,
56 org.apache.xml.serialize
57 </Import-Package>
58 <Fragment-Host>com.springsource.org.castor</Fragment-Host>
59 </instructions>
60 </configuration>
61 </plugin>
62
63 </plugins>
64 </build>
65 <dependencies>
66
67 <dependency>
68 <groupId>org.argeo.slc.runtime</groupId>
69 <artifactId>org.argeo.slc.core</artifactId>
70 </dependency>
71
72 <dependency>
73 <groupId>org.springframework.ws</groupId>
74 <artifactId>org.springframework.oxm</artifactId>
75 </dependency>
76
77 <dependency>
78 <groupId>org.codehaus.castor</groupId>
79 <artifactId>com.springsource.org.castor</artifactId>
80 </dependency>
81
82 <dependency>
83 <groupId>org.apache.xerces</groupId>
84 <artifactId>com.springsource.org.apache.xerces</artifactId>
85 </dependency>
86
87 <dependency>
88 <groupId>org.apache.xalan</groupId>
89 <artifactId>com.springsource.org.apache.xalan</artifactId>
90 </dependency>
91
92 <dependency>
93 <groupId>javax.xml.stream</groupId>
94 <artifactId>com.springsource.javax.xml.stream</artifactId>
95 </dependency>
96
97 <!-- Unit Tests -->
98 <dependency>
99 <groupId>org.argeo.slc.runtime</groupId>
100 <artifactId>org.argeo.slc.unit</artifactId>
101 <scope>test</scope>
102 </dependency>
103 </dependencies>
104 </project>