-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpom.xml
More file actions
66 lines (66 loc) · 2.11 KB
/
Copy pathpom.xml
File metadata and controls
66 lines (66 loc) · 2.11 KB
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
<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>
<groupId>io.rtdi.appcontainer</groupId>
<artifactId>appcontainerbase</artifactId>
<name>${project.groupId}:${project.artifactId}</name>
<description>Parent POM.</description>
<version>${revision}</version>
<packaging>pom</packaging>
<url>https://www.rtdi.io/</url>
<developers>
<developer>
<name>Werner Daehn</name>
<email>werner.daehn@rtdi.io</email>
<organization>rtdi.io GmbH</organization>
<organizationUrl>https://www.rtdi.io</organizationUrl>
</developer>
</developers>
<licenses>
<license>
<name>GPL</name>
<url>https://github.com/rtdi/AppContainer/blob/master/LICENSE</url>
</license>
<license>
<name>Commercial</name>
<url>https://github.com/rtdi/AppContainer/blob/master/LICENSE_COMMERCIAL</url>
</license>
</licenses>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<revision>0.11.10</revision>
<tomcatversion>10.1.28</tomcatversion>
<appcontainerrealm>0.9.19</appcontainerrealm>
<log4j.version>2.23.1</log4j.version>
<junit.jupiter.version>5.11.0</junit.jupiter.version>
<antlr.version>4.13.2</antlr.version>
</properties>
<modules>
<module>appcontainerapp</module>
<module>dbactivationbase</module>
<module>dbactivationsnowflake</module>
<module>dbactivationhana</module>
<module>dbactivationsqlserver</module>
<module>dbactivationmysql</module>
<module>dbactivationpostgresql</module>
<module>dbactivationabap</module>
</modules>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>17</source>
<target>17</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.17.1</version>
</plugin>
</plugins>
</build>
</project>