Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ name: "CodeQL"

on:
push:
branches: [ master ]
branches: [ main ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ master ]
branches: [ main ]
schedule:
- cron: '27 9 * * 4'

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
branch:
description: "The branch to use when releasing"
required: true
default: "master"
default: "main"
type: string

jobs:
Expand Down Expand Up @@ -54,8 +54,8 @@ jobs:
JRELEASER_GPG_SECRET_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
JRELEASER_GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
JRELEASER_GPG_PUBLIC_KEY: ${{ secrets.GPG_PUBLIC_KEY }}
JRELEASER_NEXUS2_MAVEN_CENTRAL_USERNAME: ${{ secrets.NEXUS_USERNAME }}
JRELEASER_NEXUS2_MAVEN_CENTRAL_PASSWORD: ${{ secrets.NEXUS_PASSWORD }}
JRELEASER_MAVENCENTRAL_SONATYPE_USERNAME: ${{ secrets.NEXUS_USERNAME }}
JRELEASER_MAVENCENTRAL_SONATYPE_PASSWORD: ${{ secrets.NEXUS_PASSWORD }}


- name: Set next version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sonar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Sonar
on:
push:
branches:
- master
- main

env:
CI: true
Expand Down
19 changes: 9 additions & 10 deletions jreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@ project:
authors:
- Carlos E. Feria Vila
license: Apache-2
java:
groupId: io.github.project-openubl
version: '17'
languages:
java:
groupId: io.github.project-openubl
version: '17'
inceptionYear: '2019'
links:
homepage: https://project-openubl.github.io/
Expand Down Expand Up @@ -55,19 +56,17 @@ release:

signing:
active: ALWAYS
armored: true
pgp:
armored: true

deploy:
maven:
pomchecker:
failOnWarning: false
nexus2:
maven-central:
mavenCentral:
sonatype:
active: ALWAYS
url: https://oss.sonatype.org/service/local
snapshotUrl: https://oss.sonatype.org/content/repositories/snapshots
closeRepository: true
releaseRepository: true
url: https://central.sonatype.com/api/v1/publisher
stagingRepositories:
- target/staging-deploy

Expand Down