Skip to content

Commit 6609ddc

Browse files
authored
Merge pull request #94 from PizzaFactory/prp-update-to-the-upstream
Update to the upstream
2 parents 2586101 + f706b17 commit 6609ddc

File tree

114 files changed

+148
-190
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

114 files changed

+148
-190
lines changed

.github/workflows/build-pr-check.yml

+3-9
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,11 @@ jobs:
2020
fetch-depth: 0
2121
- name: Check all properties have description
2222
run: ./check_properties_description.sh
23-
- name: Cache local Maven repository
24-
uses: actions/cache@v2
25-
with:
26-
path: ~/.m2/repository
27-
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
28-
restore-keys: |
29-
${{ runner.os }}-maven-
3023
- name: Set up JDK 11
3124
uses: actions/setup-java@v2
3225
with:
33-
distribution: 'adopt'
34-
java-version: '11.0.11+9'
26+
distribution: 'temurin'
27+
java-version: '11.0.14'
28+
cache: 'maven'
3529
- name: Build with Maven
3630
run: mvn -B clean install -U -Pintegration

.github/workflows/next-build.yml

+3-17
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,12 @@ jobs:
2222
- uses: actions/checkout@v2
2323
with:
2424
fetch-depth: 0
25-
- name: Cache local Maven repository
26-
uses: actions/cache@v2
27-
with:
28-
path: ~/.m2/repository
29-
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
30-
restore-keys: |
31-
${{ runner.os }}-maven-
3225
- name: Set up JDK 11
3326
uses: actions/setup-java@v2
3427
with:
35-
distribution: 'adopt'
36-
java-version: '11.0.11+9'
28+
distribution: 'temurin'
29+
java-version: '11.0.14'
30+
cache: 'maven'
3731
- name: Login to docker.io
3832
uses: docker/login-action@v1
3933
with:
@@ -67,14 +61,6 @@ jobs:
6761
6862
docker push quay.io/eclipse/che-server:next
6963
docker push quay.io/eclipse/che-server:${{ steps.build.outputs.short_sha1 }}
70-
- name: Build ubi8 Che Server image
71-
run: |
72-
./dockerfiles/che/build.sh --dockerfile:"rhel.Dockerfile" --tag:"rhel-next"
73-
docker tag quay.io/eclipse/che-server:rhel-next quay.io/eclipse/che-server:rhel-${{ steps.build.outputs.short_sha1 }}
74-
- name: Push ubi8 Che Server image
75-
run: |
76-
docker push quay.io/eclipse/che-server:rhel-next
77-
docker push quay.io/eclipse/che-server:rhel-${{ steps.build.outputs.short_sha1 }}
7864
- name: Create failure MM message
7965
if: ${{ failure() }}
8066
run: |

.github/workflows/release.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,9 @@ jobs:
8181
- name: Set up JDK 11
8282
uses: actions/setup-java@v2
8383
with:
84-
distribution: 'adopt'
85-
java-version: '11.0.11+9'
84+
distribution: 'temurin'
85+
java-version: '11.0.14'
86+
cache: 'maven'
8687
- name: Set up environment
8788
run: |
8889
sudo apt-get update -y || true

.github/workflows/sonar.yaml

+3-8
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,15 @@ jobs:
1414
- name: Set up JDK 11
1515
uses: actions/setup-java@v2
1616
with:
17-
distribution: 'adopt'
18-
java-version: '11.0.11+9'
17+
distribution: 'temurin'
18+
java-version: '11.0.14'
19+
cache: 'maven'
1920
- name: Cache SonarCloud packages
2021
uses: actions/cache@v1
2122
with:
2223
path: ~/.sonar/cache
2324
key: ${{ runner.os }}-sonar
2425
restore-keys: ${{ runner.os }}-sonar
25-
- name: Cache Maven packages
26-
uses: actions/cache@v1
27-
with:
28-
path: ~/.m2
29-
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
30-
restore-keys: ${{ runner.os }}-m2
3126
- name: Build and analyze
3227
env:
3328
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any

assembly/assembly-che-tomcat/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<parent>
1818
<artifactId>che-assembly-parent</artifactId>
1919
<groupId>org.eclipse.che</groupId>
20-
<version>7.44.0-SNAPSHOT</version>
20+
<version>7.45.0-SNAPSHOT</version>
2121
</parent>
2222
<artifactId>assembly-che-tomcat</artifactId>
2323
<packaging>jar</packaging>

