diff options
Diffstat (limited to 'gradle/nexus.gradle')
-rw-r--r-- | gradle/nexus.gradle | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/gradle/nexus.gradle b/gradle/nexus.gradle deleted file mode 100644 index a51ec4b..0000000 --- a/gradle/nexus.gradle +++ /dev/null @@ -1,43 +0,0 @@ - apply plugin: 'com.bmuschko.nexus' - - project.afterEvaluate { - uploadArchives { - repositories { - mavenDeployer { - uniqueVersion = false - } - } - } - } - - modifyPom { - // Closure to configure all the POM with extra info, common to all projects - project { - name "${project.name}" - description "Java C Preprocessor" - developers { - developer { - id 'shevek' - name 'Shevek' - email '[email protected]' - } - } - licenses { - license { - name 'The Apache Software License, Version 2.0' - url 'http://www.apache.org/licenses/LICENSE-2.0.txt' - distribution 'repo' - } - } - url "https://github.com/shevek/${rootProject.githubProjectName}" - scm { - connection "scm:git:[email protected]:shevek/${rootProject.githubProjectName}.git" - url "scm:git:[email protected]:shevek/${rootProject.githubProjectName}.git" - developerConnection "scm:git:[email protected]:shevek/${rootProject.githubProjectName}.git" - } - issueManagement { - system 'github' - url "https://github.com/shevek/${rootProject.githubProjectName}/issues" - } - } - } |