Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
}
}
dependencies {
classpath "com.gradle.publish:plugin-publish-plugin:0.9.3"
classpath "com.gradle.publish:plugin-publish-plugin:0.14.0"
}
}

Expand All @@ -14,13 +14,12 @@ plugins {
}

apply plugin: 'groovy'
apply plugin: 'maven'
apply plugin: 'maven-publish'
apply plugin: 'signing'
apply plugin: "com.gradle.plugin-publish"

def GradleGithubPluginGroupId = 'co.riiid'
def GradleGithubPluginVersion = '0.4.2'
def GradleGithubPluginVersion = '0.4.3'
def GradleGithubPluginArtifact = 'gradle-github-plugin'
def GradleGithubPluginUrl = 'https://github.com/riiid/gradle-github-plugin'

Expand Down Expand Up @@ -100,9 +99,9 @@ repositories {
}

dependencies {
compile gradleApi()
compile localGroovy()
compile 'org.codehaus.groovy.modules.http-builder:http-builder:0.7.1'
compile 'org.zeroturnaround:zt-zip:1.8'
testCompile group: 'junit', name: 'junit', version: '4.11'
implementation gradleApi()
implementation localGroovy()
implementation 'org.codehaus.groovy.modules.http-builder:http-builder:0.7.1'
implementation 'org.zeroturnaround:zt-zip:1.8'
testImplementation group: 'junit', name: 'junit', version: '4.11'
}
3 changes: 1 addition & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#Wed Jan 28 11:05:30 KST 2015
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.1-bin.zip
2 changes: 2 additions & 0 deletions src/main/groovy/co/riiid/gradle/ReleaseTask.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,12 @@ import org.gradle.api.DefaultTask
import org.gradle.api.tasks.TaskAction
import org.gradle.api.GradleScriptException
import org.zeroturnaround.zip.ZipUtil
import org.gradle.api.tasks.Internal

class ReleaseTask extends DefaultTask {

// header
@Internal
final String HEADER_USER_AGENT = 'gradle-github-plugin'

@TaskAction
Expand Down