diff options
author | Mark Perry <maperry78@yahoo.com.au> | 2015-02-18 02:26:28 +1000 |
---|---|---|
committer | Mark Perry <maperry78@yahoo.com.au> | 2015-02-18 02:26:28 +1000 |
commit | 38d0cb914a1984b8470cf95abd480cc191cae812 (patch) | |
tree | c5d103ceb35c11ae6a15b0308a39d596fbe90ad0 | |
parent | 7263d857b447a50f4d684fee2e85f5755a9e2076 (diff) | |
download | frege-gradle-plugin-38d0cb914a1984b8470cf95abd480cc191cae812.tar.gz frege-gradle-plugin-38d0cb914a1984b8470cf95abd480cc191cae812.tar.bz2 frege-gradle-plugin-38d0cb914a1984b8470cf95abd480cc191cae812.zip |
Published 0.1-SNAPSHOT to sonatype as group org.frege-lang
-rw-r--r-- | build.gradle | 2 | ||||
-rw-r--r-- | 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 |