Skip to content

Commit c5aa981

Browse files
committed
Update README and version numbers
1 parent 4c0af8f commit c5aa981

File tree

6 files changed

+45
-13
lines changed

6 files changed

+45
-13
lines changed

librootjava/README.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# libRootJava
22

3-
[![ci][1]][2]
3+
[![ci][1]][2] [![](https://jitpack.io/v/eu.chainfire/librootjava.svg)](https://jitpack.io/#eu.chainfire/librootjava)
44

55
Run Java (and Kotlin) code as root!
66

@@ -444,8 +444,23 @@ an Android 10 preview comes out!
444444

445445
## Gradle
446446

447+
Root `build.gradle`:
448+
449+
```
450+
allprojects {
451+
repositories {
452+
...
453+
maven { url 'https://jitpack.io' }
454+
}
455+
}
447456
```
448-
implementation 'eu.chainfire:librootjava:1.3.1'
457+
458+
Module `build.gradle`:
459+
460+
```
461+
dependencies {
462+
implementation 'eu.chainfire:librootjava:1.3.3'
463+
}
449464
```
450465

451466
## Notes

librootjava/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ ext {
5050
gitUrl = 'https://github.com/Chainfire/librootjava.git'
5151
issueTrackerUrl = 'https://github.com/Chainfire/librootjava/issues'
5252

53-
libraryVersion = '1.3.2'
53+
libraryVersion = '1.3.3'
5454

5555
developerId = 'Chainfire'
5656
developerName = 'Jorrit Jongma'

librootjava_example/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ dependencies {
3535
//implementation project(':librootjava')
3636

3737
/* Use local Maven repository version, installed by installMavenLocal Gradle task */
38-
//implementation('eu.chainfire:librootjava:1.3.2-SNAPSHOT') { changing = true }
38+
//implementation('eu.chainfire:librootjava:1.3.3-SNAPSHOT') { changing = true }
3939

4040
/* Use jitpack version */
41-
implementation 'eu.chainfire:librootjava:1.3.2'
41+
implementation 'eu.chainfire:librootjava:1.3.3'
4242
}

librootjavadaemon/README.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# libRootJavaDaemon
22

3+
[![](https://jitpack.io/v/eu.chainfire/librootjava.svg)](https://jitpack.io/#eu.chainfire/librootjava)
4+
35
Add-on for [libRootJava](../librootjava) to run the root process as a
46
daemon.
57

@@ -150,8 +152,23 @@ on the Android site.
150152

151153
## Gradle
152154

155+
Root `build.gradle`:
156+
157+
```
158+
allprojects {
159+
repositories {
160+
...
161+
maven { url 'https://jitpack.io' }
162+
}
163+
}
164+
```
165+
166+
Module `build.gradle`:
167+
153168
```
154-
implementation 'eu.chainfire:librootjavadaemon:1.3.1'
169+
dependencies {
170+
implementation 'eu.chainfire:librootjavadaemon:1.3.3'
171+
}
155172
```
156173

157174
You should update to the latest libRootJava and libRootJavaDaemon at the

librootjavadaemon/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ dependencies {
2626
//implementation project(':librootjava')
2727

2828
/* Use local Maven repository version, installed by installMavenLocal Gradle task */
29-
//implementation('eu.chainfire:librootjava:1.3.1-SNAPSHOT') { changing = true }
29+
//implementation('eu.chainfire:librootjava:1.3.3-SNAPSHOT') { changing = true }
3030

3131
/* Use bintray/jcenter version */
32-
implementation 'eu.chainfire:librootjava:1.3.2'
32+
implementation 'eu.chainfire:librootjava:1.3.3'
3333
}
3434

3535
task sourcesJar(type: Jar) {
@@ -63,7 +63,7 @@ ext {
6363
gitUrl = 'https://github.com/Chainfire/librootjava.git'
6464
issueTrackerUrl = 'https://github.com/Chainfire/librootjava/issues'
6565

66-
libraryVersion = '1.3.2'
66+
libraryVersion = '1.3.3'
6767

6868
developerId = 'Chainfire'
6969
developerName = 'Jorrit Jongma'

librootjavadaemon_example/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ dependencies {
3636
//implementation project(':librootjavadaemon')
3737

3838
/* Use local Maven repository version, installed by installMavenLocal Gradle task */
39-
//implementation('eu.chainfire:librootjava:1.3.2-SNAPSHOT') { changing = true }
40-
//implementation('eu.chainfire:librootjavadaemon:1.3.2-SNAPSHOT') { changing = true }
39+
//implementation('eu.chainfire:librootjava:1.3.3-SNAPSHOT') { changing = true }
40+
//implementation('eu.chainfire:librootjavadaemon:1.3.3-SNAPSHOT') { changing = true }
4141

4242
/* Use jitpack version */
43-
implementation 'eu.chainfire:librootjava:1.3.2'
44-
implementation 'eu.chainfire:librootjavadaemon:1.3.2'
43+
implementation 'eu.chainfire:librootjava:1.3.3'
44+
implementation 'eu.chainfire:librootjavadaemon:1.3.3'
4545
}

0 commit comments

Comments
 (0)