]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.example/pom.xml
Merge from 0.11.mbaudier (OSGi libraries)
[gpl/argeo-slc.git] / org.argeo.slc.example / 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.example</artifactId>
11 <name>Argeo SLC Demo Example 1</name>
12 <packaging>jar</packaging>
13 <description>An Example SLC application</description>
14 <scm>
15 <connection>scm:svn:https://www.argeo.org/svn/slc/trunk/org.argeo.slc.example</connection>
16 <url>https://www.argeo.org/svn/slc/trunk/org.argeo.slc.example</url>
17 </scm>
18 <build>
19 <plugins>
20 <!-- Look to parent pom for inheritances -->
21 <plugin>
22 <groupId>org.apache.maven.plugins</groupId>
23 <artifactId>maven-compiler-plugin</artifactId>
24 </plugin>
25 <plugin>
26 <groupId>org.apache.maven.plugins</groupId>
27 <artifactId>maven-source-plugin</artifactId>
28 </plugin>
29 <plugin>
30 <groupId>org.apache.maven.plugins</groupId>
31 <artifactId>maven-assembly-plugin</artifactId>
32 <configuration>
33 <descriptors>
34 <descriptor>src/assembly/slc.xml</descriptor>
35 </descriptors>
36 </configuration>
37 <executions>
38 <execution>
39 <id>assembly-exampleSlcAppli</id>
40 <phase>package</phase>
41 <goals>
42 <goal>single</goal>
43 </goals>
44 </execution>
45 </executions>
46 </plugin>
47 <plugin>
48 <groupId>org.apache.maven.plugins</groupId>
49 <artifactId>maven-surefire-plugin</artifactId>
50 <configuration>
51 <systemProperties>
52 <property>
53 <name>slc.rootDir</name>
54 <value>${basedir}/src/main/slc/root</value>
55 </property>
56 </systemProperties>
57 </configuration>
58 </plugin>
59 <plugin>
60 <groupId>org.apache.felix</groupId>
61 <artifactId>maven-bundle-plugin</artifactId>
62 <configuration>
63 <instructions>
64 <Export-Package>
65 org.argeo.slc.example.*
66 </Export-Package>
67 <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>
68 <Bundle-Activator>org.argeo.slc.example.Activator</Bundle-Activator>
69 <Require-Bundle>org.argeo.slc.core,org.argeo.slc.agent</Require-Bundle>
70 </instructions>
71 </configuration>
72 </plugin>
73 </plugins>
74 </build>
75 <dependencies>
76 <dependency>
77 <groupId>org.argeo.slc</groupId>
78 <artifactId>org.argeo.slc.core</artifactId>
79 <version>${project.version}</version>
80 </dependency>
81 <dependency>
82 <groupId>org.argeo.slc</groupId>
83 <artifactId>org.argeo.slc.agent</artifactId>
84 <version>${project.version}</version>
85 </dependency>
86 </dependencies>
87 </project>