From d2809f2c4dbea5ba75ea35b670c2ec854d055b88 Mon Sep 17 00:00:00 2001 From: Joshua Warner Date: Thu, 21 Aug 2014 10:56:58 -0600 Subject: [PATCH] adjust gradle publish coordinates --- build.gradle | 10 ++++++---- gradle.properties | 2 +- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/build.gradle b/build.gradle index 80faedb983..d2b001c4eb 100644 --- a/build.gradle +++ b/build.gradle @@ -129,10 +129,12 @@ publishing { from components.java artifact(javadocJar) + + module "classpath-avian" } - create("tools-${currentPlatformArch}", IvyPublication) { - module "avian-tools-${currentPlatformArch}" + create("tools-avian-${currentPlatformArch}", IvyPublication) { + module "tools-avian-${currentPlatformArch}" def publishBinSuffix = currentPlatform == "windows" ? "exe" : "bin" def binSuffix = currentPlatform == "windows" ? ".exe" : "" @@ -155,12 +157,12 @@ publishing { binSuffix = ".${publishBinSuffix}" } - module "${project.name}-${platform.name}" + module "runtime-avian-${platform.name}" artifact("${nativeBuildDir}/avian${binSuffix}") { name "avian" type publishBinSuffix - extension publishBinSuffix + extension binSuffix } artifact("${nativeBuildDir}/libavian.a") { diff --git a/gradle.properties b/gradle.properties index c9cd254b82..2afe5bbe98 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ org.gradle.daemon=true -group=com.readytalk +group=com.readytalk.avian version=1.1.0-SNAPSHOT \ No newline at end of file