forked from jmini/Eclipse-Copyright-Generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
107 lines (97 loc) · 3.72 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
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.wdev91.eclipse.copyright</groupId>
<artifactId>root</artifactId>
<version>1.6.1-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>com.wdev91.eclipse.copyright</module>
<module>com.wdev91.eclipse.copyright.feature</module>
<module>com.wdev91.eclipse.copyright.product</module>
<module>com.wdev91.eclipse.copyright.rcptt</module>
<module>com.wdev91.eclipse.copyright.site</module>
<module>com.wdev91.eclipse.copyright.target</module>
<!-- <module>docs/</module> -->
</modules>
<properties>
<rcptt-version>2.5.4</rcptt-version>
<flatten-version>1.3.0</flatten-version>
<tycho-version>2.7.5</tycho-version>
<maven.deploy.skip>true</maven.deploy.skip>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<distributionManagement>
<repository>
<id>github</id>
<url>https://maven.pkg.github.com/ptziegler/Eclipse-Copyright-Generator</url>
</repository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-maven-plugin</artifactId>
<version>${tycho-version}</version>
<extensions>true</extensions>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-director-plugin</artifactId>
<version>${tycho-version}</version>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
<version>${tycho-version}</version>
<configuration>
<target>
<artifact>
<groupId>com.wdev91.eclipse.copyright</groupId>
<artifactId>target-platform</artifactId>
<version>1.6.1-SNAPSHOT</version>
</artifact>
</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>${flatten-version}</version>
<executions>
<execution>
<id>flatten</id>
<phase>process-resources</phase>
<goals>
<goal>flatten</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>deploy-bundles</id>
<activation>
<file>
<exists>META-INF/MANIFEST.MF</exists>
</file>
</activation>
<properties>
<maven.deploy.skip>false</maven.deploy.skip>
</properties>
</profile>
<profile>
<id>deploy-features</id>
<activation>
<file>
<exists>feature.xml</exists>
</file>
</activation>
<properties>
<maven.deploy.skip>false</maven.deploy.skip>
</properties>
</profile>
</profiles>
</project>