File tree Expand file tree Collapse file tree 2 files changed +7
-8
lines changed
Expand file tree Collapse file tree 2 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -16,28 +16,27 @@ Versions `0.1.1+` will require Java 16 or higher. Versions below this should wor
1616
1717To add it to your ` build.gradle ` , first add the following code to the ` repositories ` section to load my maven repository:
1818
19- ` build.gradle ` [ for Groovy build scripts]
20-
19+ #### Groovy | ` build.gradle `
2120``` groovy
2221maven {
2322 name 'Harley O\'Connor Maven'
2423 url 'https://harleyoconnor.com/maven/'
2524}
2625```
2726
28- ` build.gradle.kts ` [ for Kotlin build scripts ]
27+ #### Kotlin | ` build.gradle.kts `
2928``` kotlin
3029maven(" https://harleyoconnor.com/maven/" )
3130```
3231
3332Next, add the following to your ` dependencies ` section to load java utilities:
3433
35- ` build.gradle ` [ for Groovy build scripts ]
34+ #### Groovy | ` build.gradle `
3635``` groovy
37- implementation group: 'com.harleyoconnor.javautilities', name: 'JavaUtilities', version: '0.1.2 '
36+ implementation group: 'com.harleyoconnor.javautilities', name: 'JavaUtilities', version: '0.1.3 '
3837```
3938
40- ` build.gradle.kts ` [ for Kotlin build scripts ]
39+ #### Kotlin | ` build.gradle.kts `
4140``` kotlin
42- implementation(group = " com.harleyoconnor.javautilities" , name = " JavaUtilities" , version = " 0.1.2 " )
41+ implementation(group = " com.harleyoconnor.javautilities" , name = " JavaUtilities" , version = " 0.1.3 " )
4342```
Original file line number Diff line number Diff line change 11name =JavaUtilities
22group =com.harleyoconnor.javautilities
3- version =0.1.2
3+ version =0.1.3
44
55dependency.annotations.version =22.0.0
66dependency.junit.version =5.7.2
You can’t perform that action at this time.
0 commit comments