]> git.argeo.org Git - gpl/argeo-slc.git/blob - pom.xml
00feace89f40406ef119dd39bcbcc1c0e507e064
[gpl/argeo-slc.git] / 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 <parent>
5 <groupId>org.argeo.slc</groupId>
6 <artifactId>argeo-slc</artifactId>
7 <version>0.11.3-SNAPSHOT</version>
8 <relativePath>../org.argeo.slc</relativePath>
9 </parent>
10 <artifactId>argeo-slc-demo</artifactId>
11 <packaging>pom</packaging>
12 <name>Argeo SLC Demo</name>
13 <build>
14 <plugins>
15 <plugin>
16 <artifactId>maven-dependency-plugin</artifactId>
17 <executions>
18 <execution>
19 <goals>
20 <goal>copy-dependencies</goal>
21 </goals>
22 <phase>initialize</phase>
23 <configuration>
24 <outputDirectory>lib</outputDirectory>
25 <includeTypes>jar</includeTypes>
26 </configuration>
27 </execution>
28 </executions>
29 </plugin>
30 <plugin>
31 <groupId>org.codehaus.mojo</groupId>
32 <artifactId>exec-maven-plugin</artifactId>
33 <version>1.1</version>
34 <configuration>
35 <executable>java</executable>
36 <workingDirectory>exec/server</workingDirectory>
37 <arguments>
38 <argument>-Dmyproperty=myvalue</argument>
39 <argument>-jar</argument>
40 <argument>../../lib/org.eclipse.osgi-3.4.2.R34x_v20080826-1230.jar</argument>
41 <argument>-clean</argument>
42 <argument>-console</argument>
43 <argument>-configuration</argument>
44 <argument>conf</argument>
45 </arguments>
46 </configuration>
47 </plugin>
48
49 </plugins>
50 </build>
51 <dependencies>
52
53 <dependency>
54 <groupId>org.argeo.slc.runtime</groupId>
55 <artifactId>org.argeo.slc.support.equinox</artifactId>
56 </dependency>
57 <dependency>
58 <groupId>org.argeo.slc.runtime</groupId>
59 <artifactId>org.argeo.slc.osgiboot</artifactId>
60 <version>${project.version}</version>
61 </dependency>
62 <!-- Server -->
63 <dependency>
64 <groupId>org.argeo.slc.server</groupId>
65 <artifactId>deploy</artifactId>
66 <version>${project.version}</version>
67 <type>pom</type>
68 </dependency>
69 </dependencies>
70
71
72 </project>