]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.detached.launcher/pom.xml
Explicitely set version Maven Bundle Plugin so that M2Eclipse plugin not always check...
[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.4</source>
20 <target>1.4</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 <version>${version.maven-bundle-plugin}</version>
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 <!--
74 <dependency> <groupId>org.apache.felix</groupId>
75 <artifactId>org.apache.felix.main</artifactId> </dependency>
76 -->
77 <dependency>
78 <groupId>org.eclipse.osgi</groupId>
79 <artifactId>org.eclipse.osgi</artifactId>
80 </dependency>
81
82 <dependency>
83 <groupId>org.springframework.osgi</groupId>
84 <artifactId>org.springframework.osgi.extender</artifactId>
85 </dependency>
86
87
88 <!--
89 Old <dependency> <groupId>org.springframework</groupId>
90 <artifactId>spring-context</artifactId> <version>2.0.8</version>
91 </dependency> <dependency> <groupId>commons-logging</groupId>
92 <artifactId>commons-logging</artifactId> </dependency> <dependency>
93 <groupId>log4j</groupId> <artifactId>log4j</artifactId> </dependency>
94 <dependency> <groupId>commons-io</groupId>
95 <artifactId>commons-io</artifactId> </dependency>
96 -->
97
98 <!--
99 <dependency> <groupId>org.argeo.slc</groupId>
100 <artifactId>org.argeo.slc.detached.ext.log4j</artifactId>
101 <version>0.11.2</version> </dependency>
102 -->
103 <!-- Spring -->
104 <dependency>
105 <groupId>org.springframework</groupId>
106 <artifactId>org.springframework.context</artifactId>
107 </dependency>
108
109 <!--
110 <dependency> <groupId>org.apache.xerces</groupId>
111 <artifactId>com.springsource.org.apache.xerces</artifactId>
112 </dependency> <dependency> <groupId>org.apache.xalan</groupId>
113 <artifactId>com.springsource.org.apache.xalan</artifactId>
114 </dependency> <dependency>
115 <groupId>edu.emory.mathcs.backport</groupId> <artifactId>
116 com.springsource.edu.emory.mathcs.backport </artifactId>
117 </dependency>
118 -->
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 <!--
134 <dependency> <groupId>org.slf4j</groupId>
135 <artifactId>com.springsource.slf4j.org.apache.commons.logging</artifactId>
136 </dependency> <dependency> <groupId>org.slf4j</groupId>
137 <artifactId>com.springsource.slf4j.jcl</artifactId> </dependency>
138 -->
139 </dependencies>
140 </project>