-
-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bakeInit gradle task is downloading to the temp folder but not getting copied to the src folder in Windows #65
Comments
Had the same issue. Copied per Hand to src in Projekt and the gradle task bake worked. But bakePreview not. buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'commons-configuration:commons-configuration:1.10'
}
}
plugins {
id 'org.jbake.site' version '5.5.0'
id 'groovy'
id 'java-library'
}
repositories {
mavenCentral()
jcenter()
}
jbake {
srcDirName = 'src/jbake'
destDirName = 'jbakeOut'
clearCache = true
}
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':bakePreview'.
> Cannot set readonly property: level for class: org.gradle.internal.logging.services.DefaultLoggingManager
* Try:
> Run with --stacktrace option to get the stack trace.
> Run with --info or --debug option to get more log output.
> Run with --scan to get full insights.
* Get more help at https://help.gradle.org
Deprecated Gradle features were used in this build, making it incompatible with Gradle 8.0.
You can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins.
See https://docs.gradle.org/7.4.2/userguide/command_line_interface.html#sec:command_line_warnings
|
Same error for me while running jbake-gradle-plugin/README.adoc Lines 48 to 55 in 130c2df
Got:
You need to configure the |
jmini
added a commit
to jmini/jbake-gradle-sample
that referenced
this issue
Jun 1, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The build is not executed without adding without adding commons-configuration, so added this dependency in build script configuration
to execute it successfully.
and build executed without any failure, but the template are not getting generated in the JBake folder
but it seems template's are downloaded and extracted in temp folder
so issue seems to be in init.groovy
`
The text was updated successfully, but these errors were encountered: