ssg/cli/build.gradle
2023-01-04 09:26:00 -06:00

28 lines
663 B
Groovy

plugins {
id 'groovy'
id 'application'
}
repositories {
mavenCentral()
}
dependencies {
implementation project(':lib')
// https://mvnrepository.com/artifact/org.apache.groovy/groovy
implementation 'org.apache.groovy:groovy:4.0.7'
/**
* Logging
*/
// https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-slf4j-impl
runtimeOnly 'org.apache.logging.log4j:log4j-slf4j-impl:2.19.0'
// https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core
runtimeOnly 'org.apache.logging.log4j:log4j-core:2.19.0'
}
application {
mainClassName = 'com.jessebrault.ssg.StaticSiteGeneratorCli'
}