Skip to content

Commit

Permalink
maven wrapper changes for build
Browse files Browse the repository at this point in the history
Signed-off-by: huluvu424242 <huluvu424242@gmail.com>
  • Loading branch information
Huluvu424242 committed Apr 22, 2023
1 parent 53a3f2b commit 55d8593
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
cache: 'maven'

- name: Build with Maven
run: ./mvnw.sh -PpruefeVersionen -Pheadless -PaddStandardArtifacts clean install
run: ./mvnw -PpruefeVersionen -Pheadless -PaddStandardArtifacts clean install

strategy:
matrix:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
cache: 'maven'
server-id: github
- name: Publish to Github Package Registry
run: ./mvnw.sh -U -Pheadless -PaddStandardArtifacts -Ppublish-github deploy
run: ./mvnw -U -Pheadless -PaddStandardArtifacts -Ppublish-github deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -39,7 +39,7 @@ jobs:
server-username: MAVEN_USERNAME
server-password: MAVEN_PASSWORD
- name: Publish to the Maven Central Registry
run: ./mvnw.sh -U -Pheadless -PaddStandardArtifacts -Ppublish-central deploy
run: ./mvnw -U -Pheadless -PaddStandardArtifacts -Ppublish-central deploy
env:
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sonarqube.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: ./mvnw.sh -Pheadless -Psonarqube -B verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dsonar.projectKey=Huluvu424242_jenkinsmonitor
run: ./mvnw -Pheadless -Psonarqube -B verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dsonar.projectKey=Huluvu424242_jenkinsmonitor


strategy:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
java-package: jdk
cache: 'maven'
- name: Build with Maven
run: ./mvnw.sh -PpruefeVersionen -Pheadless clean site clover:setup verify clover:aggregate clover:clover clover:reset install
run: ./mvnw -PpruefeVersionen -Pheadless clean site clover:setup verify clover:aggregate clover:clover clover:reset install

- uses: EndBug/add-and-commit@v9 # You can change this to use a specific version.
with:
Expand Down
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ install: skip

script:
- chmod +x etc/devscripts/*.sh
- cd ./etc/devscripts;./mvnw.sh -U -Pheadless site
- cd ./etc/devscripts;./mvnw.sh -U -Pheadless clean install
- cd ./etc/devscripts;./mvnw -U -Pheadless site
- cd ./etc/devscripts;./mvnw -U -Pheadless clean install
- bash <(curl -s https://codecov.io/bash)
- cd ./etc/devscripts;./buildAppImage.sh

Expand Down

0 comments on commit 55d8593

Please sign in to comment.