Skip to content

Commit d603644

Browse files
author
R. Tyler Croy
committed
Update the README to reference the qualified plugin name and jcenter repo
1 parent 01bd19f commit d603644

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## v2.0.3
4+
5+
* s
6+
37
## v2.0.2
48

59
* More futzing with [bintray](http://bintray.com) release code

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ Create a `build.gradle` file in the root of `fancy-webapp/` with the following:
4040

4141

4242
```groovy
43-
apply plugin: 'jruby'
43+
apply plugin: 'com.lookout.jruby'
4444
4545
buildscript {
46-
repositories { maven { url 'http://dl.bintray.com/rtyler/jruby' } }
46+
repositories { jcenter() }
4747
4848
dependencies {
49-
classpath group: 'com.lookout', name: 'jruby-gradle-plugin', version: '1.1.+'
49+
classpath group: 'com.lookout', name: 'jruby-gradle-plugin', version: '2.0.+'
5050
}
5151
}
5252
```
@@ -183,7 +183,7 @@ You can then use that custom Gem repository with:
183183
```groovy
184184
// buildscript {} up here
185185
186-
apply plugin: 'jruby'
186+
apply plugin: 'com.lookout.jruby'
187187
188188
// Set our custom Gem repository
189189
jruby.gemrepo_url = 'http://localhost:8989/releases'

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ buildscript {
99
}
1010

1111
group = 'com.lookout'
12-
version = '2.0.2'
12+
version = '2.0.3'
1313

1414
if (System.env.RELEASE != '1') {
1515
version = "${version}-SNAPSHOT"

0 commit comments

Comments
 (0)