-
Notifications
You must be signed in to change notification settings - Fork 184
/
pom.xml
111 lines (103 loc) · 2.82 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
<?xml version="1.0" encoding="UTF-8"?>
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.eclipseuitheme.themes</groupId>
<artifactId>com.github.eclipseuitheme.themes.parent</artifactId>
<version>0.8.9-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Eclipse Moonrise UI Theme</name>
<developers>
<developer>
<id>guari</id>
<name>Andrea Guarinoni</name>
<email></email>
<organization></organization>
<roles>
<role>Lead Developer</role>
</roles>
<timezone>+1</timezone>
</developer>
</developers>
<contributors>
<contributor>
<name>Paul Verest</name>
<organization>Nodeclipse organization</organization>
<organizationUrl>http://www.nodeclipse.org/</organizationUrl>
<timezone>+8</timezone>
</contributor>
</contributors>
<prerequisites>
<maven>3.0</maven>
</prerequisites>
<properties>
<tycho-version>0.19.0</tycho-version>
<!-- PROJECT SETTINGS -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<modules>
<module>com.github.eclipseuitheme.themes.plugin</module>
<module>com.github.eclipseuitheme.themes.feature</module>
<module>com.github.eclipseuitheme.themes.updatesite</module>
</modules>
<repositories>
<repository>
<id>juno</id>
<url>http://download.eclipse.org/releases/juno/</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>tycho-compiler-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</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</arch>
</environment>
<environment>
<os>linux</os>
<ws>gtk</ws>
<arch>x86_64</arch>
</environment>
<environment>
<os>win32</os>
<ws>win32</ws>
<arch>x86</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>
</plugins>
</build>
</project>