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