]> git.argeo.org Git - gpl/argeo-slc.git/blob - dep/pom.xml
Introduce SLC Repo
[gpl/argeo-slc.git] / dep / 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.13.1-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
10 <groupId>org.argeo.slc</groupId>
11 <artifactId>dep</artifactId>
12 <packaging>pom</packaging>
13 <name>SLC Dependencies</name>
14 <modules>
15 <module>org.argeo.slc.dep.agent</module>
16 <module>org.argeo.slc.dep.agent.extras</module>
17 <module>org.argeo.slc.dep.server</module>
18 <module>org.argeo.slc.dep.detached</module>
19 <module>org.argeo.slc.dep.gis</module>
20 <module>org.argeo.slc.dep.eclipse</module>
21 <module>org.argeo.slc.dep.sdk</module>
22 <module>org.argeo.slc.dep.sdk.sources</module>
23 </modules>
24 <build>
25 <resources>
26 <resource>
27 <directory>.</directory>
28 <includes>
29 <include>*.inf</include>
30 </includes>
31 </resource>
32 </resources>
33 <plugins>
34 <plugin>
35 <groupId>org.codehaus.mojo</groupId>
36 <artifactId>buildnumber-maven-plugin</artifactId>
37 <configuration>
38 <useLastCommittedRevision>false</useLastCommittedRevision>
39 </configuration>
40 </plugin>
41 <plugin>
42 <artifactId>maven-jar-plugin</artifactId>
43 <configuration>
44 <archive>
45 <manifestFile>META-INF/MANIFEST.MF</manifestFile>
46 </archive>
47 </configuration>
48 </plugin>
49 <plugin>
50 <groupId>org.apache.felix</groupId>
51 <artifactId>maven-bundle-plugin</artifactId>
52 <version>${version.maven-bundle-plugin}</version>
53 <configuration>
54 <manifestLocation>META-INF</manifestLocation>
55 <instructions>
56 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
57 <Bundle-Version>${project.version}-r${buildNumber}</Bundle-Version>
58 </instructions>
59 </configuration>
60 <executions>
61 <execution>
62 <id>bundle-manifest</id>
63 <phase>process-resources</phase>
64 <goals>
65 <goal>manifest</goal>
66 </goals>
67 </execution>
68 </executions>
69 </plugin>
70 <plugin>
71 <groupId>org.argeo.maven.plugins</groupId>
72 <artifactId>maven-argeo-osgi-plugin</artifactId>
73 <executions>
74 <execution>
75 <id>resolve-pde-sources</id>
76 <goals>
77 <goal>pde-sources</goal>
78 </goals>
79 <phase>generate-resources</phase>
80 <configuration>
81 <copyArtifacts>true</copyArtifacts>
82 </configuration>
83 </execution>
84 <execution>
85 <goals>
86 <goal>descriptors</goal>
87 </goals>
88 <phase>generate-resources</phase>
89 </execution>
90 </executions>
91 </plugin><!-- <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId>
92 <executions> <execution> <id>attach-artifacts</id> <phase>package</phase>
93 <goals> <goal>attach-artifact</goal> </goals> <configuration> <artifacts>
94 <artifact> <file>target/classes/modularDistribution.csv</file> <type>csv</type>
95 <classifier>modularDistribution</classifier> </artifact> </artifacts> </configuration>
96 </execution> </executions> </plugin> -->
97 </plugins>
98 </build>
99 </project>