Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions .github/workflows/backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,25 +32,28 @@ jobs:
check-license:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Check License Header
uses: apache/skywalking-eyes/header@main
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
java: [11, 17]
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v2
with:
java-version: 11
distribution: 'adopt'
java-version: ${{ matrix.java }}
distribution: 'adopt'
- name: Install Protoc
run: sudo apt install -y protobuf-compiler
- uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven
key: ${{ runner.os }}-maven-${{ matrix.java }}
- name: Build And Install
run: ./mvnw clean install -B -Dmaven.test.skip=true
- name: Run Unit tests
Expand Down
15 changes: 9 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -637,9 +637,8 @@
<plugins>
<!-- Make some additional properties available to simplify keeping some content up to date -->
<plugin>
<groupId>org.codehaus.gmaven</groupId>
<artifactId>groovy-maven-plugin</artifactId>
<version>2.1.1</version>
<groupId>org.codehaus.gmavenplus</groupId>
<artifactId>gmavenplus-plugin</artifactId>
<executions>
<!-- Do some pre-build checks and report any findings to the user -->
<execution>
Expand Down Expand Up @@ -976,6 +975,11 @@
<artifactId>artifactory-maven-plugin</artifactId>
<version>2.7.0</version>
</plugin>
<plugin>
<groupId>org.codehaus.gmavenplus</groupId>
<artifactId>gmavenplus-plugin</artifactId>
<version>4.1.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
Expand All @@ -991,9 +995,8 @@
<plugins>
<!-- Make some additional properties available to simplify keeping some content up to date -->
<plugin>
<groupId>org.codehaus.gmaven</groupId>
<artifactId>groovy-maven-plugin</artifactId>
<version>2.1.1</version>
<groupId>org.codehaus.gmavenplus</groupId>
<artifactId>gmavenplus-plugin</artifactId>
<executions>
<!-- Do some pre-build checks and report any findings to the user -->
<execution>
Expand Down
Loading