-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
96 lines (85 loc) · 3.31 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
<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>
<parent>
<artifactId>unveiling-parent</artifactId>
<groupId>org.atlanmod.unveiling</groupId>
<version>1.0.1</version>
<relativePath/>
</parent>
<groupId>org.atlanmod.unveiling</groupId>
<artifactId>unveiling-emf</artifactId>
<version>2.25.0-SNAPSHOT</version>
<packaging>pom</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.fork>true</maven.compiler.fork>
<eclipse.platform.version>[3.6.0,4.0.0)</eclipse.platform.version>
</properties>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/unveiling/unveiling-emf/issues</url>
</issueManagement>
<developers>
<developer>
<id>sunye</id>
<name>G. Sunyé</name>
<email>[email protected]</email>
</developer>
</developers>
<scm>
<url>scm:git:[email protected]:unveiling/unveiling-emf.git</url>
<connection>scm:git:[email protected]:unveiling/unveiling-emf.git</connection>
<developerConnection>scm:git:[email protected]:unveiling/unveiling-emf.git</developerConnection>
</scm>
<modules>
<module>unveiling-emf-repackaged</module>
<module>org.eclipse.emf.codegen</module>
<module>org.eclipse.emf.ecore</module>
<module>org.eclipse.emf.common</module>
<module>org.eclipse.emf.edit</module>
<module>org.eclipse.emf.ecore.xcore</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.atlanmod.emf</groupId>
<artifactId>org.eclipse.emf.ecore</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.atlanmod.emf</groupId>
<artifactId>org.eclipse.emf.common</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.atlanmod.emf</groupId>
<artifactId>org.eclipse.emf.edit</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.eclipse.core</groupId>
<artifactId>org.eclipse.core.runtime</artifactId>
<version>${eclipse.platform.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>bintray-sunye</id>
<name>Atlanmod unveiling</name>
<url>https://api.bintray.com/maven/atlanmod/unveiling/unveiling-emf/;publish=1</url>
</repository>
</distributionManagement>
</project>