forked from SAP-archive/xsk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
196 lines (183 loc) · 6.18 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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
<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>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<name>XSK - Parent</name>
<description>XSK - HANA XS Classic Compatibility Environment</description>
<groupId>com.sap.xsk</groupId>
<artifactId>xsk-parent</artifactId>
<version>0.4.0-SNAPSHOT</version>
<packaging>pom</packaging>
<inceptionYear>2019</inceptionYear>
<url>http://www.sap.com</url>
<organization>
<name>SAP SE</name>
<url>http://www.sap.com</url>
</organization>
<scm>
<url>https://github.com/SAP/xsk</url>
</scm>
<modules>
<module>modules</module>
<module>releng</module>
<module>samples</module>
</modules>
<profiles>
<profile>
<id>default</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.compiler.plugin.version}</version>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
<debug>true</debug>
<debuglevel>lines,vars,source</debuglevel>
</configuration>
</plugin>
<!-- <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<source>${java.version}</source>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration> <failOnError>false</failOnError> </configuration>
<dependencies>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${commons.lang3}</version>
</dependency>
</dependencies>
</plugin> -->
</plugins>
</build>
</profile>
<profile>
<id>license</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>${license-maven-plugin.version}</version>
<inherited>true</inherited>
<configuration>
<header>${license.header.location}</header>
<aggregate>true</aggregate>
<properties>
<inceptionYear>${project.inceptionYear}</inceptionYear>
<currentYear>${currentYear}</currentYear>
</properties>
<includes>
<include>src/**/*.java</include>
<include>src/**/*.xml</include>
<include>src/**/*.js</include>
</includes>
<excludes>
<exclude>**/logback.xml</exclude>
<exclude>**/logback-test.xml</exclude>
<exclude>**/src/test/resources/**</exclude>
</excludes>
</configuration>
<dependencies>
<dependency>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin-git</artifactId>
<version>${license-maven-plugin.version}</version>
</dependency>
</dependencies>
<executions>
<execution>
<id>format-license</id>
<phase>initialize</phase>
<goals>
<goal>format</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.compiler.plugin.version}</version>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
<debug>true</debug>
<debuglevel>lines,vars,source</debuglevel>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<properties>
<project.title>XSK - Compatibility for HANA Extended Application Engine</project.title>
<java.version>11</java.version>
<xtextVersion>2.18.0</xtextVersion>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<dirigible.version>5.9.1</dirigible.version>
<maven.resource.plugin.version>3.0.2</maven.resource.plugin.version>
<maven.clean.plugin.version>3.0.0</maven.clean.plugin.version>
<maven.compiler.plugin.version>3.8.0</maven.compiler.plugin.version>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<maven.scm.plugin.version>1.9</maven.scm.plugin.version>
<commons.io>2.5</commons.io>
<commons.codec>1.10</commons.codec>
<cxf.version>3.1.11</cxf.version>
<gson.version>2.2.4</gson.version>
<guice.version>4.2.2</guice.version>
<slf4j.version>1.7.5</slf4j.version>
<slf4j.simple.version>1.7.12</slf4j.simple.version>
<logback.version>1.2.3</logback.version>
<com.h2database.version>1.4.200</com.h2database.version>
<derby.version>10.12.1.1</derby.version>
<activemq.version>5.14.5</activemq.version>
<jsr250-api.version>1.0</jsr250-api.version>
<jetty.version>9.4.12.v20180830</jetty.version>
<lucene.version>7.0.1</lucene.version>
<chemistry.version>1.1.0</chemistry.version>
<flowable.version>6.3.0</flowable.version>
<jaxb.version>2.3.0</jaxb.version>
<jaxws.version>2.3.0</jaxws.version>
<emf.mwe.utils.version>1.4.0</emf.mwe.utils.version>
<olingo.version>2.0.11</olingo.version>
<mockito.version>2.28.2</mockito.version>
<powermock-api-mockito2.version>2.0.2</powermock-api-mockito2.version>
<powermock-module-junit4.version>2.0.2</powermock-module-junit4.version>
<junit.version>4.13.1</junit.version>
<hamcrest.all.version>1.3</hamcrest.all.version>
<retrofit.version>1.8.0</retrofit.version>
<okhttp.version>2.7.5</okhttp.version>
<xsuaa.client.version>2.2.0</xsuaa.client.version>
<apache.httpclient.version>4.5.8</apache.httpclient.version>
<commons.lang3>3.9</commons.lang3>
<license-maven-plugin.version>4.0.rc2</license-maven-plugin.version>
<license.header.location>license-header.txt</license.header.location>
</properties>
</project>