forked from jruby-gradle/jruby-gradle-plugin
-
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.
Support an internal Ivy proxy to Rubygems.org (jruby-gradle#364)
- Resolve dependencies with transitive dependencies. - Added a repository handler extension for defining rubygems. - Protect ivy.xml file creation against concurrent access from threads of multiple processes. - Support all known GEM version requirement formats
- Loading branch information
Showing
30 changed files
with
1,482 additions
and
246 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
206 changes: 0 additions & 206 deletions
206
base-plugin/src/main/groovy/com/github/jrubygradle/internal/GemVersion.groovy
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
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,31 @@ | ||
//plugins { | ||
// id "io.ratpack.ratpack-java" | ||
//} | ||
|
||
//plugins { | ||
// id 'io.spring.dependency-management' version '1.0.6.RELEASE' | ||
//} | ||
// | ||
// | ||
// | ||
//dependencyManagement { | ||
// imports { | ||
// mavenBom 'io.micronaut:micronaut-bom:1.1.2' | ||
// } | ||
//} | ||
dependencies { | ||
// implementation 'io.micronaut:micronaut-http-server-netty' | ||
implementation "io.github.http-builder-ng:http-builder-ng-okhttp:${httpbuilderNgVersion}" | ||
implementation "io.ratpack:ratpack-core:1.6.1" | ||
integrationTestCompile gradleTestKit() | ||
|
||
testCompile(spockVersion) { | ||
exclude module: 'groovy-all' | ||
exclude group: 'org.codehaus.groovy' | ||
} | ||
|
||
integrationTestCompile(spockVersion) { | ||
exclude module: 'groovy-all' | ||
exclude group: 'org.codehaus.groovy' | ||
} | ||
} |
Oops, something went wrong.