Skip to content

Commit

Permalink
Merge pull request #50 from ancho/feature/update-2.6.4
Browse files Browse the repository at this point in the history
update jbake to 2.6.4
  • Loading branch information
aalmiray committed Jan 29, 2019
2 parents 5046648 + d67d53f commit cbfdc86
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 18 deletions.
10 changes: 5 additions & 5 deletions README.adoc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
= JBake plugin for Gradle
:jbake-version: 2.6.3
:jbake-version: 2.6.4
:plugin-version: 1.5.0-SNAPSHOT
:linkattrs:
:project-name: jbake-gradle-plugin
Expand Down Expand Up @@ -119,13 +119,13 @@ Jbake uses several engines. The library versions could be changed too:
----
jbake {
pegdownVersion = '1.6.0'
flexmarkVersion = '0.34.48'
flexmarkVersion = '0.40.8'
freemarkerVersion = '2.3.28'
groovyTemplatesVersion = '2.5.3'
groovyTemplatesVersion = '2.5.5'
jade4jVersion = '1.2.7'
thymeleafVersion = '3.0.9.RELEASE'
thymeleafVersion = '3.0.11.RELEASE'
asciidoctorJavaIntegrationVersion = '0.1.4'
asciidoctorjVersion = '1.5.7'
asciidoctorjVersion = '1.5.8.1'
}
----

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
group = org.jbake
version = 1.5.0-SNAPSHOT

copyrightYear = 2014-2018
copyrightYear = 2014-2019
project_pluginId = org.jbake.site
project_description = Adds the ability to run JBake directly from a Gradle build
project_website = https://github.com/jbake-org/jbake-gradle-plugin
Expand All @@ -17,7 +17,7 @@ targetCompatibility = 1.7

commonsIoVersion = 2.6
jacocoVersion = 0.8.2
jbakeVersion = 2.6.3
jbakeVersion = 2.6.4
semverVersion = 0.9.0
spockVersion = 1.1-groovy-2.4
jettyVersion = 9.4.12.v20180830
10 changes: 5 additions & 5 deletions src/main/groovy/org/jbake/gradle/JBakeExtension.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ package org.jbake.gradle
* Created by frank on 12.10.14.
*/
class JBakeExtension {
String version = '2.6.3'
String version = '2.6.4'
String pegdownVersion = '1.6.0'
String flexmarkVersion = '0.34.48'
String flexmarkVersion = '0.40.8'
String freemarkerVersion = '2.3.28'
String asciidoctorJavaIntegrationVersion = '0.1.4'
String asciidoctorjVersion = '1.5.7'
String groovyTemplatesVersion = '2.5.3'
String asciidoctorjVersion = '1.5.8.1'
String groovyTemplatesVersion = '2.5.5'
String jade4jVersion = '1.2.7'
String thymeleafVersion = '3.0.9.RELEASE'
String thymeleafVersion = '3.0.11.RELEASE'
String jettyVersion = '9.4.12.v20180830'
String srcDirName = 'src/jbake'
String destDirName = 'jbake'
Expand Down
12 changes: 6 additions & 6 deletions src/test/groovy/org/jbake/gradle/JBakePluginSpec.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,13 @@ class JBakePluginSpec extends Specification {

where:
group | name | version
'org.jbake' | 'jbake-core' | '2.6.3'
'org.jbake' | 'jbake-core' | '2.6.4'
'org.freemarker' | 'freemarker' | '2.3.28'
'com.vladsch.flexmark' | 'flexmark' | '0.34.48'
'com.vladsch.flexmark' | 'flexmark-profile-pegdown' | '0.34.48'
'org.asciidoctor' | 'asciidoctorj' | '1.5.7'
'org.codehaus.groovy' | 'groovy-templates' | '2.5.3'
'org.thymeleaf' | 'thymeleaf' | '3.0.9.RELEASE'
'com.vladsch.flexmark' | 'flexmark' | '0.40.8'
'com.vladsch.flexmark' | 'flexmark-profile-pegdown' | '0.40.8'
'org.asciidoctor' | 'asciidoctorj' | '1.5.8.1'
'org.codehaus.groovy' | 'groovy-templates' | '2.5.5'
'org.thymeleaf' | 'thymeleaf' | '3.0.11.RELEASE'
'de.neuland-bfi' | 'jade4j' | '1.2.7'
}

Expand Down

0 comments on commit cbfdc86

Please sign in to comment.