forked from eclipse-efx/efxclipse-drift
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpom.xml
126 lines (117 loc) · 3.97 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<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>org.eclipse.fx.drift</groupId>
<artifactId>parent</artifactId>
<version>0.1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<parent>
<groupId>at.bestsolution.efxclipse.rt</groupId>
<artifactId>at.bestsolution.efxclipse.rt.release</artifactId>
<version>3.4.1</version>
</parent>
<properties>
<osgi.qualifier>${maven.build.timestamp}</osgi.qualifier>
<osgi.modifier>${osgi.qualifier}</osgi.modifier>
<maven.build.timestamp.format>yyyyMMddHHmm</maven.build.timestamp.format>
<plugin-bnd-maven-plugin>4.0.0</plugin-bnd-maven-plugin>
</properties>
<modules>
<module>org.eclipse.fx.drift</module>
<module>org.eclipse.fx.drift.samples</module>
<module>org.eclipse.fx.drift.feature</module>
<module>org.eclipse.fx.drift.samples.feature</module>
<module>org.eclipse.fx.drift.updatesite</module>
</modules>
<repositories>
<repository>
<name>BestSolution e(fx)clipse releases</name>
<id>efxclipse-releases</id>
<url>http://maven.bestsolution.at/efxclipse-releases/</url>
</repository>
<repository>
<name>BestSolution e(fx)clipse snapshots</name>
<id>efxclipse-snapshots</id>
<url>http://maven.bestsolution.at/efxclipse-snapshots/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>efxclipse-releases</id>
<url>http://maven.bestsolution.at/efxclipse-releases/</url>
</pluginRepository>
<pluginRepository>
<id>efxclipse-snapshots</id>
<url>http://maven.bestsolution.at/efxclipse-snapshots/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>at.bestsolution</groupId>
<artifactId>maven-osgi-exec-plugin</artifactId>
<version>0.0.2-SNAPSHOT</version>
</plugin>
<plugin>
<groupId>at.bestsolution</groupId>
<artifactId>maven-osgi-package-plugin</artifactId>
<version>0.0.2-SNAPSHOT</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>biz.aQute.bnd</groupId>
<artifactId>bnd-maven-plugin</artifactId>
<version>3.3.0</version>
<executions>
<execution>
<id>default-bnd-process</id>
<goals>
<goal>bnd-process</goal>
</goals>
</execution>
</executions>
<configuration>
<skip>false</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<!-- The following configuration is required because bnd-maven-plugin
generates the manifest to target/classes/META-INF/MANIFEST.MF but the normal
maven-jar-plugin does not use it. If the jar-plugin is patched to pick up
the manifest from this location, then the following config is not needed. -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.6</version>
<configuration>
<archive>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
<!-- plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId>
<executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal>
</goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id>
<goals> <goal>jar</goal> </goals> </execution> </executions> </plugin -->
</plugins>
</build>
</project>