Skip to content

Commit

Permalink
Release 3.4.4 and remove javadoc artifact (#199)
Browse files Browse the repository at this point in the history
Not really using javadoc
  • Loading branch information
jeremymailen authored May 4, 2021
1 parent 07d310e commit fd796fa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 15 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.4.3"
id("org.jmailen.kotlinter") version "3.4.4"
}
```

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

```groovy
plugins {
id "org.jmailen.kotlinter" version "3.4.3"
id "org.jmailen.kotlinter" version "3.4.4"
}
```

Expand All @@ -50,7 +50,7 @@ buildscript {
}
}
dependencies {
classpath("org.jmailen.gradle:kotlinter-gradle:3.4.3")
classpath("org.jmailen.gradle:kotlinter-gradle:3.4.4")
}
}
```
Expand All @@ -75,7 +75,7 @@ buildscript {
}
}
dependencies {
classpath "org.jmailen.gradle:kotlinter-gradle:3.4.3"
classpath "org.jmailen.gradle:kotlinter-gradle:3.4.4"
}
}
```
Expand Down
13 changes: 2 additions & 11 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
id("com.gradle.plugin-publish") version "0.14.0"
`java-gradle-plugin`
`maven-publish`
id("org.jmailen.kotlinter") version "3.4.0"
id("org.jmailen.kotlinter") version "3.4.3"
idea
}

Expand All @@ -19,7 +19,7 @@ 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.4.3"
version = "3.4.4"
group = "org.jmailen.gradle"
description = projectDescription

Expand Down Expand Up @@ -96,14 +96,6 @@ val sourcesJar by tasks.registering(Jar::class) {
from(sourceSets.main.get().allSource)
}

val javadocJar by tasks.registering(Jar::class) {
dependsOn(JavaPlugin.JAVADOC_TASK_NAME)
group = JavaBasePlugin.DOCUMENTATION_GROUP
description = "Assembles javaDoc JAR"
archiveClassifier.set("javadoc")
from(tasks["javadoc"])
}

gradlePlugin {
plugins {
create("kotlinterPlugin") {
Expand All @@ -128,7 +120,6 @@ pluginBundle {

artifacts {
add(configurations.archives.name, sourcesJar)
add(configurations.archives.name, javadocJar)
}

publishing {
Expand Down

0 comments on commit fd796fa

Please sign in to comment.