Skip to content
This repository was archived by the owner on Feb 13, 2020. It is now read-only.

Commit

Permalink
Bump up gradle wrapper and tweak build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
ikikko committed Jan 2, 2015
1 parent 3d0ec94 commit de5378b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 16 deletions.
21 changes: 7 additions & 14 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
buildscript {
repositories {
// The plugin is currently only available via the Jenkins
// Maven repository, but has dependencies in Maven Central.
mavenCentral()
maven {
name 'jenkins'
delegate.url('http://repo.jenkins-ci.org/public/')
url 'http://repo.jenkins-ci.org/releases/'
}
mavenCentral()
}
dependencies {
classpath 'org.jenkins-ci.tools:gradle-jpi-plugin:0.5.0'
classpath 'org.jenkins-ci.tools:gradle-jpi-plugin:0.7.2'
}
}

apply plugin: 'jpi'
apply plugin: 'org.jenkins-ci.jpi'
apply plugin: 'eclipse'
apply plugin: 'idea'

Expand All @@ -20,14 +21,6 @@ version = '1.0.1-SNAPSHOT'
description = 'Typetalk Plugin'
archivesBaseName = 'typetalk'

repositories {
mavenCentral()
maven {
name "jenkins"
delegate.url("http://repo.jenkins-ci.org/public/")
}
}

dependencies {
compile 'com.google.http-client:google-http-client-jackson:1.17.0-rc',
'com.google.oauth-client:google-oauth-client:1.17.0-rc'
Expand Down Expand Up @@ -56,5 +49,5 @@ jenkinsPlugin {
}

task wrapper(type: Wrapper) {
gradleVersion = '1.8'
gradleVersion = '1.12'
}
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Tue Dec 31 17:06:52 JST 2013
#Sun Dec 28 22:38:17 JST 2014
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=http\://services.gradle.org/distributions/gradle-1.8-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-1.12-bin.zip

0 comments on commit de5378b

Please sign in to comment.