Added wvc-compiler to runtime.

This commit is contained in:
JesseBrault0709 2024-05-27 10:40:19 +02:00
parent adc96982f2
commit d1c8a74355
4 changed files with 11 additions and 2 deletions

View File

@ -28,6 +28,12 @@ dependencies {
implementation libs.commonmark
implementation libs.commonmark.frontmatter
implementation libs.jsoup
runtimeOnly libs.groowt.wvcCompiler
}
java {
withSourcesJar()
}
jar {

View File

@ -1 +0,0 @@
!build

View File

@ -27,6 +27,10 @@ application {
applicationName = 'ssg'
}
java {
withSourcesJar()
}
jar {
archivesBaseName = "ssg-cli"
}

View File

@ -11,9 +11,9 @@ classgraph = 'io.github.classgraph:classgraph:4.8.172'
commonmark = { module = 'org.commonmark:commonmark', version.ref = 'commonmark' }
commonmark-frontmatter = { module = 'org.commonmark:commonmark-ext-yaml-front-matter', version.ref = 'commonmark' }
groovy = { module = 'org.apache.groovy:groovy', version.ref = 'groovy' }
groovy-templates = { module = 'org.apache.groovy:groovy-templates', version.ref = 'groovy' }
groovy-yaml = { module = 'org.apache.groovy:groovy-yaml', version.ref = 'groovy' }
groowt-all = { module = 'groowt:groowt-all', version.ref = 'groowt' }
groowt-wvcCompiler = { module = 'groowt:web-view-components-compiler', version.ref = 'groowt' }
jetbrains-anontations = 'org.jetbrains:annotations:24.1.0'
jsoup = 'org.jsoup:jsoup:1.17.2'
junit-jupiter-api = { module = 'org.junit.jupiter:junit-jupiter-api', version.ref = 'junit' }