Skip to content

Commit

Permalink
#118 parent up to 0.68.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Dec 2, 2024
1 parent 0b272bb commit 735da32
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 7 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/sonar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ on:
jobs:
sonar:
runs-on: ubuntu-24.04
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -46,7 +49,5 @@ jobs:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: mvn --batch-mode verify -Pjacoco -Dinvoker.skip && mvn --batch-mode verify -Psonar -Dinvoker.skip -Dsonar.qualitygate.wait=true
run: mvn --batch-mode verify -Pjacoco -Dinvoker.skip
run: mvn --batch-mode verify -Psonar -Dinvoker.skip -Dsonar.qualitygate.wait=true
2 changes: 0 additions & 2 deletions .rultor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,4 @@ release:
mvn versions:set "-DnewVersion=${tag}" -Dstyle.color=never
git commit -am "${tag}"
export MAVEN_OPTS="--add-opens java.base/java.util=ALL-UNNAMED --add-opens java.base/java.lang.reflect=ALL-UNNAMED"
mvn --batch-mode verify -Pjacoco -Dinvoker.skip
mvn --batch-mode verify -Psonar -Dinvoker.skip -Dsonar.qualitygate.wait=true
mvn clean deploy -Pxsline -Psonatype --errors --settings ../settings.xml -Dstyle.color=never
14 changes: 13 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ SOFTWARE.
<parent>
<groupId>com.jcabi</groupId>
<artifactId>parent</artifactId>
<version>0.67.0</version>
<version>0.68.0</version>
</parent>
<groupId>com.yegor256</groupId>
<artifactId>xsline</artifactId>
Expand Down Expand Up @@ -168,5 +168,17 @@ SOFTWARE.
</plugins>
</build>
</profile>
<profile>
<id>qulice</id>
<build>
<plugins>
<plugin>
<groupId>com.qulice</groupId>
<artifactId>qulice-maven-plugin</artifactId>
<version>0.22.0</version>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>

0 comments on commit 735da32

Please sign in to comment.