]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.detached/pom.xml
[maven-release-plugin] copy for tag argeo-slc-1.1.6
[gpl/argeo-slc.git] / runtime / org.argeo.slc.detached / 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.6</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <artifactId>org.argeo.slc.detached</artifactId>
10 <name>SLC Detached</name>
11 <packaging>jar</packaging>
12 <build>
13 <plugins>
14 <plugin>
15 <groupId>org.apache.maven.plugins</groupId>
16 <artifactId>maven-compiler-plugin</artifactId>
17 <configuration>
18 <source>1.4</source>
19 <target>1.4</target>
20 </configuration>
21 </plugin>
22 <plugin>
23 <groupId>org.apache.felix</groupId>
24 <artifactId>maven-bundle-plugin</artifactId>
25
26 <configuration>
27 <instructions>
28 <Bundle-RequiredExecutionEnvironment>J2SE-1.4</Bundle-RequiredExecutionEnvironment>
29 <Export-Package>
30 org.argeo.slc.detached.*
31 </Export-Package>
32 <Import-Package>
33 org.w3c.dom;version="0.0.0",
34 javax.xml.*;version="0.0.0",
35 org.springframework.core,
36 *
37 </Import-Package>
38 </instructions>
39 </configuration>
40 </plugin>
41 </plugins>
42 </build>
43 <dependencies>
44 <dependency>
45 <groupId>org.argeo.tp</groupId>
46 <artifactId>org.eclipse.osgi</artifactId>
47 </dependency>
48
49 <dependency>
50 <groupId>org.argeo.tp</groupId>
51 <artifactId>org.springframework.osgi.extender</artifactId>
52 </dependency>
53
54 <!-- Required under JDK 1.4 -->
55 <dependency>
56 <groupId>org.argeo.tp</groupId>
57 <artifactId>edu.emory.mathcs.backport</artifactId>
58 </dependency>
59 <dependency>
60 <groupId>org.argeo.tp</groupId>
61 <artifactId>org.apache.xmlcommons</artifactId>
62 <scope>provided</scope>
63 </dependency>
64 <dependency>
65 <groupId>org.argeo.tp</groupId>
66 <artifactId>org.apache.commons.io</artifactId>
67 </dependency>
68 <dependency>
69 <groupId>org.argeo.tp</groupId>
70 <artifactId>junit</artifactId>
71 <scope>test</scope>
72 </dependency>
73
74 <dependency>
75 <groupId>org.argeo.tp</groupId>
76 <artifactId>slf4j.org.apache.commons.logging</artifactId>
77 </dependency>
78 <dependency>
79 <groupId>org.argeo.tp</groupId>
80 <artifactId>slf4j.log4j</artifactId>
81 </dependency>
82
83 <!-- JRE 1.4 -->
84 <dependency>
85 <groupId>org.argeo.tp</groupId>
86 <artifactId>org.apache.xerces</artifactId>
87 </dependency>
88
89 </dependencies>
90 </project>