]> git.argeo.org Git - gpl/argeo-slc.git/blob - examples/org.argeo.slc.example01/pom.xml
Prepare package names refactoring
[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>*,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>
64 <Bundle-Activator>org.argeo.slc.example.Activator</Bundle-Activator>
65 <Require-Bundle>org.argeo.slc.core,org.argeo.slc.agent</Require-Bundle>
66 </instructions>
67 </configuration>
68 </plugin>
69 </plugins>
70 </build>
71 <dependencies>
72 <dependency>
73 <groupId>org.argeo.slc.runtime</groupId>
74 <artifactId>org.argeo.slc.support.simple</artifactId>
75 <version>${project.version}</version>
76 </dependency>
77 <dependency>
78 <groupId>org.argeo.slc.runtime</groupId>
79 <artifactId>org.argeo.slc.support.ant</artifactId>
80 <version>${project.version}</version>
81 </dependency>
82 <dependency>
83 <groupId>org.argeo.slc.runtime</groupId>
84 <artifactId>org.argeo.slc.support.castor</artifactId>
85 <version>${project.version}</version>
86 </dependency>
87 <dependency>
88 <groupId>org.argeo.slc.runtime</groupId>
89 <artifactId>org.argeo.slc.launcher</artifactId>
90 <version>${project.version}</version>
91 <scope>test</scope>
92 </dependency>
93 </dependencies>
94 </project>