This repository has been archived by the owner on Sep 2, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
pom.xml
129 lines (124 loc) · 3.93 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
<?xml version="1.0" encoding="UTF-8"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>hu.bme.mit.trainbenchmark.ttc</groupId>
<artifactId>hu.bme.mit.trainbenchmark.ttc</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.showWarnings>true</maven.compiler.showWarnings>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<emf.version>2.9.1.v20130827-0309</emf.version>
</properties>
<profiles>
<profile>
<id>all</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<modules>
<module>hu.bme.mit.trainbenchmark.ttc.benchmark</module>
<module>hu.bme.mit.trainbenchmark.ttc.benchmark.atl</module>
<module>hu.bme.mit.trainbenchmark.ttc.benchmark.emfincquery</module>
<module>hu.bme.mit.trainbenchmark.ttc.benchmark.emfincquery.patterns</module>
<module>hu.bme.mit.trainbenchmark.ttc.benchmark.funnyqtglue</module>
<module>hu.bme.mit.trainbenchmark.ttc.benchmark.java</module>
<module>hu.bme.mit.trainbenchmark.ttc.benchmark.sigma</module>
<!--<module>hu.bme.mit.trainbenchmark.ttc.benchmark.viatra</module>-->
<module>hu.bme.mit.trainbenchmark.ttc.emf</module>
<module>hu.bme.mit.trainbenchmark.ttc.emf.model</module>
<module>hu.bme.mit.trainbenchmark.ttc.generator</module>
</modules>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/lib</outputDirectory>
<overWriteReleases>false</overWriteReleases>
<overWriteSnapshots>false</overWriteSnapshots>
<overWriteIfNewer>true</overWriteIfNewer>
</configuration>
</execution>
</executions>
</plugin>
<!--This plugin's configuration is used to store Eclipse m2e settings
only. It has no influence on the Maven build itself. -->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-dependency-plugin
</artifactId>
<versionRange>
[2.1,)
</versionRange>
<goals>
<goal>
copy-dependencies
</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore></ignore>
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<repositories>
<repository>
<id>acceleo</id>
<name>Acceleo Repository (with EMF)</name>
<url>https://repo.eclipse.org/content/groups/acceleo</url>
</repository>
<repository>
<id>sigma</id>
<name>SIGMA repository</name>
<url>https://dl.dropboxusercontent.com/u/4168936/mvn-repo</url>
</repository>
</repositories>
</project>