]> git.argeo.org Git - gpl/argeo-slc.git/blob - examples/org.argeo.slc.example01/pom.xml
Make file driver more robust
[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.3-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/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 <version>${version.maven-bundle-plugin}</version>
59 <configuration>
60 <instructions>
61 <Export-Package>
62 org.argeo.slc.example.*
63 </Export-Package>
64 <Import-Package>*,
65 org.argeo.slc.core.test.spring,
66 org.argeo.slc.xml.test.tree,
67 org.argeo.slc.castor.spring,
68 org.argeo.slc.castor.msg,
69 org.argeo.slc.castor.process,
70 org.argeo.slc.castor.structure,
71 org.argeo.slc.castor.test,
72 org.springframework.oxm.castor,
73 org.argeo.slc.core.test.tree,
74 org.argeo.slc.msg.test.tree,
75 org.apache.tools.ant,
76 org.apache.tools.ant.taskdefs,
77 org.apache.tools.ant.types
78 </Import-Package>
79 <!--
80 <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>
81 <Bundle-Activator>org.argeo.slc.example.Activator</Bundle-Activator>
82 <Require-Bundle>org.argeo.slc.core,org.argeo.slc.agent</Require-Bundle>
83 -->
84 </instructions>
85 </configuration>
86 </plugin>
87 </plugins>
88 </build>
89 <dependencies>
90 <dependency>
91 <groupId>org.argeo.slc.runtime</groupId>
92 <artifactId>org.argeo.slc.support.simple</artifactId>
93 <version>${project.version}</version>
94 </dependency>
95 <dependency>
96 <groupId>org.argeo.slc.runtime</groupId>
97 <artifactId>org.argeo.slc.support.ant</artifactId>
98 <version>${project.version}</version>
99 </dependency>
100 <dependency>
101 <groupId>org.argeo.slc.runtime</groupId>
102 <artifactId>org.argeo.slc.support.castor</artifactId>
103 <version>${project.version}</version>
104 </dependency>
105 <dependency>
106 <groupId>org.argeo.slc.runtime</groupId>
107 <artifactId>org.argeo.slc.launcher</artifactId>
108 <version>${project.version}</version>
109 <scope>provided</scope>
110 </dependency>
111 </dependencies>
112 </project>