assembly/assembly-main/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<parent>
1818
<artifactId>che-assembly-parent</artifactId>
1919
<groupId>org.eclipse.che</groupId>
20-
<version>7.44.0-SNAPSHOT</version>
20+
<version>7.45.0-SNAPSHOT</version>
2121
</parent>
2222
<artifactId>assembly-main</artifactId>
2323
<packaging>pom</packaging>

assembly/assembly-root-war/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<parent>
1818
<artifactId>che-assembly-parent</artifactId>
1919
<groupId>org.eclipse.che</groupId>
20-
<version>7.44.0-SNAPSHOT</version>
20+
<version>7.45.0-SNAPSHOT</version>
2121
</parent>
2222
<artifactId>assembly-root-war</artifactId>
2323
<packaging>war</packaging>

assembly/assembly-swagger-war/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<parent>
1818
<artifactId>che-assembly-parent</artifactId>
1919
<groupId>org.eclipse.che</groupId>
20-
<version>7.44.0-SNAPSHOT</version>
20+
<version>7.45.0-SNAPSHOT</version>
2121
</parent>
2222
<artifactId>assembly-swagger-war</artifactId>
2323
<packaging>war</packaging>

assembly/assembly-wsmaster-war/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<parent>
1818
<artifactId>che-assembly-parent</artifactId>
1919
<groupId>org.eclipse.che</groupId>
20-
<version>7.44.0-SNAPSHOT</version>
20+
<version>7.45.0-SNAPSHOT</version>
2121
</parent>
2222
<artifactId>assembly-wsmaster-war</artifactId>
2323
<packaging>war</packaging>

assembly/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<parent>
1818
<artifactId>che-server</artifactId>
1919
<groupId>org.eclipse.che</groupId>
20-
<version>7.44.0-SNAPSHOT</version>
20+
<version>7.45.0-SNAPSHOT</version>
2121
<relativePath>../pom.xml</relativePath>
2222
</parent>
2323
<artifactId>che-assembly-parent</artifactId>

core/che-core-api-core/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<parent>
1818
<artifactId>che-core-parent</artifactId>
1919
<groupId>org.eclipse.che.core</groupId>
20-
<version>7.44.0-SNAPSHOT</version>
20+
<version>7.45.0-SNAPSHOT</version>
2121
</parent>
2222
<artifactId>che-core-api-core</artifactId>
2323
<packaging>jar</packaging>

core/che-core-api-dto-maven-plugin/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<parent>
1818
<artifactId>che-core-parent</artifactId>
1919
<groupId>org.eclipse.che.core</groupId>
20-
<version>7.44.0-SNAPSHOT</version>
20+
<version>7.45.0-SNAPSHOT</version>
2121
</parent>
2222
<artifactId>che-core-api-dto-maven-plugin</artifactId>
2323
<packaging>maven-plugin</packaging>

core/che-core-api-dto/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<parent>
1818
<artifactId>che-core-parent</artifactId>
1919
<groupId>org.eclipse.che.core</groupId>
20-
<version>7.44.0-SNAPSHOT</version>
20+
<version>7.45.0-SNAPSHOT</version>
2121
</parent>
2222
<artifactId>che-core-api-dto</artifactId>
2323
<packaging>jar</packaging>

core/che-core-api-model/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<parent>
1818
<artifactId>che-core-parent</artifactId>
1919
<groupId>org.eclipse.che.core</groupId>
20-
<version>7.44.0-SNAPSHOT</version>
20+
<version>7.45.0-SNAPSHOT</version>
2121
</parent>
2222
<artifactId>che-core-api-model</artifactId>
2323
<packaging>jar</packaging>

core/che-core-db-vendor-h2/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<parent>
1818
<artifactId>che-core-parent</artifactId>
1919
<groupId>org.eclipse.che.core</groupId>
20-
<version>7.44.0-SNAPSHOT</version>
20+
<version>7.45.0-SNAPSHOT</version>
2121
</parent>
2222
<artifactId>che-core-db-vendor-h2</artifactId>
2323
<name>Che Core :: Commons :: DB :: Vendor H2</name>

