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