]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.detached/pom.xml
Quick fixes for SEB v3.1
[gpl/argeo-slc.git] / 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"
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</artifactId>
11 <name>Argeo SLC Detached</name>
12 <packaging>jar</packaging>
13 <build>
14 <plugins>
15 <plugin>
16 <artifactId>maven-jar-plugin</artifactId>
17 <configuration>
18 <archive>
19 <manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile>
20 </archive>
21 </configuration>
22 </plugin>
23 <plugin>
24 <groupId>org.apache.felix</groupId>
25 <artifactId>maven-bundle-plugin</artifactId>
26 <version>1.4.3</version>
27 <extensions>true</extensions>
28 <configuration>
29 <manifestLocation>src/main/resources/META-INF</manifestLocation>
30 <instructions>
31 <Bundle-SymbolicName>
32 ${pom.artifactId}
33 </Bundle-SymbolicName>
34 <Bundle-Activator>
35 org.argeo.slc.detached.Activator
36 </Bundle-Activator>
37 <Export-Package>
38 org.argeo.slc.detached.*
39 </Export-Package>
40 <Import-Package>
41 *,
42 org.springframework.beans.factory;version="2.0",
43 org.springframework.beans.factory.support;version="2.0",
44 org.springframework.beans.factory.xml;version="2.0",
45 org.springframework.context;version="2.0",
46 org.springframework.context.support;version="2.0",
47 org.springframework.core.io;version="2.0"
48 </Import-Package>
49 <_removeheaders>Bnd-LastModified</_removeheaders>
50 </instructions>
51 </configuration>
52 <executions>
53 <execution>
54 <id>bundle-manifest</id>
55 <phase>process-classes</phase>
56 <goals>
57 <goal>manifest</goal>
58 </goals>
59 </execution>
60 </executions>
61 </plugin>
62 <plugin>
63 <groupId>org.apache.maven.plugins</groupId>
64 <artifactId>maven-compiler-plugin</artifactId>
65 <configuration>
66 <source>1.3</source>
67 <target>1.3</target>
68 </configuration>
69 </plugin>
70 <plugin>
71 <groupId>org.apache.maven.plugins</groupId>
72 <artifactId>maven-source-plugin</artifactId>
73 </plugin>
74 </plugins>
75 </build>
76 <dependencies>
77 <dependency>
78 <groupId>org.apache.felix</groupId>
79 <artifactId>org.osgi.core</artifactId>
80 </dependency>
81
82 <dependency>
83 <groupId>org.springframework</groupId>
84 <artifactId>spring-context</artifactId>
85 </dependency>
86
87 <dependency>
88 <groupId>xerces</groupId>
89 <artifactId>xercesImpl</artifactId>
90 </dependency>
91
92 <dependency>
93 <groupId>commons-io</groupId>
94 <artifactId>commons-io</artifactId>
95 </dependency>
96
97 <dependency>
98 <groupId>junit</groupId>
99 <artifactId>junit</artifactId>
100 <scope>test</scope>
101 </dependency>
102 <dependency>
103 <groupId>log4j</groupId>
104 <artifactId>log4j</artifactId>
105 </dependency>
106 </dependencies>
107 </project>