core/che-core-db-vendor-mysql/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<parent>
1818
<artifactId>che-core-parent</artifactId>
1919
<groupId>org.eclipse.che.core</groupId>
20-
<version>7.44.0-SNAPSHOT</version>
20+
<version>7.45.0-SNAPSHOT</version>
2121
</parent>
2222
<artifactId>che-core-db-vendor-mysql</artifactId>
2323
<name>Che Core :: Commons :: DB :: Vendor MySQL</name>

core/che-core-db-vendor-postgresql/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<parent>
1818
<artifactId>che-core-parent</artifactId>
1919
<groupId>org.eclipse.che.core</groupId>
20-
<version>7.44.0-SNAPSHOT</version>
20+
<version>7.45.0-SNAPSHOT</version>
2121
</parent>
2222
<artifactId>che-core-db-vendor-postgresql</artifactId>
2323
<name>Che Core :: Commons :: DB :: Vendor PostgreSQL</name>

core/che-core-db/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<parent>
1818
<artifactId>che-core-parent</artifactId>
1919
<groupId>org.eclipse.che.core</groupId>
20-
<version>7.44.0-SNAPSHOT</version>
20+
<version>7.45.0-SNAPSHOT</version>
2121
</parent>
2222
<artifactId>che-core-db</artifactId>
2323
<name>Che Core :: Commons :: DB</name>

core/che-core-logback/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<parent>
1818
<artifactId>che-core-parent</artifactId>
1919
<groupId>org.eclipse.che.core</groupId>
20-
<version>7.44.0-SNAPSHOT</version>
20+
<version>7.45.0-SNAPSHOT</version>
2121
</parent>
2222
<artifactId>che-core-logback</artifactId>
2323
<packaging>jar</packaging>

core/che-core-metrics-core/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<parent>
1818
<artifactId>che-core-parent</artifactId>
1919
<groupId>org.eclipse.che.core</groupId>
20-
<version>7.44.0-SNAPSHOT</version>
20+
<version>7.45.0-SNAPSHOT</version>
2121
</parent>
2222
<artifactId>che-core-metrics-core</artifactId>
2323
<name>Che Core :: Commons :: Metrics :: Core</name>

core/che-core-tracing-core/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<parent>
1818
<artifactId>che-core-parent</artifactId>
1919
<groupId>org.eclipse.che.core</groupId>
20-
<version>7.44.0-SNAPSHOT</version>
20+
<version>7.45.0-SNAPSHOT</version>
2121
</parent>
2222
<artifactId>che-core-tracing-core</artifactId>
2323
<name>Che Core :: Commons :: Tracing :: Core</name>

core/che-core-tracing-metrics/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<parent>
1818
<artifactId>che-core-parent</artifactId>
1919
<groupId>org.eclipse.che.core</groupId>
20-
<version>7.44.0-SNAPSHOT</version>
20+
<version>7.45.0-SNAPSHOT</version>
2121
</parent>
2222
<artifactId>che-core-tracing-metrics</artifactId>
2323
<name>Che Core :: Commons :: Tracing :: Metrics</name>

core/che-core-tracing-web/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<parent>
1818
<artifactId>che-core-parent</artifactId>
1919
<groupId>org.eclipse.che.core</groupId>
20-
<version>7.44.0-SNAPSHOT</version>
20+
<version>7.45.0-SNAPSHOT</version>
2121
</parent>
2222
<artifactId>che-core-tracing-web</artifactId>
2323
<name>Che Core :: Commons :: Tracing :: Web</name>

core/che-core-typescript-dto-maven-plugin/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<parent>
1818
<artifactId>che-core-parent</artifactId>
1919
<groupId>org.eclipse.che.core</groupId>
20-
<version>7.44.0-SNAPSHOT</version>
20+
<version>7.45.0-SNAPSHOT</version>
2121
</parent>
2222
<artifactId>che-core-typescript-dto-maven-plugin</artifactId>
2323
<packaging>maven-plugin</packaging>

core/commons/che-core-commons-annotations/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<parent>
1818
<artifactId>che-core-commons-parent</artifactId>
1919
<groupId>org.eclipse.che.core</groupId>
20-
<version>7.44.0-SNAPSHOT</version>
20+
<version>7.45.0-SNAPSHOT</version>
2121
</parent>
2222
<artifactId>che-core-commons-annotations</artifactId>
2323
<packaging>jar</packaging>

