]> git.argeo.org Git - gpl/argeo-slc.git/blob - dist/slc-sdk/pom.xml
1450352beceb5c09e00c262e7d77be10e0508e35
[gpl/argeo-slc.git] / dist / slc-sdk / 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>dist</artifactId>
7 <version>0.12.1-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
10 <groupId>org.argeo.slc.dist</groupId>
11 <artifactId>slc-sdk</artifactId>
12 <packaging>pom</packaging>
13 <name>SLC SDK</name>
14 <properties>
15 <argeo.p2.cmd>/home/mbaudier/dev/tools/eclipse-rcp-galileo-SR1/eclipse</argeo.p2.cmd>
16 <argeo.p2.repository>/var/www/html/dev/slc/repository</argeo.p2.repository>
17 </properties>
18 <build>
19 <plugins>
20 <plugin>
21 <groupId>org.apache.maven.plugins</groupId>
22 <artifactId>maven-dependency-plugin</artifactId>
23 <executions>
24 <execution>
25 <id>copy-dependencies</id>
26 <phase>process-resources</phase>
27 <goals>
28 <goal>copy-dependencies</goal>
29 </goals>
30 <configuration>
31 <includeTypes>jar</includeTypes>
32 </configuration>
33 </execution>
34 </executions>
35 </plugin>
36 <plugin>
37 <groupId>org.codehaus.mojo</groupId>
38 <artifactId>exec-maven-plugin</artifactId>
39 <version>1.1</version>
40 <executions>
41 <execution>
42 <id>create-repository</id>
43 <phase>package</phase>
44 <goals>
45 <goal>exec</goal>
46 </goals>
47 </execution>
48 </executions>
49 <configuration>
50 <executable>${argeo.p2.cmd}</executable>
51 <!-- optional -->
52 <workingDirectory>/tmp</workingDirectory>
53 <arguments>
54 <argument>-noSplash</argument>
55 <argument>-application</argument>
56 <argument>org.eclipse.equinox.p2.publisher.FeaturesAndBundlesPublisher</argument>
57 <argument>-metadataRepository</argument>
58 <argument>file:${argeo.p2.repository}</argument>
59 <argument>-artifactRepository</argument>
60 <argument>file:${argeo.p2.repository}</argument>
61 <argument>-bundles</argument>
62 <argument>${project.build.directory}/dependency</argument>
63 <argument>-features</argument>
64 <argument>${project.build.directory}/dependency</argument>
65 <argument>-compress</argument>
66 <argument>-publishArtifacts</argument>
67 </arguments>
68 </configuration>
69 </plugin>
70
71 </plugins>
72 </build>
73 <dependencies>
74 <dependency>
75 <groupId>org.argeo.slc.dep</groupId>
76 <artifactId>org.argeo.slc.dep.server</artifactId>
77 <version>${project.version}</version>
78 </dependency>
79 <dependency>
80 <groupId>org.argeo.slc.server</groupId>
81 <artifactId>org.argeo.slc.ria</artifactId>
82 </dependency>
83 </dependencies>
84 </project>