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