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