File tree Expand file tree Collapse file tree 4 files changed +74
-4
lines changed Expand file tree Collapse file tree 4 files changed +74
-4
lines changed Original file line number Diff line number Diff line change 1
1
<project >
2
2
<modelVersion >4.0.0</modelVersion >
3
+
4
+ <parent >
5
+ <groupId >oracle.kubernetes</groupId >
6
+ <artifactId >operator-parent</artifactId >
7
+ <version >2.2</version >
8
+ </parent >
9
+
10
+
3
11
<groupId >oracle.kubernetes</groupId >
4
12
<artifactId >build-tools</artifactId >
5
- <version >1.0</version >
6
13
<name >Build Tools</name >
14
+
15
+ <build >
16
+ <plugins >
17
+ <plugin >
18
+ <groupId >org.apache.maven.plugins</groupId >
19
+ <artifactId >maven-enforcer-plugin</artifactId >
20
+ <version >${maven-enforcer-plugin-version} </version >
21
+ <executions >
22
+ <execution >
23
+ <id >enforce-maven</id >
24
+ <goals >
25
+ <goal >enforce</goal >
26
+ </goals >
27
+ <configuration >
28
+ <rules >
29
+ <requireMavenVersion >
30
+ <version >${maven.version.range} </version >
31
+ </requireMavenVersion >
32
+ </rules >
33
+ </configuration >
34
+ </execution >
35
+ </executions >
36
+ </plugin >
37
+ <plugin >
38
+ <groupId >org.apache.maven.plugins</groupId >
39
+ <artifactId >maven-compiler-plugin</artifactId >
40
+ <version >${maven-compiler-plugin-version} </version >
41
+ <configuration >
42
+ <release >11</release >
43
+ <compilerArgs >
44
+ <arg >-Xpkginfo:always</arg >
45
+ </compilerArgs >
46
+ </configuration >
47
+ </plugin >
48
+ </plugins >
49
+ </build >
50
+
7
51
</project >
Original file line number Diff line number Diff line change 2
2
<project xmlns =" http://maven.apache.org/POM/4.0.0"
3
3
xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4
4
xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5
+ <modelVersion >4.0.0</modelVersion >
6
+
5
7
<parent >
6
8
<artifactId >operator-parent</artifactId >
7
9
<groupId >oracle.kubernetes</groupId >
8
10
<version >2.2</version >
9
11
</parent >
10
- <modelVersion >4.0.0</modelVersion >
11
12
12
13
<artifactId >buildtime-reports</artifactId >
13
14
<packaging >pom</packaging >
14
15
<name >Project Reports</name >
15
16
17
+ <build >
18
+ <plugins >
19
+ <plugin >
20
+ <groupId >org.apache.maven.plugins</groupId >
21
+ <artifactId >maven-enforcer-plugin</artifactId >
22
+ <version >${maven-enforcer-plugin-version} </version >
23
+ <executions >
24
+ <execution >
25
+ <id >enforce-maven</id >
26
+ <goals >
27
+ <goal >enforce</goal >
28
+ </goals >
29
+ <configuration >
30
+ <rules >
31
+ <requireMavenVersion >
32
+ <version >${maven.version.range} </version >
33
+ </requireMavenVersion >
34
+ </rules >
35
+ </configuration >
36
+ </execution >
37
+ </executions >
38
+ </plugin >
39
+ </plugins >
40
+ </build >
41
+
16
42
<profiles >
17
43
<profile >
18
44
<id >reports</id >
Original file line number Diff line number Diff line change 11
11
# - This script is an expansion of https://gist.github.com/yuanying/3aa7d59dcce65470804ab43def646ab6
12
12
#
13
13
14
- IMAGE=' store/oracle/serverjre:8 '
14
+ IMAGE=' openjdk:11-oracle '
15
15
IMAGEPULLPOLICY=' IfNotPresent'
16
16
IMAGEPULLSECRETS=' '
17
17
IPSCOMMA=' '
Original file line number Diff line number Diff line change 14
14
# - Image secret parameter hasn't been tested.
15
15
#
16
16
17
- IMAGE=' store/oracle/serverjre:8 '
17
+ IMAGE=' openjdk:11-oracle '
18
18
IMAGEPULLPOLICY=' IfNotPresent'
19
19
IMAGEPULLSECRETS=' '
20
20
IPSCOMMA=' '
You can’t perform that action at this time.
0 commit comments