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/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
uses: actions/checkout@v5

- name: Set up JDK
uses: actions/setup-java@v4
uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: '21'
Expand Down
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>uk.dansiviter.jule</groupId>
<artifactId>jule-project</artifactId>
<version>0.9.0-SNAPSHOT</version>
<version>0.9.2-SNAPSHOT</version>
</parent>
<artifactId>jule</artifactId>
<name>Core</name>
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>uk.dansiviter.jule</groupId>
<artifactId>jule-project</artifactId>
<version>0.9.0-SNAPSHOT</version>
<version>0.9.2-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Java Util Logger Enhancer (JULE)</name>
<description>Library to help simplfy and improve java.util.logger</description>
Expand All @@ -12,8 +12,8 @@
<inceptionYear>2020</inceptionYear>

<scm>
<developerConnection>scm:git:git@github.com:dansiviter/jule.git</developerConnection>
<connection>scm:git:git@github.com:dansiviter/jule.git</connection>
<developerConnection>scm:git:https://github.com/dansiviter/jule.git</developerConnection>
<connection>scm:git:https://github.com/dansiviter/jule.git</connection>
<url>https://github.com/dansiviter/jule</url>
<tag>HEAD</tag>
</scm>
Expand Down Expand Up @@ -210,7 +210,7 @@
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.8.0</version>
<version>0.9.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
Expand Down
2 changes: 1 addition & 1 deletion processor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>uk.dansiviter.jule</groupId>
<artifactId>jule-project</artifactId>
<version>0.9.0-SNAPSHOT</version>
<version>0.9.2-SNAPSHOT</version>
</parent>
<artifactId>jule-processor</artifactId>
<name>Annotation Processor</name>
Expand Down
Loading