File tree Expand file tree Collapse file tree 1 file changed +30
-1
lines changed Expand file tree Collapse file tree 1 file changed +30
-1
lines changed Original file line number Diff line number Diff line change
1
+ buildscript {
2
+ repositories {
3
+ maven {
4
+ name = ' gradle-plugins'
5
+ url = ' https://plugins.gradle.org/m2'
6
+ }
7
+ }
8
+ dependencies {
9
+ classpath ' com.gradle.publish:plugin-publish-plugin:0.9.0'
10
+ }
11
+ }
12
+
1
13
plugins {
2
14
id ' groovy'
3
15
id ' maven-publish'
@@ -8,8 +20,11 @@ plugins {
8
20
id ' com.github.hierynomus.license' version ' 0.11.0'
9
21
}
10
22
23
+ apply plugin : ' com.gradle.plugin-publish'
24
+
11
25
group = ' net.minecrell'
12
- version = ' 0.1-SNAPSHOT'
26
+ version = ' 0.1'
27
+ description = ' A Gradle plugin to manage patches for Git repositories'
13
28
14
29
sourceCompatibility = 1.6
15
30
targetCompatibility = 1.6
@@ -62,6 +77,20 @@ publishing {
62
77
}
63
78
}
64
79
80
+ pluginBundle {
81
+ website = ' https://github.com/Minecrell/gitpatcher'
82
+ vcsUrl = website
83
+ description = project. description
84
+ tags = [' git' ]
85
+
86
+ plugins {
87
+ gitpatcherPlugin {
88
+ id = ' net.minecrell.gitpatcher'
89
+ displayName = ' gitpatcher'
90
+ }
91
+ }
92
+ }
93
+
65
94
task wrapper (type : Wrapper ) {
66
95
gradleVersion = ' 2.4'
67
96
}
You can’t perform that action at this time.
0 commit comments