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