Skip to content

Commit

Permalink
WIP: Unaudited -- define new plugin meta-inf with java-gradle-plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielJette committed Mar 24, 2024
1 parent 73bbe7e commit 19fece7
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
10 changes: 10 additions & 0 deletions Plugins/Gradle/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ plugins {
id 'kotlin'
id 'org.jetbrains.dokka'
id 'jacoco'
id 'java-gradle-plugin'
}

ext {
Expand Down Expand Up @@ -97,6 +98,15 @@ task sourcesJar(type: Jar) {
apply from: "../../publish.build.gradle"
apply from: '../../ktlint.gradle'

gradlePlugin {
plugins {
simplePlugin {
id = "dev.testify"
implementationClass = "dev.testify.TestifyPlugin"
}
}
}

jacoco {
toolVersion = "0.8.8"
reportsDirectory = layout.buildDirectory.dir('customJacocoReportDir')
Expand Down

This file was deleted.

2 changes: 1 addition & 1 deletion Samples/Flix/FlixLibrary/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
buildscript {
dependencies {
classpath "dev.testify:plugin:${versions.testify}"
classpath "dev.testify:plugin:2.0.0"
}
ext {
versions = [
Expand Down

0 comments on commit 19fece7

Please sign in to comment.