]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.detached.launcher/pom.xml
Merge from 0.11.mbaudier (OSGi libraries)
[gpl/argeo-slc.git] / org.argeo.slc.detached.launcher / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5 <parent>
6 <groupId>org.argeo.slc</groupId>
7 <artifactId>argeo-slc</artifactId>
8 <version>0.11.2-SNAPSHOT</version>
9 <relativePath>../org.argeo.slc</relativePath>
10 </parent>
11 <artifactId>org.argeo.slc.detached.launcher</artifactId>
12 <name>Argeo SLC Detached Launcher</name>
13 <packaging>jar</packaging>
14 <build>
15 <plugins>
16 <plugin>
17 <groupId>org.apache.maven.plugins</groupId>
18 <artifactId>maven-compiler-plugin</artifactId>
19 <configuration>
20 <source>1.3</source>
21 <target>1.3</target>
22 </configuration>
23 </plugin>
24 <plugin>
25 <groupId>org.apache.maven.plugins</groupId>
26 <artifactId>maven-source-plugin</artifactId>
27 </plugin>
28 <plugin>
29 <groupId>org.apache.maven.plugins</groupId>
30 <artifactId>maven-jar-plugin</artifactId>
31 <configuration>
32 <archive>
33 <manifest>
34 <mainClass>
35 org.argeo.slc.detached.launcher.Main
36 </mainClass>
37 </manifest>
38 </archive>
39 </configuration>
40 </plugin>
41 <plugin>
42 <groupId>org.apache.felix</groupId>
43 <artifactId>maven-bundle-plugin</artifactId>
44 <configuration>
45 <instructions>
46 <Export-Package>
47 org.argeo.slc.*
48 </Export-Package>
49 </instructions>
50 </configuration>
51 </plugin>
52 <plugin>
53 <groupId>org.apache.maven.plugins</groupId>
54 <artifactId>maven-assembly-plugin</artifactId>
55 <configuration>
56 <descriptors>
57 <descriptor>src/assembly/dist.xml</descriptor>
58 </descriptors>
59 </configuration>
60 <executions>
61 <execution>
62 <id>attach-assembly</id>
63 <phase>package</phase>
64 <goals>
65 <goal>single</goal>
66 </goals>
67 </execution>
68 </executions>
69 </plugin>
70 </plugins>
71 </build>
72 <dependencies>
73 <dependency>
74 <groupId>org.apache.felix</groupId>
75 <artifactId>org.apache.felix.main</artifactId>
76 </dependency>
77
78 <!-- Old
79 <dependency>
80 <groupId>org.springframework</groupId>
81 <artifactId>spring-context</artifactId>
82 <version>2.0.8</version>
83 </dependency>
84 <dependency>
85 <groupId>commons-logging</groupId>
86 <artifactId>commons-logging</artifactId>
87 </dependency>
88 <dependency>
89 <groupId>log4j</groupId>
90 <artifactId>log4j</artifactId>
91 </dependency>
92 <dependency>
93 <groupId>commons-io</groupId>
94 <artifactId>commons-io</artifactId>
95 </dependency>
96 -->
97
98 <!-- Spring -->
99 <dependency>
100 <groupId>org.springframework</groupId>
101 <artifactId>org.springframework.context</artifactId>
102 </dependency>
103
104
105 <dependency>
106 <groupId>org.apache.xerces</groupId>
107 <artifactId>com.springsource.org.apache.xerces</artifactId>
108 </dependency>
109 <dependency>
110 <groupId>org.apache.xalan</groupId>
111 <artifactId>com.springsource.org.apache.xalan</artifactId>
112 </dependency>
113 <dependency>
114 <groupId>edu.emory.mathcs.backport</groupId>
115 <artifactId>
116 com.springsource.edu.emory.mathcs.backport
117 </artifactId>
118 </dependency>
119 <dependency>
120 <groupId>org.apache.commons</groupId>
121 <artifactId>
122 com.springsource.org.apache.commons.io
123 </artifactId>
124 </dependency>
125 <dependency>
126 <groupId>org.junit</groupId>
127 <artifactId>com.springsource.junit</artifactId>
128 </dependency>
129 <dependency>
130 <groupId>org.apache.log4j</groupId>
131 <artifactId>com.springsource.org.apache.log4j</artifactId>
132 </dependency>
133 <dependency>
134 <groupId>org.apache.commons</groupId>
135 <artifactId>
136 com.springsource.org.apache.commons.logging
137 </artifactId>
138 </dependency>
139
140 </dependencies>
141 </project>