Skip to content

Commit

Permalink
Prepare version 1.5.0 - second attempt (#101)
Browse files Browse the repository at this point in the history
* Prepare version 1.5.0 - second attempt

* Update plugin definitions and move mavencoordinates where they belong
  • Loading branch information
jraska authored May 28, 2021
1 parent b14693a commit 65adb8a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
1 change: 0 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ buildscript {
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.0"
classpath 'com.gradle.publish:plugin-publish-plugin:0.11.0'
}
}

Expand Down
15 changes: 11 additions & 4 deletions plugin/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
plugins {
id "com.gradle.plugin-publish" version "0.15.0"
id "java-gradle-plugin"
}

apply plugin: 'kotlin'
apply plugin: 'java-gradle-plugin'
apply plugin: 'com.gradle.plugin-publish'

repositories {
mavenCentral()
Expand Down Expand Up @@ -28,9 +31,13 @@ pluginBundle {
website = 'https://github.com/jraska/modules-graph-assert'
vcsUrl = 'https://github.com/jraska/modules-graph-assert'
tags = ['gradle', 'plugin', 'graph', 'assert', 'build speed', 'android', 'java', 'kotlin', 'quality', 'multiprojects', 'module']
}

group = 'com.jraska.module.graph.assertion'
mavenCoordinates {
groupId = 'com.jraska.module.graph.assertion'
artifactId = 'plugin'
version = "1.5.0"
}
}

gradlePlugin {
plugins {
Expand Down

0 comments on commit 65adb8a

Please sign in to comment.