]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.detached.launcher/pom.xml
Introduce org.argeo.slc.specs
[gpl/argeo-slc.git] / org.argeo.slc.detached.launcher / 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.2-SNAPSHOT</version>
8 <relativePath>../org.argeo.slc</relativePath>
9 </parent>
10 <artifactId>org.argeo.slc.detached.launcher</artifactId>
11 <name>Argeo SLC Detached Launcher</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.3</source>
20 <target>1.3</target>
21 </configuration>
22 </plugin>
23 <plugin>
24 <groupId>org.apache.maven.plugins</groupId>
25 <artifactId>maven-source-plugin</artifactId>
26 </plugin>
27 <plugin>
28 <groupId>org.apache.maven.plugins</groupId>
29 <artifactId>maven-jar-plugin</artifactId>
30 <configuration>
31 <archive>
32 <manifest>
33 <mainClass>
34 org.argeo.slc.detached.launcher.Main
35 </mainClass>
36 </manifest>
37 </archive>
38 </configuration>
39 </plugin>
40 <plugin>
41 <groupId>org.apache.felix</groupId>
42 <artifactId>maven-bundle-plugin</artifactId>
43 <configuration>
44 <instructions>
45 <Export-Package>
46 org.argeo.slc.*
47 </Export-Package>
48 </instructions>
49 </configuration>
50 </plugin>
51 <plugin>
52 <groupId>org.apache.maven.plugins</groupId>
53 <artifactId>maven-assembly-plugin</artifactId>
54 <configuration>
55 <descriptors>
56 <descriptor>src/assembly/dist.xml</descriptor>
57 </descriptors>
58 </configuration>
59 <executions>
60 <execution>
61 <id>attach-assembly</id>
62 <phase>package</phase>
63 <goals>
64 <goal>single</goal>
65 </goals>
66 </execution>
67 </executions>
68 </plugin>
69 </plugins>
70 </build>
71 <dependencies>
72 <!--
73 <dependency> <groupId>org.apache.felix</groupId>
74 <artifactId>org.apache.felix.main</artifactId> </dependency>
75 -->
76 <dependency>
77 <groupId>org.eclipse.osgi</groupId>
78 <artifactId>org.eclipse.osgi</artifactId>
79 </dependency>
80
81 <dependency>
82 <groupId>org.springframework.osgi</groupId>
83 <artifactId>org.springframework.osgi.extender</artifactId>
84 </dependency>
85
86
87 <!--
88 Old <dependency> <groupId>org.springframework</groupId>
89 <artifactId>spring-context</artifactId> <version>2.0.8</version>
90 </dependency> <dependency> <groupId>commons-logging</groupId>
91 <artifactId>commons-logging</artifactId> </dependency> <dependency>
92 <groupId>log4j</groupId> <artifactId>log4j</artifactId> </dependency>
93 <dependency> <groupId>commons-io</groupId>
94 <artifactId>commons-io</artifactId> </dependency>
95 -->
96
97 <!--
98 <dependency>
99 <groupId>org.argeo.slc</groupId>
100 <artifactId>org.argeo.slc.detached.ext.log4j</artifactId>
101 <version>0.11.2</version>
102 </dependency>
103 -->
104 <!-- Spring -->
105 <dependency>
106 <groupId>org.springframework</groupId>
107 <artifactId>org.springframework.context</artifactId>
108 </dependency>
109
110 <!--
111 <dependency>
112 <groupId>org.apache.xerces</groupId>
113 <artifactId>com.springsource.org.apache.xerces</artifactId>
114 </dependency>
115 <dependency>
116 <groupId>org.apache.xalan</groupId>
117 <artifactId>com.springsource.org.apache.xalan</artifactId>
118 </dependency>
119 <dependency>
120 <groupId>edu.emory.mathcs.backport</groupId>
121 <artifactId>
122 com.springsource.edu.emory.mathcs.backport
123 </artifactId>
124 </dependency> -->
125 <dependency>
126 <groupId>org.apache.commons</groupId>
127 <artifactId>
128 com.springsource.org.apache.commons.io
129 </artifactId>
130 </dependency>
131 <dependency>
132 <groupId>org.junit</groupId>
133 <artifactId>com.springsource.junit</artifactId>
134 </dependency>
135 <dependency>
136 <groupId>org.apache.log4j</groupId>
137 <artifactId>com.springsource.org.apache.log4j</artifactId>
138 </dependency>
139 <!--
140 <dependency>
141 <groupId>org.slf4j</groupId>
142 <artifactId>com.springsource.slf4j.org.apache.commons.logging</artifactId>
143 </dependency>
144 <dependency>
145 <groupId>org.slf4j</groupId>
146 <artifactId>com.springsource.slf4j.jcl</artifactId>
147 </dependency>
148 -->
149 </dependencies>
150 </project>