Skip to content

Commit

Permalink
build-logic: adjust java-common-conventions
Browse files Browse the repository at this point in the history
  • Loading branch information
Flowdalic committed Oct 20, 2024
1 parent 153e784 commit 22489a4
Showing 1 changed file with 10 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,10 @@ ext {
group = 'org.jxmpp'

import org.jxmpp.BuildConstants
sourceCompatibility = BuildConstants.JAVA_COMPATIBILITY
targetCompatibility = sourceCompatibility
java {
sourceCompatibility = BuildConstants.JAVA_COMPATIBILITY
targetCompatibility = sourceCompatibility
}

ext.sharedManifest = manifest {
attributes('Implementation-Version': version,
Expand Down Expand Up @@ -174,20 +176,20 @@ publishing {
name = 'JXMPP'
packaging = 'jar'
inceptionYear = '2014'
url = 'http://www.igniterealtime.org/projects/jxmpp/'
url = 'https://github.com/igniterealtime/jxmpp'
afterEvaluate {
description = project.description
}

issueManagement {
system = 'JIRA'
url = 'http://issues.igniterealtime.org/browse/JXMPP'
system = 'github'
url = 'https://github.com/igniterealtime/jxmpp/issues'
}

scm {
url = 'https://github.com/igniterealtime/Smack'
connection = 'scm:git:https://github.com/igniterealtime/Smack.git'
developerConnection = 'scm:git:https://github.com/igniterealtime/Smack.git'
url = 'https://github.com/igniterealtime/jxmpp'
connection = 'scm:git:https://github.com/igniterealtime/jxmpp.git'
developerConnection = 'scm:git:https://github.com/igniterealtime/jxmpp.git'
}

licenses {
Expand Down

0 comments on commit 22489a4

Please sign in to comment.