forked from ljader/redmine-mylyn-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
173 lines (159 loc) · 4.57 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<?xml version="1.0" encoding="UTF-8"?>
<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>
<prerequisites>
<maven>3.0</maven>
</prerequisites>
<groupId>net.sf.redmine_mylyn</groupId>
<artifactId>net.sf.redmine_mylyn.parent</artifactId>
<version>0.4.0-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>net.sf.redmine_mylyn</module>
<module>net.sf.redmine_mylyn.common</module>
<module>net.sf.redmine_mylyn.api</module>
<module>net.sf.redmine_mylyn.core</module>
<module>net.sf.redmine_mylyn.ui</module>
<module>net.sf.redmine_mylyn.feature</module>
<module>net.sf.redmine_mylyn.p2repository</module>
</modules>
<properties>
<tycho-version>0.20.0</tycho-version>
<platform-version-name>indigo</platform-version-name>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<eclipse-site>http://download.eclipse.org/releases/${platform-version-name}</eclipse-site>
<mylyn-site>http://download.eclipse.org/mylyn/releases/latest</mylyn-site>
<orbit-site>http://download.eclipse.org/tools/orbit/downloads/drops/R20110523182458/repository/</orbit-site>
<aspectj-site>http://download.eclipse.org/tools/ajdt/37/dev/update</aspectj-site>
</properties>
<repositories>
<repository>
<id>eclipse-platform</id>
<layout>p2</layout>
<url>${eclipse-site}</url>
</repository>
<repository>
<id>mylyn</id>
<layout>p2</layout>
<url>${mylyn-site}</url>
</repository>
<repository>
<id>orbit</id>
<layout>p2</layout>
<url>${orbit-site}</url>
</repository>
<repository>
<id>aspectj</id>
<layout>p2</layout>
<url>${aspectj-site}</url>
</repository>
</repositories>
<build>
<sourceDirectory>src</sourceDirectory>
<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>target-platform-configuration</artifactId>
<version>${tycho-version}</version>
<configuration>
<resolver>p2</resolver>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-compiler-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.4.1</version>
<configuration>
<encoding>ISO-8859-1</encoding>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<profiles>
<profile>
<id>platform-helios</id>
<activation>
<property>
<name>platform-version-name</name>
<value>helios</value>
</property>
</activation>
<properties>
<eclipse-site>http://download.eclipse.org/releases/helios</eclipse-site>
<platform-version>[3.6,3.7)</platform-version>
</properties>
</profile>
<profile>
<id>platform-indigo</id>
<activation>
<property>
<name>platform-version-name</name>
<value>indigo</value>
</property>
</activation>
<properties>
<eclipse-site>http://download.eclipse.org/releases/indigo</eclipse-site>
<platform-version>[3.7,3.8)</platform-version>
</properties>
</profile>
<profile>
<id>platform-juno</id>
<activation>
<property>
<name>platform-version-name</name>
<value>juno</value>
</property>
</activation>
<properties>
<eclipse-site>http://download.eclipse.org/releases/juno</eclipse-site>
<platform-version>[3.8,4.3)</platform-version>
</properties>
</profile>
<profile>
<id>platform-kepler</id>
<activation>
<property>
<name>platform-version-name</name>
<value>kepler</value>
</property>
</activation>
<properties>
<eclipse-site>http://download.eclipse.org/releases/kepler</eclipse-site>
<platform-version>[4.3,4.4)</platform-version>
</properties>
</profile>
<profile>
<id>platform-luna</id>
<activation>
<property>
<name>platform-version-name</name>
<value>luna</value>
</property>
</activation>
<properties>
<eclipse-site>http://download.eclipse.org/releases/luna</eclipse-site>
<platform-version>[4.4,4.5)</platform-version>
</properties>
</profile>
</profiles>
</project>