From 38d0cb914a1984b8470cf95abd480cc191cae812 Mon Sep 17 00:00:00 2001 From: Mark Perry Date: Wed, 18 Feb 2015 02:26:28 +1000 Subject: Published 0.1-SNAPSHOT to sonatype as group org.frege-lang --- build.gradle | 2 +- gradle/sonatype.gradle | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/build.gradle b/build.gradle index 4066d01..f444727 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ apply plugin: "signing" defaultTasks "build" ext { - baseVersion = "0.2" + baseVersion = "0.1" isSnapshot = true snapshotAppendix = "-SNAPSHOT" pluginVersion = baseVersion + (isSnapshot ? snapshotAppendix : "") diff --git a/gradle/sonatype.gradle b/gradle/sonatype.gradle index 528bc04..f0cf569 100644 --- a/gradle/sonatype.gradle +++ b/gradle/sonatype.gradle @@ -7,18 +7,18 @@ ext { sonatypeReleaseUrl = "$sonatypeBaseUrl/service/local/staging/deploy/maven2/" sonatypeUploadUrl = isSnapshot ? sonatypeSnapshotUrl : sonatypeReleaseUrl - projectUrl = "https://github.com/mperry/gradle-frege-plugin" - projectName = "GradleFregePlugin" - pomProjectName = "GradleFregePlugin" + projectUrl = "https://github.com/Frege/frege-gradle-plugin" + projectName = "Frege Gradle Plugin" + pomProjectName = projectName baseJarName = "gradle-frege-plugin" - groupName = "com.github.mperry.frege" - scmUrl = "git://github.com/mperry/gradle-frege-plugin.git" - scmGitFile = "scm:git@github.com:mperry/gradle-frege-plugin.git" - projectDescription = "Frege gradle plugin" + groupName = "org.frege-lang" + scmUrl = "git://github.com/Frege/frege-gradle-plugin.git" + scmGitFile = "scm:git@github.com:Frege/frege-gradle-plugin.git" + projectDescription = "Frege Gradle plugin" - licenseName = "The Apache Software License, Version 2.0" - licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt' + licenseName = "BSD 3-clause license" + licenseUrl = 'http://opensource.org/licenses/BSD-3-Clause' organisation = groupName -- cgit