Skip to content

Commit

Permalink
jbake-maven-plugin: Use gradle.properties versions + include optional…
Browse files Browse the repository at this point in the history
… dependency by default
  • Loading branch information
ge0ffrey committed Dec 30, 2021
1 parent 61556f9 commit eb3239b
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 280 deletions.
3 changes: 2 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,6 @@ org.gradle.configureondemand = true
org.gradle.vfs.watch = true

# jbake-maven-plugin dependencies
mavenVersion = 3.8.4
mavenVersion = 3.8.1
mavenAnnotationsVersion = 3.6.2
sparkVersion = 2.9.3
29 changes: 14 additions & 15 deletions jbake-maven-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,25 @@ plugins {
}

group = "org.jbake"
version = "2.7.0"

dependencies {
implementation project(":jbake-core")

compileOnly "org.apache.maven:maven-core:3.8.1"
compileOnly "org.apache.maven.plugin-tools:maven-plugin-annotations:3.6.2"
compileOnly "org.apache.maven:maven-core:$mavenVersion"
compileOnly "org.apache.maven.plugin-tools:maven-plugin-annotations:$mavenAnnotationsVersion"

implementation "com.sparkjava:spark-core:2.9.3"
implementation "com.sparkjava:spark-core:$sparkVersion"

// Include all optional dependencies by default
// implementation "org.asciidoctor:asciidoctorj:$asciidoctorjVersion"
// implementation "org.codehaus.groovy:groovy:$groovyVersion"
// implementation "org.codehaus.groovy:groovy-templates:$groovyVersion"
// implementation "org.codehaus.groovy:groovy-dateutil:$groovyVersion"
// implementation "org.freemarker:freemarker:$freemarkerVersion"
// implementation "org.thymeleaf:thymeleaf:$thymeleafVersion"
// implementation "de.neuland-bfi:jade4j:$jade4jVersion"
// implementation "com.vladsch.flexmark:flexmark:$flexmarkVersion"
// implementation "com.vladsch.flexmark:flexmark-profile-pegdown:$flexmarkVersion"
// implementation "io.pebbletemplates:pebble:$pebbleVersion"
// implementation "org.yaml:snakeyaml:$snakeYamlVersion"
implementation "org.asciidoctor:asciidoctorj:$asciidoctorjVersion"
implementation "org.codehaus.groovy:groovy:$groovyVersion"
implementation "org.codehaus.groovy:groovy-templates:$groovyVersion"
implementation "org.codehaus.groovy:groovy-dateutil:$groovyVersion"
implementation "org.freemarker:freemarker:$freemarkerVersion"
implementation "org.thymeleaf:thymeleaf:$thymeleafVersion"
implementation "de.neuland-bfi:jade4j:$jade4jVersion"
implementation "com.vladsch.flexmark:flexmark:$flexmarkVersion"
implementation "com.vladsch.flexmark:flexmark-profile-pegdown:$flexmarkVersion"
implementation "io.pebbletemplates:pebble:$pebbleVersion"
implementation "org.yaml:snakeyaml:$snakeYamlVersion"
}
264 changes: 0 additions & 264 deletions jbake-maven-plugin/pom.xml

This file was deleted.

0 comments on commit eb3239b

Please sign in to comment.