forked from typhon-project/typhonql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
104 lines (95 loc) · 3.36 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
<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>
<groupId>engineering.swat.typhon</groupId>
<artifactId>typhonql-parent</artifactId>
<version>0.1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>typhonql</module>
<module>typhonql-ast</module>
<module>typhonql-ide</module>
<module>typhonql-feature</module>
<module>typhonql-update-site</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<tycho-version>1.6.0</tycho-version>
<dependency-bundle-version>0.15.0</dependency-bundle-version>
</properties>
<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>tycho-compiler-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<compilerArgument>-parameters</compilerArgument>
</configuration>
</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>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.6.0</version>
<configuration>
<skip>true</skip>
<executable>java</executable>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>internal</id>
<url>http://archiva.clmsuk.com:8090/repository/internal/</url>
</repository>
</distributionManagement>
<repositories>
<repository>
<id>usethesource-cache</id>
<url>https://nexus.usethesource.io/content/repositories/public/</url>
</repository>
<repository>
<id>usethesource-snapshots</id>
<url>https://nexus.usethesource.io/content/repositories/snapshots/</url>
</repository>
<repository>
<id>usethesource-rascalmpl-stable</id>
<layout>p2</layout>
<url>https://update.rascal-mpl.org/archive/0.18.3/</url>
</repository>
<repository>
<id>typepal</id>
<layout>p2</layout>
<url>https://update.rascal-mpl.org/typepal/</url>
</repository>
<repository>
<id>eclipse</id>
<layout>p2</layout>
<url>http://ftp.snt.utwente.nl/pub/software/eclipse/releases/2019-09/</url>
</repository>
<repository>
<id>tm</id>
<layout>p2</layout>
<url>https://nexus.usethesource.io/content/repositories/tm-terminal-marketplace/</url>
</repository>
</repositories>
</project>