-
Notifications
You must be signed in to change notification settings - Fork 7
/
pom.xml
85 lines (80 loc) · 2.4 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
<?xml version="1.0"?>
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>com.synopsys.arc.gnu</groupId>
<artifactId>gnu-parent</artifactId>
<version>2019.9.0-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>repository</module>
<module>feature</module>
<module>com.arc.embeddedcdt</module>
<module>gnu.elf</module>
</modules>
<properties>
<!-- Path to Eclipse p2 repository -->
<eclipse.mirror>http://ftp-stud.fht-esslingen.de/pub/Mirrors/eclipse</eclipse.mirror>
<eclipse.version>2022-03</eclipse.version>
<!-- Path to CDT p2 repository -->
<cdt.mirror>https://archive.eclipse.org</cdt.mirror>
<cdt.version>10.6</cdt.version>
<tycho-version>1.3.0</tycho-version>
</properties>
<repositories>
<repository>
<id>cdt</id>
<url>${cdt.mirror}/tools/cdt/releases/${cdt.version}/</url>
<layout>p2</layout>
</repository>
<repository>
<id>eclipse</id>
<url>${eclipse.mirror}/releases/${eclipse.version}/</url>
<layout>p2</layout>
</repository>
</repositories>
<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>target-platform-configuration</artifactId>
<version>${tycho-version}</version>
<configuration>
<environments>
<environment>
<os>linux</os>
<ws>gtk</ws>
<arch>x86_64</arch>
</environment>
<environment>
<os>win32</os>
<ws>win32</ws>
<arch>x86_64</arch>
</environment>
<environment>
<os>macosx</os>
<ws>cocoa</ws>
<arch>x86_64</arch>
</environment>
</environments>
</configuration>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-repository-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<!-- XZ compression is not needed for our purposes. -->
<xzCompress>false</xzCompress>
</configuration>
</plugin>
</plugins>
</build>
</project>
<!-- vim: expandtab sts=2 ts=2 sw=2
-->