]> git.argeo.org Git - gpl/argeo-slc.git/blob - examples/org.argeo.slc.example01/pom.xml
Don't use python win32 package
[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 </dependency>
94 <dependency>
95 <groupId>org.argeo.slc.runtime</groupId>
96 <artifactId>org.argeo.slc.support.ant</artifactId>
97 </dependency>
98 <dependency>
99 <groupId>org.argeo.slc.runtime</groupId>
100 <artifactId>org.argeo.slc.support.castor</artifactId>
101 </dependency>
102 <dependency>
103 <groupId>org.argeo.slc.runtime</groupId>
104 <artifactId>org.argeo.slc.support.ws.client</artifactId>
105 </dependency>
106 <dependency>
107 <groupId>org.argeo.slc.runtime</groupId>
108 <artifactId>org.argeo.slc.launcher</artifactId>
109 <scope>provided</scope>
110 </dependency>
111 <dependency>
112 <groupId>javax.activation</groupId>
113 <artifactId>com.springsource.javax.activation</artifactId>
114 <version>1.1.1</version>
115 <scope>testing</scope>
116 </dependency>
117 </dependencies>
118 </project>