forked from abapGit/ADT_Frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
155 lines (155 loc) · 4.72 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.abapgit.adt</groupId>
<artifactId>org.abapgit.adt.parent</artifactId>
<version>1.4.0</version>
<name>abapGit</name>
<packaging>pom</packaging>
<modules>
<module>org.abapgit.adt.backend</module>
<module>org.abapgit.adt.ui</module>
<module>org.abapgit.adt.feature</module>
<module>org.abapgit.adt.updatesite</module>
<module>test</module>
</modules>
<dependencies>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<version>3.6</version>
</dependency>
</dependencies>
<profiles>
<profile>
<id>dev</id>
<activation>
<activeByDefault>false</activeByDefault>
<property>
<name>environment</name>
<value>dev</value>
</property>
</activation>
<properties>
<spotbugs.failOnError>false</spotbugs.failOnError>
<spotbugs.failOnViolation>false</spotbugs.failOnViolation>
</properties>
</profile>
<profile>
<id>prod</id>
<activation>
<activeByDefault>true</activeByDefault>
<property>
<name>environment</name>
<value>prod</value>
</property>
</activation>
<properties>
<spotbugs.failOnError>true</spotbugs.failOnError>
<spotbugs.failOnViolation>true</spotbugs.failOnViolation>
</properties>
</profile>
</profiles>
<properties>
<tycho-version>1.4.0</tycho-version>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-versions-plugin</artifactId>
<version>${tycho-version}</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-versions-plugin</artifactId>
</plugin>
<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>
<dependency-resolution>
<optionalDependencies>ignore</optionalDependencies>
</dependency-resolution>
<pomDependencies>consider</pomDependencies>
<environments>
<environment>
<os>win32</os>
<ws>win32</ws>
<arch>x86_64</arch>
</environment>
<environment>
<os>linux</os>
<ws>gtk</ws>
<arch>x86_64</arch>
</environment>
<environment>
<os>macosx</os>
<ws>cocoa</ws>
<arch>x86_64</arch>
</environment>
</environments>
</configuration>
</plugin>
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>3.1.11</version>
<dependencies>
<dependency>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs</artifactId>
<version>3.1.12</version>
</dependency>
</dependencies>
<configuration>
<includeFilterFile>spotbugs-exclude.xml</includeFilterFile>
</configuration>
<executions>
<execution>
<id>validate</id>
<phase>test</phase>
<configuration>
<failOnError>${spotbugs.failOnError}</failOnError>
<failOnViolation>${spotbugs.failOnError}</failOnViolation>
</configuration>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-surefire-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<trimStackTrace>false</trimStackTrace>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>eclipse-2019-12</id>
<url>http://download.eclipse.org/releases/2019-12</url>
<layout>p2</layout>
</repository>
<repository>
<id>adt-2019-12</id>
<url>https://tools.hana.ondemand.com/2019-12</url>
<layout>p2</layout>
</repository>
</repositories>
</project>