]> git.argeo.org Git - gpl/argeo-slc.git/blob - examples/org.argeo.slc.example01/pom.xml
Start preparing OSGi runtime
[gpl/argeo-slc.git] / examples / org.argeo.slc.example01 / 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 <groupId>org.argeo.slc.examples</groupId>
11 <artifactId>org.argeo.slc.example01</artifactId>
12 <name>Argeo SLC Example 01</name>
13 <packaging>jar</packaging>
14 <description>An Example SLC application</description>
15 <build>
16 <plugins>
17 <plugin>
18 <groupId>org.apache.maven.plugins</groupId>
19 <artifactId>maven-compiler-plugin</artifactId>
20 </plugin>
21 <plugin>
22 <groupId>org.apache.maven.plugins</groupId>
23 <artifactId>maven-source-plugin</artifactId>
24 </plugin>
25 <plugin>
26 <groupId>org.apache.maven.plugins</groupId>
27 <artifactId>maven-assembly-plugin</artifactId>
28 <configuration>
29 <descriptors>
30 <descriptor>src/assembly/slc.xml</descriptor>
31 </descriptors>
32 </configuration>
33 <executions>
34 <execution>
35 <id>assembly-exampleSlcAppli</id>
36 <phase>package</phase>
37 <goals>
38 <goal>single</goal>
39 </goals>
40 </execution>
41 </executions>
42 </plugin>
43 <plugin>
44 <groupId>org.apache.maven.plugins</groupId>
45 <artifactId>maven-surefire-plugin</artifactId>
46 <configuration>
47 <systemProperties>
48 <property>
49 <name>slc.rootDir</name>
50 <value>${basedir}/src/main/slc/root</value>
51 </property>
52 </systemProperties>
53 </configuration>
54 </plugin>
55 <plugin>
56 <groupId>org.apache.felix</groupId>
57 <artifactId>maven-bundle-plugin</artifactId>
58 <configuration>
59 <instructions>
60 <Export-Package>
61 org.argeo.slc.example.*
62 </Export-Package>
63 <Import-Package>*,
64 org.argeo.slc.core.test.spring,
65 org.argeo.slc.xml.test.tree,
66 org.argeo.slc.castor.spring,
67 org.argeo.slc.castor.msg,
68 org.argeo.slc.castor.process,
69 org.argeo.slc.castor.structure,
70 org.argeo.slc.castor.test,
71 org.springframework.oxm.castor,
72 org.argeo.slc.core.test.tree,
73 org.argeo.slc.msg.test.tree,
74 org.apache.tools.ant,
75 org.apache.tools.ant.taskdefs,
76 org.apache.tools.ant.types
77 </Import-Package>
78 <!--
79 <Import-Package>*,org.argeo.slc.core.test.spring,org.springframework.oxm.castor,org.argeo.slc.msg.test.tree,org.apache.tools.ant,org.apache.tools.ant.taskdefs,org.apache.tools.ant.types</Import-Package>
80 <Bundle-Activator>org.argeo.slc.example.Activator</Bundle-Activator>
81 <Require-Bundle>org.argeo.slc.core,org.argeo.slc.agent</Require-Bundle>
82 -->
83 </instructions>
84 </configuration>
85 </plugin>
86 </plugins>
87 </build>
88 <dependencies>
89 <dependency>
90 <groupId>org.argeo.slc.runtime</groupId>
91 <artifactId>org.argeo.slc.support.simple</artifactId>
92 <version>${project.version}</version>
93 </dependency>
94 <dependency>
95 <groupId>org.argeo.slc.runtime</groupId>
96 <artifactId>org.argeo.slc.support.ant</artifactId>
97 <version>${project.version}</version>
98 </dependency>
99 <dependency>
100 <groupId>org.argeo.slc.runtime</groupId>
101 <artifactId>org.argeo.slc.support.castor</artifactId>
102 <version>${project.version}</version>
103 </dependency>
104 <dependency>
105 <groupId>org.argeo.slc.runtime</groupId>
106 <artifactId>org.argeo.slc.launcher</artifactId>
107 <version>${project.version}</version>
108 <scope>provided</scope>
109 </dependency>
110
111 <!-- OSGi -->
112 <dependency>
113 <groupId>org.eclipse.osgi</groupId>
114 <artifactId>org.eclipse.osgi</artifactId>
115 </dependency>
116
117 <dependency>
118 <groupId>org.springframework.osgi</groupId>
119 <artifactId>org.springframework.osgi.extender</artifactId>
120 </dependency>
121
122 <dependency>
123 <groupId>org.apache.xmlcommons</groupId>
124 <artifactId>com.springsource.org.apache.xmlcommons</artifactId>
125 </dependency>
126
127 </dependencies>
128 </project>