Skip to content

Commit 4110418

Browse files
committed
core: remove the rest build parts for java 8
It was made for GWT that didn't support newer than java 8 versions. From some time it starts to support java 11 (current version already can compile on that) Signed-off-by: Stanislav Melnichuk <[email protected]>
1 parent 8d33abc commit 4110418

File tree

6 files changed

+0
-49
lines changed

6 files changed

+0
-49
lines changed

Diff for: backend/manager/modules/common/pom.xml

-13
Original file line numberDiff line numberDiff line change
@@ -59,19 +59,6 @@
5959

6060
<build>
6161
<plugins>
62-
63-
<plugin>
64-
<artifactId>maven-compiler-plugin</artifactId>
65-
<configuration>
66-
<release>8</release>
67-
<target>1.8</target>
68-
<source>1.8</source>
69-
<excludes>
70-
<exclude>**/uioverrides/**/*</exclude>
71-
</excludes>
72-
</configuration>
73-
</plugin>
74-
7562
<plugin>
7663
<artifactId>maven-source-plugin</artifactId>
7764
<executions>

Diff for: backend/manager/modules/compat/pom.xml

-9
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,6 @@
1414

1515
<build>
1616
<plugins>
17-
18-
<plugin>
19-
<artifactId>maven-compiler-plugin</artifactId>
20-
<configuration>
21-
<release>8</release>
22-
<target>1.8</target>
23-
<source>1.8</source>
24-
</configuration>
25-
</plugin>
2617
<plugin>
2718
<artifactId>maven-source-plugin</artifactId>
2819
<executions>

Diff for: frontend/webadmin/modules/gwt-common/pom.xml

-14
Original file line numberDiff line numberDiff line change
@@ -105,20 +105,6 @@
105105
</testResource>
106106
</testResources>
107107
<plugins>
108-
<plugin>
109-
<groupId>org.codehaus.mojo</groupId>
110-
<artifactId>properties-maven-plugin</artifactId>
111-
<executions>
112-
<execution>
113-
<goals>
114-
<goal>set-system-properties</goal>
115-
</goals>
116-
<configuration>
117-
<properties><property><name>javaAAA.home</name><value>/lib/jvm/java-1.8</value></property></properties>
118-
</configuration>
119-
</execution>
120-
</executions>
121-
</plugin>
122108
<plugin>
123109
<groupId>org.codehaus.mojo</groupId>
124110
<artifactId>gwt-maven-plugin</artifactId>

Diff for: frontend/webadmin/modules/gwt-extension/pom.xml

-2
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,6 @@
4141
<plugin>
4242
<artifactId>maven-compiler-plugin</artifactId>
4343
<configuration>
44-
<release>8</release>
45-
<target>1.8</target>
4644
<excludes>
4745
<exclude>**/uioverrides/**/*</exclude>
4846
</excludes>

Diff for: frontend/webadmin/modules/pom.xml

-4
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,6 @@
6565
<groupId>org.apache.maven.plugins</groupId>
6666
<artifactId>maven-compiler-plugin</artifactId>
6767
<configuration>
68-
<source>1.8</source>
69-
<target>1.8</target>
70-
<release>8</release>
71-
7268
<!-- We use maven-processor-plugin to invoke annotation processors -->
7369
<compilerArgument>-proc:none</compilerArgument>
7470
<excludes>

Diff for: pom.xml

-7
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,6 @@
142142
<maven-source-plugin.version>3.2.1</maven-source-plugin.version>
143143
<maven-surefire-plugin.version>3.0.0-M7</maven-surefire-plugin.version>
144144
<maven-war-plugin.version>3.3.2</maven-war-plugin.version>
145-
<properties-maven-plugin.version>1.1.0</properties-maven-plugin.version>
146145
<spotbugs-maven-plugin.version>4.7.2.0</spotbugs-maven-plugin.version>
147146
<taglist-maven-plugin.version>3.0.0</taglist-maven-plugin.version>
148147

@@ -1062,12 +1061,6 @@
10621061
<version>${maven-install-plugin.version}</version>
10631062
</plugin>
10641063

1065-
<plugin>
1066-
<groupId>org.codehaus.mojo</groupId>
1067-
<artifactId>properties-maven-plugin</artifactId>
1068-
<version>${properties-maven-plugin.version}</version>
1069-
</plugin>
1070-
10711064
<plugin>
10721065
<groupId>com.github.spotbugs</groupId>
10731066
<artifactId>spotbugs-maven-plugin</artifactId>

0 commit comments

Comments
 (0)