[build] Remove markdown-gradle-plugin

This commit is contained in:
Florian Schmaus 2021-05-20 14:38:16 +02:00
parent 961882ff7f
commit 4eb5869860
1 changed files with 2 additions and 11 deletions

View File

@ -5,7 +5,6 @@ buildscript {
maven { url 'https://dl.bintray.com/content/aalmiray/kordamp' } maven { url 'https://dl.bintray.com/content/aalmiray/kordamp' }
} }
dependencies { dependencies {
classpath 'org.kordamp:markdown-gradle-plugin:1.0.0'
classpath 'org.kordamp.gradle:clirr-gradle-plugin:0.2.2' classpath 'org.kordamp.gradle:clirr-gradle-plugin:0.2.2'
classpath "org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.3.1" classpath "org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.3.1"
} }
@ -18,8 +17,6 @@ plugins {
id 'com.dorongold.task-tree' version '1.5' id 'com.dorongold.task-tree' version '1.5'
} }
apply plugin: 'org.kordamp.gradle.markdown'
allprojects { allprojects {
apply plugin: 'java-library' apply plugin: 'java-library'
apply plugin: 'java-test-fixtures' apply plugin: 'java-test-fixtures'
@ -34,7 +31,7 @@ allprojects {
isSnapshot = version.endsWith('-SNAPSHOT') isSnapshot = version.endsWith('-SNAPSHOT')
gitCommit = getGitCommit() gitCommit = getGitCommit()
javadocAllDir = new File(buildDir, 'javadoc') javadocAllDir = new File(buildDir, 'javadoc')
documentationDir = new File(buildDir, 'documentation') documentationDir = new File(projectDir, 'documentation')
releasedocsDir = new File(buildDir, 'releasedocs') releasedocsDir = new File(buildDir, 'releasedocs')
rootConfigDir = new File(rootDir, 'config') rootConfigDir = new File(rootDir, 'config')
sonatypeCredentialsAvailable = project.hasProperty('sonatypeUsername') && project.hasProperty('sonatypePassword') sonatypeCredentialsAvailable = project.hasProperty('sonatypeUsername') && project.hasProperty('sonatypePassword')
@ -366,13 +363,7 @@ task prepareReleasedocs(type: Copy) {
filter(ReplaceTokens, tokens: [version: version, releasedate: builtDate, targetCompatibility: targetCompatibility.toString()]) filter(ReplaceTokens, tokens: [version: version, releasedate: builtDate, targetCompatibility: targetCompatibility.toString()])
} }
markdownToHtml { task distributionZip(type: Zip, dependsOn: [javadocAll, prepareReleasedocs]) {
sourceDir = new File(projectDir, "/documentation")
outputDir documentationDir
configuration = [tables: true, fencedCodeBlocks: true]
}
task distributionZip(type: Zip, dependsOn: [javadocAll, prepareReleasedocs, markdownToHtml]) {
classifier builtDate classifier builtDate
into ('javadoc') { into ('javadoc') {
from(javadocAllDir) from(javadocAllDir)