This repository has been archived by the owner on Jun 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpom.xml
122 lines (122 loc) · 3.37 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
<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>com.devepos.adt</groupId>
<artifactId>com.devepos.adt.abaptags.parent</artifactId>
<version>1.10.0-SNAPSHOT</version>
<name>ABAP Tags</name>
<packaging>pom</packaging>
<modules>
<module>com.devepos.adt.abaptags.backend</module>
<module>com.devepos.adt.abaptags.ui</module>
<module>com.devepos.adt.abaptags.model</module>
<module>com.devepos.adt.abaptags.doc</module>
<module>com.devepos.adt.abaptags.feature</module>
</modules>
<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>2.7.5</tycho-version>
<eclipse-version>2023-03</eclipse-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>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-latest</id>
<url>http://download.eclipse.org/releases/${eclipse-version}</url>
<layout>p2</layout>
</repository>
<repository>
<id>adt-latest</id>
<url>https://tools.hana.ondemand.com/${eclipse-version}</url>
<layout>p2</layout>
</repository>
</repositories>
</project>