-
Notifications
You must be signed in to change notification settings - Fork 13
/
pom.xml
154 lines (144 loc) · 5.01 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
<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>org.obeonetwork.acceleo</groupId>
<artifactId>org.obeonetwork.pim.uml2.gen.java.parent</artifactId>
<version>2.0.2.qualifier</version>
<packaging>pom</packaging>
<name>Acceleo UML2 to Java Generator Project</name>
<licenses>
<license>
<name>Eclipse Public License v1.0</name>
<comments>
All rights reserved.
This program and the accompanying materials are made
available under the terms of the Eclipse Public License v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/epl-v10.htm
</comments>
</license>
</licenses>
<modules>
<module>plugins/org.obeonetwork.pim.uml2.gen.java</module>
<module>plugins/org.obeonetwork.pim.uml2.gen.java.ui</module>
<module>doc/org.obeonetwork.pim.uml2.gen.java.doc</module>
<module>features/org.obeonetwork.pim.uml2.gen.java.feature</module>
<module>features/org.obeonetwork.pim.uml2.gen.java.ui.feature</module>
<module>updatesite/org.obeonetwork.pim.uml2.gen.java.updatesite</module>
</modules>
<properties>
<acceleo-version>3.3.4-SNAPSHOT</acceleo-version>
<tycho-version>0.14.1</tycho-version>
<acceleo-site>http://download.eclipse.org/modeling/m2t/acceleo/updates/releases/3.3</acceleo-site>
</properties>
<profiles>
<profile>
<id>platform-juno</id>
<activation>
<activeByDefault>true</activeByDefault>
<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.2)</platform-version>
</properties>
</profile>
</profiles>
<repositories>
<repository>
<id>eclipse-platform</id>
<layout>p2</layout>
<url>${eclipse-site}</url>
</repository>
<repository>
<id>acceleo</id>
<layout>p2</layout>
<url>${acceleo-site}</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<!-- need maven-findbugs-2.3.2-SNAPSHOT, see http://jira.codehaus.org/browse/MFINDBUGS-122 remove this when this version is released -->
<id>codehaus.snapshots</id>
<url>http://snapshots.repository.codehaus.org/</url>
</pluginRepository>
<pluginRepository>
<id>Indigo Release</id>
<url>https://raw.github.com/eclipse/acceleo/master/maven/repository/releases/indigo</url>
</pluginRepository>
<pluginRepository>
<id>Juno Release</id>
<url>https://raw.github.com/eclipse/acceleo/master/maven/repository/releases/juno</url>
</pluginRepository>
<pluginRepository>
<id>Snapshots</id>
<url>https://raw.github.com/eclipse/acceleo/master/maven/repository/snapshots</url>
</pluginRepository>
</pluginRepositories>
<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>target-platform-configuration</artifactId>
<version>${tycho-version}</version>
<configuration>
<resolver>p2</resolver>
<pomDependencies>consider</pomDependencies>
</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>
<!-- TODO remove workaround when https://issues.sonatype.org/browse/TYCHO-473 is fixed -->
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-source-plugin</artifactId>
<version>${tycho-version}</version>
<executions>
<execution>
<id>attach-source</id>
<phase>process-classes</phase>
<goals>
<goal>plugin-source</goal>
</goals>
</execution>
</executions>
</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>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.3</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>