-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from kamatama41/some-fixes
Some fixes
- Loading branch information
Showing
10 changed files
with
145 additions
and
115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
buildscript { | ||
ext.kotlinVersion = "1.1.1" | ||
repositories { | ||
jcenter() | ||
maven { url "http://kamatama41.github.com/maven-repository/repository" } | ||
} | ||
dependencies { | ||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion" | ||
classpath "com.github.kamatama41:gradle-git-release-plugin:0.1.1" | ||
} | ||
} | ||
|
||
apply plugin: "idea" | ||
apply plugin: "kotlin" | ||
apply plugin: "com.github.kamatama41.git-release" | ||
|
||
repositories { | ||
jcenter() | ||
} | ||
|
||
sourceCompatibility = JavaVersion.VERSION_1_7 | ||
targetCompatibility = JavaVersion.VERSION_1_7 | ||
|
||
dependencies { | ||
compile gradleApi() | ||
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion" | ||
compile "org.eclipse.jgit:org.eclipse.jgit:4.3.1.201605051710-r" | ||
compile "com.google.guava:guava:20.0" | ||
compile "com.github.jruby-gradle:jruby-gradle-plugin:0.1.5" | ||
testCompile "junit:junit:4.12" | ||
} | ||
|
||
gitRelease { | ||
groupId = "com.github.kamatama41" | ||
artifactId = "gradle-embulk-plugin" | ||
repoUri = "[email protected]:kamatama41/maven-repository.git" | ||
repoDir = file("${System.getProperty("user.home")}/gh-maven-repository") | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#Sun Mar 12 18:04:53 JST 2017 | ||
#Sun Mar 19 02:07:37 JST 2017 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
distributionUrl=https\://repo.gradle.org/gradle/dist-snapshots/gradle-script-kotlin-3.5-20170305000422+0000-all.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-3.2.1-all.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
rootProject.name = 'gradle-embulk-plugin' | ||
rootProject.buildFileName = 'build.gradle.kts' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters