]> git.argeo.org Git - gpl/argeo-slc.git/blob - demo/org.argeo.slc.demo.basic/pom.xml
3bab63176122d6a60059c7247c67ec98d0808de4
[gpl/argeo-slc.git] / demo / org.argeo.slc.demo.basic / 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.3-SNAPSHOT</version>
8 <relativePath>../../org.argeo.slc</relativePath>
9 </parent>
10 <groupId>org.argeo.slc.demo</groupId>
11 <artifactId>org.argeo.slc.demo.basic</artifactId>
12 <name>SLC Demo Basic Test Module</name>
13 <packaging>jar</packaging>
14 <properties></properties>
15 <build>
16 <plugins>
17 <plugin>
18 <artifactId>maven-jar-plugin</artifactId>
19 </plugin>
20 <plugin>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>maven-bundle-plugin</artifactId>
23 <version>${version.maven-bundle-plugin}</version>
24 <configuration>
25 <instructions>
26 <Export-Package>
27 org.argeo.slc.*
28 </Export-Package>
29 <Require-Bundle>org.argeo.slc.execution,org.argeo.slc.specs,org.argeo.slc.support.simple,org.springframework.aop,com.springsource.net.sf.cglib,com.springsource.org.aopalliance</Require-Bundle>
30 </instructions>
31 </configuration>
32 </plugin>
33 </plugins>
34 </build>
35 <dependencies>
36
37
38 <dependency>
39 <groupId>org.argeo.slc.runtime</groupId>
40 <artifactId>org.argeo.slc.execution</artifactId>
41 </dependency>
42 <dependency>
43 <groupId>org.argeo.slc.runtime</groupId>
44 <artifactId>org.argeo.slc.support.simple</artifactId>
45 </dependency>
46 <dependency>
47 <groupId>org.argeo.slc</groupId>
48 <artifactId>org.argeo.slc.detached.launcher</artifactId>
49 <version>${project.version}</version>
50 </dependency>
51
52 <dependency>
53 <groupId>org.eclipse.osgi</groupId>
54 <artifactId>org.eclipse.osgi</artifactId>
55 </dependency>
56
57 <dependency>
58 <groupId>org.springframework.osgi</groupId>
59 <artifactId>org.springframework.osgi.extender</artifactId>
60 </dependency>
61 </dependencies>
62 </project>