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