Skip to content

Bump org.jetbrains:annotations from 24.1.0 to 25.0.0 #67

Bump org.jetbrains:annotations from 24.1.0 to 25.0.0

Bump org.jetbrains:annotations from 24.1.0 to 25.0.0 #67

Workflow file for this run

name: Maven Build
on:
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write # Access to Publish a Release
packages: write # Access to Publish a Package
#--------------------------------------------------------------------------------------------
# Build the Artifact and Publish to Luxious Repository
#--------------------------------------------------------------------------------------------
steps:
- uses: actions/checkout@v3
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '21'
distribution: 'temurin'
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml
settings-path: ${{ github.workspace }} # location for the settings.xml file
# Configure Gradle for optimal use in GiHub Actions, including caching of downloaded dependencies.
# See: https://github.com/gradle/actions/blob/main/setup-gradle/README.md
- name: Setup Gradle
uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3.1.0
with:
gradle-version: '8.7'
- name: Build with Gradle 8.7
run: gradle build
env:
LUXIOUS_NEXUS_USER: ${{ secrets.MAVEN_NAME }}
LUXIOUS_NEXUS_PASS: ${{ secrets.MAVEN_SECRET }}