]> git.argeo.org Git - gpl/argeo-slc.git/blob - dep/pom.xml
Fix issue related to serialization, old spring template files and logging
[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.0-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.sdk</module>
20 <module>org.argeo.slc.dep.sdk.sources</module>
21 </modules>
22 <build>
23 <resources>
24 <resource>
25 <directory>.</directory>
26 <includes>
27 <include>*.inf</include>
28 </includes>
29 </resource>
30 </resources>
31 <plugins>
32 <plugin>
33 <groupId>org.codehaus.mojo</groupId>
34 <artifactId>buildnumber-maven-plugin</artifactId>
35 <configuration>
36 <useLastCommittedRevision>false</useLastCommittedRevision>
37 </configuration>
38 </plugin>
39 <plugin>
40 <artifactId>maven-jar-plugin</artifactId>
41 <configuration>
42 <archive>
43 <manifestFile>META-INF/MANIFEST.MF</manifestFile>
44 </archive>
45 </configuration>
46 </plugin>
47 <plugin>
48 <groupId>org.apache.felix</groupId>
49 <artifactId>maven-bundle-plugin</artifactId>
50 <version>${version.maven-bundle-plugin}</version>
51 <configuration>
52 <manifestLocation>META-INF</manifestLocation>
53 <instructions>
54 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
55 <Bundle-Version>${project.version}-r${buildNumber}</Bundle-Version>
56 </instructions>
57 </configuration>
58 <executions>
59 <execution>
60 <id>bundle-manifest</id>
61 <phase>process-resources</phase>
62 <goals>
63 <goal>manifest</goal>
64 </goals>
65 </execution>
66 </executions>
67 </plugin>
68 <plugin>
69 <groupId>org.argeo.maven.plugins</groupId>
70 <artifactId>maven-argeo-osgi-plugin</artifactId>
71 <executions>
72 <execution>
73 <goals>
74 <goal>descriptors</goal>
75 </goals>
76 <phase>generate-resources</phase>
77 </execution>
78 </executions>
79 </plugin><!--
80 <plugin>
81 <groupId>org.codehaus.mojo</groupId>
82 <artifactId>build-helper-maven-plugin</artifactId>
83 <executions>
84 <execution>
85 <id>attach-artifacts</id>
86 <phase>package</phase>
87 <goals>
88 <goal>attach-artifact</goal>
89 </goals>
90 <configuration>
91 <artifacts>
92 <artifact>
93 <file>target/classes/modularDistribution.csv</file>
94 <type>csv</type>
95 <classifier>modularDistribution</classifier>
96 </artifact>
97 </artifacts>
98 </configuration>
99 </execution>
100 </executions>
101 </plugin>
102 --></plugins>
103 </build>
104 </project>