Skip to content

Commit

Permalink
Adding plugin plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasbjerre committed Nov 16, 2015
1 parent 9b485f7 commit 3568f41
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
buildscript {
repositories {
jcenter()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath 'com.bmuschko:gradle-nexus-plugin:2.3.1'
classpath 'net.researchgate:gradle-release:2.2.2'
classpath "com.gradle.publish:plugin-publish-plugin:0.9.1"
}
}

Expand All @@ -14,6 +18,7 @@ apply plugin: 'eclipse'
apply plugin: 'signing'
apply plugin: 'com.bmuschko.nexus'
apply plugin: 'net.researchgate.release'
apply plugin: 'com.gradle.plugin-publish'

group = 'se.bjurr.gitchangelog'

Expand All @@ -40,6 +45,20 @@ eclipse {
}
}

pluginBundle {
website = 'https://github.com/tomasbjerre/git-changelog-gradle-plugin'
vcsUrl = 'https://github.com/tomasbjerre/git-changelog-gradle-plugin'
description = 'Gradle plugin for Git Changelog'
tags = ['git', 'changelog']

plugins {
gitChangelogPlugin {
id = 'se.bjurr.gitchangelog.git-changelog-gradle-plugin'
displayName = 'Git Changelog Gradle Plugin'
}
}
}

modifyPom {
project {
name 'Git Changelog Gradle Plugin'
Expand Down Expand Up @@ -76,4 +95,5 @@ extraArchive {
javadoc = true
}

afterReleaseBuild.dependsOn publishPlugins
afterReleaseBuild.dependsOn uploadArchives

0 comments on commit 3568f41

Please sign in to comment.