core/commons/che-core-commons-inject/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<parent>
1818
<artifactId>che-core-commons-parent</artifactId>
1919
<groupId>org.eclipse.che.core</groupId>
20-
<version>7.44.0-SNAPSHOT</version>
20+
<version>7.45.0-SNAPSHOT</version>
2121
</parent>
2222
<artifactId>che-core-commons-inject</artifactId>
2323
<packaging>jar</packaging>

core/commons/che-core-commons-j2ee/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<parent>
1818
<artifactId>che-core-commons-parent</artifactId>
1919
<groupId>org.eclipse.che.core</groupId>
20-
<version>7.44.0-SNAPSHOT</version>
20+
<version>7.45.0-SNAPSHOT</version>
2121
</parent>
2222
<artifactId>che-core-commons-j2ee</artifactId>
2323
<packaging>jar</packaging>

core/commons/che-core-commons-json/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<parent>
1818
<artifactId>che-core-commons-parent</artifactId>
1919
<groupId>org.eclipse.che.core</groupId>
20-
<version>7.44.0-SNAPSHOT</version>
20+
<version>7.45.0-SNAPSHOT</version>
2121
</parent>
2222
<artifactId>che-core-commons-json</artifactId>
2323
<packaging>jar</packaging>

core/commons/che-core-commons-lang/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<parent>
1818
<artifactId>che-core-commons-parent</artifactId>
1919
<groupId>org.eclipse.che.core</groupId>
20-
<version>7.44.0-SNAPSHOT</version>
20+
<version>7.45.0-SNAPSHOT</version>
2121
</parent>
2222
<artifactId>che-core-commons-lang</artifactId>
2323
<packaging>jar</packaging>

core/commons/che-core-commons-observability/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<parent>
1818
<artifactId>che-core-commons-parent</artifactId>
1919
<groupId>org.eclipse.che.core</groupId>
20-
<version>7.44.0-SNAPSHOT</version>
20+
<version>7.45.0-SNAPSHOT</version>
2121
</parent>
2222
<artifactId>che-core-commons-observability</artifactId>
2323
<name>Che Core :: Commons :: Tracing and Monitoring wrapper</name>

core/commons/che-core-commons-schedule/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<parent>
1818
<artifactId>che-core-commons-parent</artifactId>
1919
<groupId>org.eclipse.che.core</groupId>
20-
<version>7.44.0-SNAPSHOT</version>
20+
<version>7.45.0-SNAPSHOT</version>
2121
</parent>
2222
<artifactId>che-core-commons-schedule</artifactId>
2323
<packaging>jar</packaging>

core/commons/che-core-commons-test/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<parent>
1818
<artifactId>che-core-commons-parent</artifactId>
1919
<groupId>org.eclipse.che.core</groupId>
20-
<version>7.44.0-SNAPSHOT</version>
20+
<version>7.45.0-SNAPSHOT</version>
2121
</parent>
2222
<artifactId>che-core-commons-test</artifactId>
2323
<packaging>jar</packaging>

core/commons/che-core-commons-tracing/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<parent>
1818
<artifactId>che-core-commons-parent</artifactId>
1919
<groupId>org.eclipse.che.core</groupId>
20-
<version>7.44.0-SNAPSHOT</version>
20+
<version>7.45.0-SNAPSHOT</version>
2121
</parent>
2222
<artifactId>che-core-commons-tracing</artifactId>
2323
<name>Che Core :: Commons :: Tracing</name>

core/commons/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<parent>
1818
<artifactId>che-core-parent</artifactId>
1919
<groupId>org.eclipse.che.core</groupId>
20-
<version>7.44.0-SNAPSHOT</version>
20+
<version>7.45.0-SNAPSHOT</version>
2121
<relativePath>../pom.xml</relativePath>
2222
</parent>
2323
<artifactId>che-core-commons-parent</artifactId>

core/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<parent>
1818
<artifactId>che-server</artifactId>
1919
<groupId>org.eclipse.che</groupId>
20-
<version>7.44.0-SNAPSHOT</version>
20+
<version>7.45.0-SNAPSHOT</version>
2121
<relativePath>../pom.xml</relativePath>
2222
</parent>
2323
<groupId>org.eclipse.che.core</groupId>

0 commit comments

Comments
 (0)