ssg/cli/build.gradle
2023-01-06 14:26:33 -06:00

31 lines
774 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.slf4j/slf4j-api
implementation 'org.slf4j:slf4j-api:1.7.36'
// 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'
}