]> git.argeo.org Git - gpl/argeo-slc.git/blob - dep/pom.xml
Fix manifest for RIA
[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 <artifactId>dep</artifactId>
11 <name>SLC Dependencies</name>
12 <packaging>pom</packaging>
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.backend</module>
20 <module>org.argeo.slc.dep.sdk.rcp</module>
21 <module>org.argeo.slc.dep.sdk.rap</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 </plugins>
70 <pluginManagement>
71 <plugins>
72 <plugin>
73 <groupId>org.argeo.maven.plugins</groupId>
74 <artifactId>maven-argeo-osgi-plugin</artifactId>
75 <executions>
76 <execution>
77 <id>resolve-pde-sources</id>
78 <goals>
79 <goal>pde-sources</goal>
80 </goals>
81 <phase>generate-resources</phase>
82 </execution>
83 <execution>
84 <id>generate-descriptors</id>
85 <goals>
86 <goal>descriptors</goal>
87 </goals>
88 <phase>generate-resources</phase>
89 </execution>
90 <execution>
91 <id>check-osgi</id>
92 <phase>test</phase>
93 <goals>
94 <goal>equinox</goal>
95 </goals>
96 <configuration>
97 <onlyCheck>true</onlyCheck>
98 <argsToAppend>
99 <arg>-clean</arg>
100 </argsToAppend>
101 </configuration>
102 </execution>
103 </executions>
104 </plugin>
105 </plugins>
106 </pluginManagement>
107 <!-- TO BE DELETED <plugin> <groupId>org.argeo.maven.plugins</groupId>
108 <artifactId>maven-argeo-osgi-plugin</artifactId> <executions> <execution>
109 <id>resolve-pde-sources</id> <goals> <goal>pde-sources</goal> </goals> <phase>generate-resources</phase>
110 <configuration> <copyArtifacts>true</copyArtifacts> </configuration> </execution>
111 <execution> <goals> <goal>descriptors</goal> </goals> <phase>generate-resources</phase>
112 </execution> </executions> </plugin> -->
113 <!-- <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId>
114 <executions> <execution> <id>attach-artifacts</id> <phase>package</phase>
115 <goals> <goal>attach-artifact</goal> </goals> <configuration> <artifacts>
116 <artifact> <file>target/classes/modularDistribution.csv</file> <type>csv</type>
117 <classifier>modularDistribution</classifier> </artifact> </artifacts> </configuration>
118 </execution> </executions> </plugin> -->
119 <!-- </plugins> -->
120 </build>
121 </project>