]> git.argeo.org Git - gpl/argeo-slc.git/blob - examples/org.argeo.slc.example01/pom.xml
Update ActiveMQ version
[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 <plugin>
88 <groupId>org.codehaus.mojo</groupId>
89 <artifactId>exec-maven-plugin</artifactId>
90 <version>1.1-beta-1</version>
91 <configuration>
92 <mainClass>org.argeo.slc.cli.SlcMain</mainClass>
93 <systemProperties>
94 <systemProperty>
95 <key>slc.runtime</key>
96 <value>ws</value>
97 </systemProperty>
98 <systemProperty>
99 <key>slc.rootFile</key>
100 <value>file:${basedir}/src/slc/root/slcRoot.properties</value>
101 </systemProperty>
102 </systemProperties>
103 <arguments>
104 <argument>--mode</argument>
105 <argument>agent</argument>
106 </arguments>
107 </configuration>
108 </plugin>
109 </plugins>
110 </build>
111 <dependencies>
112 <dependency>
113 <groupId>org.argeo.slc.runtime</groupId>
114 <artifactId>org.argeo.slc.support.simple</artifactId>
115 </dependency>
116 <dependency>
117 <groupId>org.argeo.slc.runtime</groupId>
118 <artifactId>org.argeo.slc.support.ant</artifactId>
119 </dependency>
120 <dependency>
121 <groupId>org.argeo.slc.runtime</groupId>
122 <artifactId>org.argeo.slc.support.castor</artifactId>
123 </dependency>
124 <dependency>
125 <groupId>org.argeo.slc.runtime</groupId>
126 <artifactId>org.argeo.slc.support.ws.client</artifactId>
127 </dependency>
128 <dependency>
129 <groupId>org.argeo.slc.runtime</groupId>
130 <artifactId>org.argeo.slc.launcher</artifactId>
131 <scope>provided</scope>
132 </dependency>
133 <dependency>
134 <groupId>javax.activation</groupId>
135 <artifactId>com.springsource.javax.activation</artifactId>
136 <version>1.1.1</version>
137 <scope>testing</scope>
138 </dependency>
139
140 <!-- TESTING -->
141 <dependency>
142 <groupId>org.argeo.slc.runtime</groupId>
143 <artifactId>org.argeo.slc.launcher</artifactId>
144 <scope>testing</scope>
145 </dependency>
146 <dependency>
147 <groupId>org.argeo.slc.runtime</groupId>
148 <artifactId>org.argeo.slc.support.activemq</artifactId>
149 <scope>testing</scope>
150 </dependency>
151 <dependency>
152 <groupId>org.argeo.slc.runtime</groupId>
153 <artifactId>org.argeo.slc.support.ant</artifactId>
154 <scope>testing</scope>
155 </dependency>
156 <dependency>
157 <groupId>org.argeo.slc.runtime</groupId>
158 <artifactId>org.argeo.slc.support.castor</artifactId>
159 <scope>testing</scope>
160 </dependency>
161
162 </dependencies>
163 </project>