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