-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
146 lines (140 loc) · 5.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<?xml version="1.0" encoding="utf-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.entando</groupId>
<artifactId>entando-quarkus-parent</artifactId>
<version>7.4.0-ENG-5324-PR-55</version>
<relativePath/>
</parent>
<artifactId>entando-k8s-dbjob</artifactId>
<version>7.4.0-SNAPSHOT</version>
<name>Entando K8S Database Job</name>
<description>Entando's K8S Database Job</description>
<url>https://central.entando.com</url>
<inceptionYear>2019</inceptionYear>
<!-- LICENSE AND INFO -->
<organization>
<name>Entando Inc.</name>
<url>http://www.entando.com/</url>
</organization>
<licenses>
<license>
<name>GNU LESSER GENERAL PUBLIC LICENSE, Version 3, 29 June 2007</name>
<url>https://www.gnu.org/licenses/lgpl-3.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<!-- SCM & ISSUES -->
<scm>
<connection>scm:git:[email protected]:${github.organization}/${project.artifactId}.git</connection>
<developerConnection>scm:git:[email protected]:${github.organization}/${project.artifactId}.git
</developerConnection>
<url>https://github.com/${github.organization}/${project.artifactId}/</url>
</scm>
<issueManagement>
<system>Github</system>
<url>https://github.com/${github.organization}/${project.artifactId}/issues/</url>
</issueManagement>
<!-- PROPERTIES -->
<properties>
<preDeploymentTestGroups>integration</preDeploymentTestGroups>
<postDeploymentTestGroups>end-to-end</postDeploymentTestGroups>
<github.organization>entando-k8s</github.organization>
<sonar.junit.reportPaths>target/surefire-reports</sonar.junit.reportPaths>
<sonar.projectKey>${github.organization}_${project.artifactId}</sonar.projectKey>
<entando-k8s-operator-common.version>7.4.0-ENG-5324-PR-154</entando-k8s-operator-common.version>
</properties>
<!-- DEPENDENCIES -->
<dependencies>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-arc</artifactId>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
<dependency>
<groupId>com.oracle.ojdbc</groupId>
<artifactId>ojdbc8</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-picocli</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-kubernetes-client</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>entando-k8s-operator-common</artifactId>
<version>${entando-k8s-operator-common.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>entando-k8s-operator-common</artifactId>
<version>${entando-k8s-operator-common.version}</version>
<type>test-jar</type>
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>jx-releases</id>
<url>https://nexus-jx.apps.serv.run/repository/maven-releases/</url>
</repository>
</repositories>
<!-- BUILD -->
<build>
<plugins>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M1</version>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>native</id>
<properties>
<quarkus.native.additional-build-args>
--report-unsupported-elements-at-runtime,-H:ReflectionConfigurationFiles=reflection-config.json,-H:ResourceConfigurationFiles=resources-config.json,-H:DynamicProxyConfigurationFiles=proxy-config.json
</quarkus.native.additional-build-args>
</properties>
</profile>
</profiles>
</project>