]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.example/pom.xml
Update version flags
[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.8-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-javadoc-plugin</artifactId>
38 </plugin>
39 <plugin>
40 <groupId>org.apache.maven.plugins</groupId>
41 <artifactId>maven-assembly-plugin</artifactId>
42 <configuration>
43 <descriptors>
44 <descriptor>src/assembly/slc.xml</descriptor>
45 </descriptors>
46 </configuration>
47 <executions>
48 <execution>
49 <id>assembly-exampleSlcAppli</id>
50 <phase>package</phase>
51 <goals>
52 <goal>single</goal>
53 </goals>
54 </execution>
55 </executions>
56 </plugin>
57 <plugin>
58 <groupId>org.apache.maven.plugins</groupId>
59 <artifactId>maven-surefire-plugin</artifactId>
60 <configuration>
61 <systemProperties>
62 <property>
63 <name>it.slc.base</name>
64 <value>${basedir}/exampleSlcAppli</value>
65 </property>
66 </systemProperties>
67 </configuration>
68 </plugin>
69 </plugins>
70 </build>
71 <dependencies>
72 <dependency>
73 <groupId>org.argeo.slc</groupId>
74 <artifactId>argeo-slc-core</artifactId>
75 <version>${project.version}</version>
76 </dependency>
77 </dependencies>
78 </project>