Skip to content

Commit

Permalink
Release 3.4.0 (#175)
Browse files Browse the repository at this point in the history
Switch to maven central for dependencies for #173. Jcenter there as vestigal because one last dependency (trove4j) needs moving.
  • Loading branch information
jeremymailen authored Mar 24, 2021
1 parent 0921e78 commit b146360
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Available on the Gradle Plugins Portal: https://plugins.gradle.org/plugin/org.jm

```kotlin
plugins {
id("org.jmailen.kotlinter") version "3.3.0"
id("org.jmailen.kotlinter") version "3.4.0"
}
```

Expand All @@ -30,7 +30,7 @@ plugins {

```groovy
plugins {
id "org.jmailen.kotlinter" version "3.3.0"
id "org.jmailen.kotlinter" version "3.4.0"
}
```

Expand All @@ -50,7 +50,7 @@ buildscript {
}
}
dependencies {
classpath("org.jmailen.gradle:kotlinter-gradle:3.3.0")
classpath("org.jmailen.gradle:kotlinter-gradle:3.4.0")
}
}
```
Expand All @@ -75,7 +75,7 @@ buildscript {
}
}
dependencies {
classpath "org.jmailen.gradle:kotlinter-gradle:3.3.0"
classpath "org.jmailen.gradle:kotlinter-gradle:3.4.0"
}
}
```
Expand Down
5 changes: 3 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,17 @@ plugins {
}

repositories {
jcenter()
mavenCentral()
google()
jcenter() // remove after trove4j resolved https://youtrack.jetbrains.com/issue/KT-44730
}

val pluginId = "org.jmailen.kotlinter"
val githubUrl ="https://github.com/jeremymailen/kotlinter-gradle"
val webUrl = "https://github.com/jeremymailen/kotlinter-gradle"
val projectDescription = "Lint and formatting for Kotlin using ktlint with configuration-free setup on JVM and Android projects"

version = "3.3.0"
version = "3.4.0"
group = "org.jmailen.gradle"
description = projectDescription

Expand Down

0 comments on commit b146360

Please sign in to comment.