]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.example/pom.xml
d5492080b42fc209015b52cb7ac2092f18a54053
[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.6.0</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 <plugin>
27 <groupId>org.apache.maven.plugins</groupId>
28 <artifactId>maven-assembly-plugin</artifactId>
29 <configuration>
30 <descriptors>
31 <descriptor>src/assembly/slc.xml</descriptor>
32 </descriptors>
33 </configuration>
34 <executions>
35 <execution>
36 <id>assembly-exampleSlcAppli</id>
37 <phase>package</phase>
38 <goals>
39 <goal>single</goal>
40 </goals>
41 </execution>
42 </executions>
43 </plugin>
44 <plugin>
45 <groupId>org.apache.maven.plugins</groupId>
46 <artifactId>maven-surefire-plugin</artifactId>
47 <configuration>
48 <systemProperties>
49 <property>
50 <name>it.slc.base</name>
51 <value>${basedir}/exampleSlcAppli</value>
52 </property>
53 </systemProperties>
54 </configuration>
55 </plugin>
56 </plugins>
57 </build>
58 <dependencies>
59 <dependency>
60 <groupId>org.argeo.slc</groupId>
61 <artifactId>argeo-slc-core</artifactId>
62 <version>${project.version}</version>
63 </dependency>
64 </dependencies>
65 </project>