Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
strategy:
matrix:
jdk: [11, 17]
os: [ubuntu-latest, windows-latest, macos-latest]
os: [ubuntu-latest]
fail-fast: true
max-parallel: 4
steps:
Expand Down
2 changes: 1 addition & 1 deletion logback-access/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-parent</artifactId>
<version>1.4.7</version>
<version>1.4.7-jpro</version>
</parent>

<artifactId>logback-access</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion logback-classic-blackbox/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-parent</artifactId>
<version>1.4.7</version>
<version>1.4.7-jpro</version>
</parent>

<artifactId>logback-classic-blackbox</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion logback-classic/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-parent</artifactId>
<version>1.4.7</version>
<version>1.4.7-jpro</version>
</parent>

<artifactId>logback-classic</artifactId>
Expand Down

This file was deleted.

2 changes: 1 addition & 1 deletion logback-core-blackbox/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-parent</artifactId>
<version>1.4.7</version>
<version>1.4.7-jpro</version>
</parent>

<artifactId>logback-core-blackbox</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion logback-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-parent</artifactId>
<version>1.4.7</version>
<version>1.4.7-jpro</version>
</parent>

<artifactId>logback-core</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion logback-examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-parent</artifactId>
<version>1.4.7</version>
<version>1.4.7-jpro</version>
</parent>

<artifactId>logback-examples</artifactId>
Expand Down
16 changes: 10 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<groupId>ch.qos.logback</groupId>
<artifactId>logback-parent</artifactId>
<version>1.4.7</version>
<version>1.4.7-jpro</version>
<packaging>pom</packaging>

<name>Logback-Parent</name>
Expand Down Expand Up @@ -49,7 +49,7 @@

<properties>
<!-- yyyy-MM-dd'T'HH:mm:ss'Z' -->
<project.build.outputTimestamp>2023-04-19T18:39:00Z</project.build.outputTimestamp>
<project.build.outputTimestamp>2023-05-11T16:18:34Z</project.build.outputTimestamp>
<jdk.version>11</jdk.version>
<maven.compiler.release>${jdk.version}</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -409,12 +409,16 @@
</build>

<distributionManagement>

<repository>
<id>sonatype-nexus-staging</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
<id>artifactory central</id>
<name>a0uvvlcxlpyjx-artifactory-primary-0-releases</name>
<url>https://sandec.jfrog.io/artifactory/repo</url>
</repository>

<snapshotRepository>
<id>artifactory snapshots</id>
<name>a0uvvlcxlpyjx-artifactory-primary-0-snapshots</name>
<url>https://sandec.jfrog.io/artifactory/repo</url>
</snapshotRepository>
</distributionManagement>

<reporting>
Expand Down
30 changes: 19 additions & 11 deletions release.sh
Original file line number Diff line number Diff line change
@@ -1,25 +1,33 @@
mvn versions:set -DgenerateBackupPoms=false -DnewVersion=${VERSION_NUMBER}
if [[ "$JAVA_HOME" != *"temurin-11.jdk"* ]]; then
echo "###################################################"
echo "### Please use Temurin version 11 for the build ###"
echo "###################################################"
say "Use Java 11"
exit 1
fi

mvn versions:set -DgenerateBackupPoms=false -DnewVersion=1.4.7-jpro

mvn clean
mvn install
mvn install -DskipTests=true
mvn animal-sniffer:check
mvn site:site
#mvn site:site

#mvn javadoc:jar
#mvn assembly:single

export GPG_TTY=$(tty)
password
mvn deploy -P javadocjar,sign-artifacts -Dgpg.passphrase=passwd

#export GPG_TTY=$(tty)
#password
#mvn deploy -P javadocjar,sign-artifacts -Dgpg.passphrase=passwd
mvn deploy -DskipTests=true -P javadocjar


# cleanHistory dep
#uncomment diffie-hellman support in /etc/ssh/sshd_config

mvn site:deploy -N # with Java 8!!!
#mvn site:deploy -N # with Java 8!!!

git tag -m "tagging" -a v_${VERSION_NUMBER}
git push --tags
#git tag -m "tagging" -a v_${VERSION_NUMBER}
#git push --tags

release version and add next version on jira
#release version and add next version on jira