Skip to content

Commit

Permalink
Bump version to 0.1.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
Harleyoc1 committed Sep 23, 2021
1 parent 9ba23eb commit f84ff4a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
13 changes: 6 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,28 +16,27 @@ Versions `0.1.1+` will require Java 16 or higher. Versions below this should wor

To add it to your `build.gradle`, first add the following code to the `repositories` section to load my maven repository:

`build.gradle` [for Groovy build scripts]

#### Groovy | `build.gradle`
```groovy
maven {
name 'Harley O\'Connor Maven'
url 'https://harleyoconnor.com/maven/'
}
```

`build.gradle.kts` [for Kotlin build scripts]
#### Kotlin | `build.gradle.kts`
```kotlin
maven("https://harleyoconnor.com/maven/")
```

Next, add the following to your `dependencies` section to load java utilities:

`build.gradle` [for Groovy build scripts]
#### Groovy | `build.gradle`
```groovy
implementation group: 'com.harleyoconnor.javautilities', name: 'JavaUtilities', version: '0.1.2'
implementation group: 'com.harleyoconnor.javautilities', name: 'JavaUtilities', version: '0.1.3'
```

`build.gradle.kts` [for Kotlin build scripts]
#### Kotlin | `build.gradle.kts`
```kotlin
implementation(group = "com.harleyoconnor.javautilities", name = "JavaUtilities", version = "0.1.2")
implementation(group = "com.harleyoconnor.javautilities", name = "JavaUtilities", version = "0.1.3")
```
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name=JavaUtilities
group=com.harleyoconnor.javautilities
version=0.1.2
version=0.1.3

dependency.annotations.version=22.0.0
dependency.junit.version=5.7.2

0 comments on commit f84ff4a

Please sign in to comment.