-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
125 lines (121 loc) · 3.96 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
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>de.uni_paderborn.swt.cards</groupId>
<artifactId>root</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<parent>
<groupId>de.uni_paderborn.swt.cards</groupId>
<artifactId>releng</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>./de.uni_paderborn.swt.cards.releng</relativePath>
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<keystore.path>${keystore.path}</keystore.path>
<tsa>http://timestamp.digicert.com</tsa>
<keystore.alias>cards-key</keystore.alias>
<keystore.store.password>${keystore.store.password}</keystore.store.password>
<keystore.key.password>${keystore.key.password}</keystore.key.password>
</properties>
<modules>
<module>de.uni_paderborn.swt.cards.dsl</module>
<module>de.uni_paderborn.swt.cards.dsl.ide</module>
<module>de.uni_paderborn.swt.cards.dsl.ui</module>
<module>de.uni_paderborn.swt.cards.dsl.tests</module>
<module>de.uni_paderborn.swt.cards.mappingModel</module>
<module>de.uni_paderborn.swt.cards.mappingModel.tests</module>
<module>de.uni_paderborn.swt.cards.design</module>
<module>de.uni_paderborn.swt.cards.feature</module>
<module>de.uni_paderborn.swt.cards.update</module>
<module>de.uni_paderborn.swt.cards.codeGen</module>
<module>de.uni_paderborn.swt.cards.attackgraphTransformation</module>
<module>de.uni_paderborn.swt.cards.attackgraphTransformationInvocation</module>
<!-- <module>de.uni_paderborn.swt.cards.attackgraphTransformation.tests</module> -->
<module>de.uni_paderborn.swt.cards.analysisGen</module>
</modules>
<pluginRepositories>
<pluginRepository>
<id>central</id>
<name>Central Repository</name>
<url>https://repo.maven.apache.org/maven2</url>
<layout>default</layout>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<updatePolicy>never</updatePolicy>
</releases>
</pluginRepository>
</pluginRepositories>
<build>
<pluginManagement>
<plugins>
<!-- xtend-maven-plugin is in pluginManagement instead of in plugins
so that it doesn't run before the exec-maven-plugin's *.mwe2 gen;
this way we can list it after.
-->
<plugin>
<groupId>org.eclipse.xtend</groupId>
<artifactId>xtend-maven-plugin</artifactId>
<version>${xtext.version}</version>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>xtend-install-debug-info</goal>
<goal>testCompile</goal>
<goal>xtend-test-install-debug-info</goal>
</goals>
</execution>
</executions>
<configuration>
<outputDirectory>xtend-gen</outputDirectory>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jarsigner-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<storetype>${keystore.type}</storetype>
<keystore>${keystore.path}</keystore>
<alias>${keystore.alias}</alias>
<storepass>${keystore.store.password}</storepass>
<keypass>${keystore.key.password}</keypass>
</configuration>
<executions>
<execution>
<id>sign</id>
<goals>
<goal>sign</goal>
</goals>
</execution>
<execution>
<id>verify</id>
<goals>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>central</id>
<name>Central Repository</name>
<url>https://repo.maven.apache.org/maven2</url>
<layout>default</layout>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
</project>