-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpom.xml
93 lines (79 loc) · 3.05 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2011 Obeo.
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.html
Contributors:
Obeo - initial API and implementation
-->
<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>
<prerequisites>
<maven>3.0.0</maven>
</prerequisites>
<groupId>TOGAF-Designer</groupId>
<artifactId>org.obeonetwork.dsl.togaf</artifactId>
<version>3.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>TOGAF Designer Parent</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>
<properties>
<tycho-version>0.23.1</tycho-version>
</properties>
<modules>
<module>features/org.obeonetwork.dsl.togaf.feature</module>
<module>features/org.obeonetwork.dsl.togaf.repository</module>
<module>plugins/org.obeonetwork.dsl.togaf.contentfwk</module>
<module>plugins/org.obeonetwork.dsl.togaf.contentfwk.fragment</module>
<module>plugins/org.obeonetwork.dsl.togaf.contentfwk.edit</module>
<module>plugins/org.obeonetwork.dsl.togaf.contentfwk.editor</module>
<module>plugins/org.obeonetwork.dsl.togaf.design</module>
<module>plugins/org.obeonetwork.dsl.togaf.design.doc</module>
<module>samples/org.obeonetwork.dsl.togaf.samples</module>
<module>samples/org.obeonetwork.dsl.togaf.samples.pack.core</module>
</modules>
<repositories>
<repository>
<id>mars</id>
<layout>p2</layout>
<url>http://download.eclipse.org/releases/mars/201602261000</url>
</repository>
<repository>
<id>sirius</id>
<layout>p2</layout>
<!--<url>http://update.obeo.fr/bundles/ObeoSmartEA/integration/tp/1.5.4</url>-->
<!--<url>http://update.obeo.fr/release/designer/6.2.1/juno3/update/repository/</url>-->
<!--<url>http://update.obeo.fr/release/designer/7.0/community/7.0.1/luna/repository/</url>-->
<url>http://update.obeo.fr/release/designer/9.1/team/9.1.1/mars/repository/</url>
</repository>
<repository>
<id>AcceleoLegacy</id>
<layout>p2</layout>
<url>http://download.eclipse.org/sirius/updates/legacy/</url>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<!-- enable tycho build extension -->
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-maven-plugin</artifactId>
<version>${tycho-version}</version>
<extensions>true</extensions>
</plugin>
</plugins>
</build>
</project>