From 0ad3bd566934bb031b90679c6e09d58e2ba195d5 Mon Sep 17 00:00:00 2001 From: Waterdev <30842467+UnrealValentin@users.noreply.github.com> Date: Tue, 4 May 2021 11:58:20 +0200 Subject: [PATCH] Update build.gradle --- build.gradle | 52 +--------------------------------------------------- 1 file changed, 1 insertion(+), 51 deletions(-) diff --git a/build.gradle b/build.gradle index 6ca46c3..eef707d 100644 --- a/build.gradle +++ b/build.gradle @@ -1,10 +1,8 @@ apply plugin: 'groovy' -apply plugin: 'maven-publish' apply plugin: 'maven' -apply plugin: 'signing' apply plugin: 'java-gradle-plugin' -group = 'net.uberfoo.gradle' +group = 'com.github.hmcore' version = '2.6-SNAPSHOT' repositories { @@ -28,60 +26,12 @@ task javadocJar(type: Jar) { from javadoc } -signing { - sign configurations.archives -} - artifacts { //archives jar archives sourcesJar archives javadocJar } -uploadArchives { - repositories { - mavenDeployer { - beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) } - - repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") { - authentication(userName: ossrhUsername, password: ossrhPassword) - } - - snapshotRepository(url: "https://oss.sonatype.org/content/repositories/snapshots/") { - authentication(userName: ossrhUsername, password: ossrhPassword) - } - - pom.project { - name 'Gradle AspectJ Plugin' - packaging 'jar' - description 'A Gradle plugin for compiling AspectJ aspects.' - url 'https://github.com/james-bryant/gradle-aspectj' - - scm { - connection 'scm:git:https://github.com/james-bryant/gradle-aspectj.git' - developerConnection 'scm:git:https://github.com/james-bryant/gradle-aspectj.git' - url 'https://github.com/james-bryant/gradle-aspectj.git' - } - - licenses { - license { - name 'The Apache License, Version 2.0' - url 'http://www.apache.org/licenses/LICENSE-2.0.txt' - } - } - - developers { - developer { - id 'uberfoo' - name 'James Bryant' - email 'james@uberfoo.net' - } - } - } - } - } -} - wrapper { gradleVersion = '6.0' distributionType = 'ALL'