-
Notifications
You must be signed in to change notification settings - Fork 3
/
pom.xml
73 lines (69 loc) · 2.24 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>at.bestsolution</groupId>
<artifactId>maven-osgi-modules</artifactId>
<version>0.0.3-SNAPSHOT</version>
<packaging>pom</packaging>
<properties>
<osgi.qualifier>${maven.build.timestamp}</osgi.qualifier>
<maven.build.timestamp.format>yyyyMMddHHmm</maven.build.timestamp.format>
</properties>
<description>
Reactor pom for all maven plugins and extensions used to build e4 applications with pure Maven approach.
</description>
<modules>
<module>maven-osgi-exec-plugin</module>
<module>maven-osgi-exec-plugin-tests</module>
<module>maven-osgi-package-plugin</module>
<module>tycho-lifecycle-controller</module>
<!-- module>maven-osgi-targetplatform-lib</module>
<module>maven-osgi-targetplatform-extension</module>
<module>maven-osgi-targetplatform-plugin</module -->
</modules>
<profiles>
<profile>
<id>deploy-bestsolution</id>
<distributionManagement>
<repository>
<id>oss-releases</id>
<url>https://maven.bestsolution.at/deploy/releases/</url>
</repository>
<snapshotRepository>
<id>oss-snapshots</id>
<url>https://maven.bestsolution.at/deploy/snapshots/</url>
</snapshotRepository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>exclipse-releases</serverId>
<nexusUrl>http://rattenschwanz.bestsolution.at:8081/nexus</nexusUrl>
<skipStaging>true</skipStaging>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>