]> git.argeo.org Git - gpl/argeo-slc.git/blob - archetypes/org.argeo.slc.archetype.basic/src/main/resources/archetype-resources/pom.xml
Introduce org.argeo.slc.server.jcr.repo.derby
[gpl/argeo-slc.git] / archetypes / org.argeo.slc.archetype.basic / src / main / resources / archetype-resources / 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 <groupId>${groupId}</groupId>
5 <artifactId>${artifactId}</artifactId>
6 <version>${version}</version>
7 <name>(Generated SLC Application Template)</name>
8 <properties>
9 <slc.version>${slcArchetype.slc.version}</slc.version>
10 </properties>
11 <build>
12 <plugins>
13 <plugin>
14 <groupId>org.apache.maven.plugins</groupId>
15 <artifactId>maven-assembly-plugin</artifactId>
16 <configuration>
17 <descriptors>
18 <descriptor>src/assembly/slcapp.xml</descriptor>
19 </descriptors>
20 </configuration>
21 <executions>
22 <execution>
23 <id>assembly-slcapp</id>
24 <phase>package</phase>
25 <goals>
26 <goal>single</goal>
27 </goals>
28 </execution>
29 </executions>
30 </plugin>
31 </plugins>
32 </build>
33 <dependencies>
34 <dependency>
35 <groupId>org.argeo.slc.runtime</groupId>
36 <artifactId>org.argeo.slc.support.simple</artifactId>
37 <version>${slc.version}</version>
38 </dependency>
39 <dependency>
40 <groupId>org.argeo.slc.runtime</groupId>
41 <artifactId>org.argeo.slc.support.ant</artifactId>
42 <version>${slc.version}</version>
43 </dependency>
44 <dependency>
45 <groupId>org.argeo.slc.runtime</groupId>
46 <artifactId>org.argeo.slc.support.castor</artifactId>
47 <version>${slc.version}</version>
48 </dependency>
49 <dependency>
50 <groupId>org.argeo.slc.runtime</groupId>
51 <artifactId>org.argeo.slc.launcher</artifactId>
52 <version>${slc.version}</version>
53 <scope>provided</scope>
54 </dependency>
55 </dependencies>
56 </project>