]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.detached.launcher/pom.xml
Introduce log4j conf for SLC Detached (not working yet)
[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 <dependency>
73 <groupId>org.apache.felix</groupId>
74 <artifactId>org.apache.felix.main</artifactId>
75 </dependency>
76
77 <!--
78 Old <dependency> <groupId>org.springframework</groupId>
79 <artifactId>spring-context</artifactId> <version>2.0.8</version>
80 </dependency> <dependency> <groupId>commons-logging</groupId>
81 <artifactId>commons-logging</artifactId> </dependency> <dependency>
82 <groupId>log4j</groupId> <artifactId>log4j</artifactId> </dependency>
83 <dependency> <groupId>commons-io</groupId>
84 <artifactId>commons-io</artifactId> </dependency>
85 -->
86
87 <dependency>
88 <groupId>org.argeo.slc</groupId>
89 <artifactId>org.argeo.slc.detached.ext.log4j</artifactId>
90 <version>0.11.2</version>
91 </dependency>
92
93 <!-- Spring -->
94 <dependency>
95 <groupId>org.springframework</groupId>
96 <artifactId>org.springframework.context</artifactId>
97 </dependency>
98
99
100 <dependency>
101 <groupId>org.apache.xerces</groupId>
102 <artifactId>com.springsource.org.apache.xerces</artifactId>
103 </dependency>
104 <dependency>
105 <groupId>org.apache.xalan</groupId>
106 <artifactId>com.springsource.org.apache.xalan</artifactId>
107 </dependency>
108 <dependency>
109 <groupId>edu.emory.mathcs.backport</groupId>
110 <artifactId>
111 com.springsource.edu.emory.mathcs.backport
112 </artifactId>
113 </dependency>
114 <dependency>
115 <groupId>org.apache.commons</groupId>
116 <artifactId>
117 com.springsource.org.apache.commons.io
118 </artifactId>
119 </dependency>
120 <dependency>
121 <groupId>org.junit</groupId>
122 <artifactId>com.springsource.junit</artifactId>
123 </dependency>
124 <dependency>
125 <groupId>org.apache.log4j</groupId>
126 <artifactId>com.springsource.org.apache.log4j</artifactId>
127 </dependency>
128 <dependency>
129 <groupId>org.apache.commons</groupId>
130 <artifactId>
131 com.springsource.org.apache.commons.logging
132 </artifactId>
133 </dependency>
134
135 </dependencies>
136 </project>