Skip to content

Commit

Permalink
feat: upgraded versions - spring-boot 2.7.7
Browse files Browse the repository at this point in the history
  • Loading branch information
melistik committed Dec 22, 2022
1 parent dc975bc commit 0f0630e
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 4 deletions.
33 changes: 33 additions & 0 deletions .github/release-action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: release and push to central
on:
push:
tags:
- '*'
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'adopt'
- name: build artifact
run: mvn clean package
- name: Create release
uses: ncipollo/release-action@v1
with:
allowUpdates: true
artifacts: "${{ github.workspace }}/target/*.jar"
token: ${{ secrets.GITHUB_TOKEN }}
- name: Publish to the Maven Central Repository
run: |
mvn \
--no-transfer-progress \
--batch-mode \
deploy
env:
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }}
MAVEN_GPG_PASSPHRASE: ${{ secrets.OSSRH_GPG_SECRET_KEY_PASSWORD }}
8 changes: 4 additions & 4 deletions commons-rest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -97,14 +97,14 @@ SOFTWARE.
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<spring-boot.version>2.7.5</spring-boot.version>
<spring-boot.version>2.7.7</spring-boot.version>
<maven.javadoc.failOnError>false</maven.javadoc.failOnError>
<jacoco.version>0.8.8</jacoco.version>
<hashids.version>1.0.3</hashids.version>

<guava.version>31.1-jre</guava.version>
<pebble.version>3.1.6</pebble.version>
<springdoc-openapi.version>1.6.12</springdoc-openapi.version>
<springdoc-openapi.version>1.6.14</springdoc-openapi.version>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -226,7 +226,7 @@ SOFTWARE.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.4.0</version>
<version>3.4.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
Expand Down Expand Up @@ -259,4 +259,4 @@ SOFTWARE.
</profiles>


</project>
</project>

0 comments on commit 0f0630e

Please sign in to comment.