]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.example/pom.xml
Prepare for release candidate
[gpl/argeo-slc.git] / org.argeo.slc.example / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5 <modelVersion>4.0.0</modelVersion>
6 <parent>
7 <groupId>org.argeo.slc</groupId>
8 <artifactId>argeo-slc</artifactId>
9 <version>0.9.3-SNAPSHOT</version>
10 <relativePath>../org.argeo.slc</relativePath>
11 </parent>
12 <artifactId>argeo-slc-example</artifactId>
13 <name>Argeo SLC Example</name>
14 <packaging>jar</packaging>
15 <description>An Example SLC application</description>
16 <scm>
17 <connection>
18 scm:svn:https://www.argeo.org/svn/slc/trunk/org.argeo.slc.example
19 </connection>
20 <url>
21 https://www.argeo.org/svn/slc/trunk/org.argeo.slc.example
22 </url>
23 </scm>
24 <build>
25 <plugins>
26 <!-- Look to parent pom for inheritances -->
27 <plugin>
28 <groupId>org.apache.maven.plugins</groupId>
29 <artifactId>maven-compiler-plugin</artifactId>
30 </plugin>
31 <plugin>
32 <groupId>org.apache.maven.plugins</groupId>
33 <artifactId>maven-source-plugin</artifactId>
34 </plugin>
35 <plugin>
36 <groupId>org.apache.maven.plugins</groupId>
37 <artifactId>maven-assembly-plugin</artifactId>
38 <configuration>
39 <descriptors>
40 <descriptor>src/assembly/slc.xml</descriptor>
41 </descriptors>
42 </configuration>
43 <executions>
44 <execution>
45 <id>assembly-exampleSlcAppli</id>
46 <phase>package</phase>
47 <goals>
48 <goal>single</goal>
49 </goals>
50 </execution>
51 </executions>
52 </plugin>
53 <plugin>
54 <groupId>org.apache.maven.plugins</groupId>
55 <artifactId>maven-surefire-plugin</artifactId>
56 <configuration>
57 <systemProperties>
58 <property>
59 <name>slc.rootDir</name>
60 <value>${basedir}/src/main/slc/root</value>
61 </property>
62 </systemProperties>
63 </configuration>
64 </plugin>
65 </plugins>
66 </build>
67 <dependencies>
68 <dependency>
69 <groupId>org.argeo.slc</groupId>
70 <artifactId>argeo-slc-core</artifactId>
71 <version>${project.version}</version>
72 </dependency>
73 <dependency>
74 <groupId>org.argeo.slc</groupId>
75 <artifactId>argeo-slc-agent</artifactId>
76 <version>${project.version}</version>
77 </dependency>
78 </dependencies>
79 </project>