File tree Expand file tree Collapse file tree 7 files changed +15
-13
lines changed Expand file tree Collapse file tree 7 files changed +15
-13
lines changed Original file line number Diff line number Diff line change 8
8
9
9
steps :
10
10
- uses : actions/checkout@v2
11
- - name : Set up JDK 1.11
11
+ - name : Set up JDK 1.8
12
12
uses : actions/setup-java@v1
13
13
with :
14
- java-version : 1.11
14
+ java-version : 1.8
15
15
- name : Load local Maven repository cache
16
16
uses : actions/cache@v2
17
17
with :
Original file line number Diff line number Diff line change @@ -12,10 +12,10 @@ jobs:
12
12
runs-on : ubuntu-latest
13
13
steps :
14
14
- uses : actions/checkout@v2
15
- - name : Set up JDK 1.11
15
+ - name : Set up JDK 1.8
16
16
uses : actions/setup-java@v1
17
17
with :
18
- java-version : 1.11
18
+ java-version : 1.8
19
19
settings-path : ${{ github.workspace }}
20
20
21
21
- name : Load local Maven repository cache
Original file line number Diff line number Diff line change 8
8
9
9
steps :
10
10
- uses : actions/checkout@v2
11
- - name : Set up JDK 1.11
11
+ - name : Set up JDK 1.8
12
12
uses : actions/setup-java@v1
13
13
with :
14
- java-version : 1.11
14
+ java-version : 1.8
15
15
16
16
- name : Download Checkstyle
17
17
run : wget https://github.com/checkstyle/checkstyle/releases/download/checkstyle-8.31/checkstyle-8.31-all.jar
Original file line number Diff line number Diff line change @@ -16,10 +16,10 @@ jobs:
16
16
17
17
steps :
18
18
- uses : actions/checkout@v2
19
- - name : Set up JDK 1.11
19
+ - name : Set up JDK 1.8
20
20
uses : actions/setup-java@v1
21
21
with :
22
- java-version : 1.11
22
+ java-version : 1.8
23
23
settings-path : ${{ github.workspace }}
24
24
25
25
- name : Load local Maven repository cache
Original file line number Diff line number Diff line change 8
8
9
9
steps :
10
10
- uses : actions/checkout@v2
11
- - name : Set up JDK 1.11
11
+ - name : Set up JDK 1.8
12
12
uses : actions/setup-java@v1
13
13
with :
14
- java-version : 1.11
14
+ java-version : 1.8
15
15
16
16
- name : Load local Maven repository cache
17
17
uses : actions/cache@v2
Original file line number Diff line number Diff line change @@ -20,6 +20,8 @@ Compile the project with Maven and Java 8 and build an executable java archive:
20
20
mvn clean package
21
21
```
22
22
23
+ Java 8 MUST be used, as the package javax.xml.bin is deprecated/removed in future versions.
24
+
23
25
The JAR file will be created in the `` /target `` folder
24
26
25
27
## How to use
Original file line number Diff line number Diff line change 7
7
8
8
<groupId >life.qbic</groupId >
9
9
<artifactId >xml-manager-lib</artifactId >
10
- <version >1.7.0-SNAPSHOT</version > <!-- <<QUBE_FORCE_BUMP>> -->
10
+ <version >1.7.0-SNAPSHOT</version >
11
11
<name >xml-manager-lib</name >
12
12
<url >http://github.com/qbicsoftware/xml-manager-lib</url >
13
13
<description >library for reading and writing of specific openBIS xml properties </description >
14
14
<packaging >jar</packaging >
15
15
16
16
<properties >
17
- <maven .compiler.source>11 </maven .compiler.source>
18
- <maven .compiler.target>11 </maven .compiler.target>
17
+ <maven .compiler.source>1.8 </maven .compiler.source>
18
+ <maven .compiler.target>1.8 </maven .compiler.target>
19
19
20
20
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
21
21
<project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
You can’t perform that action at this time.
0 commit comments