Skip to content

Commit

Permalink
Merge pull request #8 from Qytera-Gmbh/feature/pipeline
Browse files Browse the repository at this point in the history
rework pipeline and dependencies
  • Loading branch information
besessener committed Mar 12, 2024
2 parents 35b7fce + 5d107bc commit a2a6212
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 8 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/gate.yml
@@ -0,0 +1,34 @@
name: Gate

on:
pull_request:
branches:
- main
push:
branches:
- main

jobs:
gate:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Set up JDK
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'adopt'

- name: Build with Maven
run: mvn package

- name: Publish Unit Test Results
uses: EnricoMi/publish-unit-test-result-action@v1
with:
files: target/surefire-reports/*.xml
check_name: Test Results
if: always()

2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up JDK
uses: actions/setup-java@v2
with:
java-version: '11'
java-version: '17'
distribution: 'adopt'

- name: Build JAR
Expand Down
2 changes: 1 addition & 1 deletion .vscode/settings.json
@@ -1,3 +1,3 @@
{
"java.configuration.updateBuildConfiguration": "interactive"
"java.configuration.updateBuildConfiguration": "automatic"
}
12 changes: 6 additions & 6 deletions pom.xml
@@ -1,6 +1,6 @@
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>de.qytera</groupId>
Expand All @@ -9,8 +9,8 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<jmeter.version>5.6.2</jmeter.version>
<jmeter.path>C:/scoop/apps/jmeter/current</jmeter.path>
</properties>
Expand Down Expand Up @@ -100,6 +100,6 @@
</execution>
</executions>
</plugin>
</plugins>
</plugins>
</build>
</project>
</project>

0 comments on commit a2a6212

Please sign in to comment.