Compare commits
No commits in common. "36a4459951be1747744bf4b7879b261b28947677" and "c7b7ee8d2b78bce864ac482054b9ca9fc1c8bf6c" have entirely different histories.
36a4459951
...
c7b7ee8d2b
@ -4,7 +4,7 @@ plugins {
|
||||
}
|
||||
|
||||
group 'com.jessebrault.ssg'
|
||||
version '0.6.3'
|
||||
version '0.6.1'
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
|
||||
@ -16,7 +16,7 @@ dependencies {
|
||||
implementation libs.picocli
|
||||
implementation libs.log4j2.api
|
||||
implementation libs.log4j2.core
|
||||
implementation "org.gradle:gradle-tooling-api:9.2.0"
|
||||
implementation "org.gradle:gradle-tooling-api:8.14.1"
|
||||
|
||||
runtimeOnly libs.log4j2.slf4j2.impl
|
||||
}
|
||||
|
||||
@ -5,7 +5,7 @@ import picocli.CommandLine
|
||||
@CommandLine.Command(
|
||||
name = 'ssg',
|
||||
mixinStandardHelpOptions = true,
|
||||
version = '0.6.3',
|
||||
version = '0.6.1',
|
||||
description = 'A static site generator which can interface with Gradle for high extensibility.',
|
||||
subcommands = [SsgInit, SsgBuild, SsgWatch]
|
||||
)
|
||||
|
||||
@ -162,8 +162,8 @@ public class SsgGradlePlugin implements Plugin<Project> {
|
||||
Configuration ssgApiConfiguration,
|
||||
Configuration ssgCliConfiguration
|
||||
) {
|
||||
final Dependency ssgApi = project.getDependencies().create("com.jessebrault.ssg:api:0.6.3");
|
||||
final Dependency ssgCli = project.getDependencies().create("com.jessebrault.ssg:cli:0.6.3");
|
||||
final Dependency ssgApi = project.getDependencies().create("com.jessebrault.ssg:api:0.5.0-SNAPSHOT");
|
||||
final Dependency ssgCli = project.getDependencies().create("com.jessebrault.ssg:cli:0.5.0-SNAPSHOT");
|
||||
ssgApiConfiguration.getDependencies().add(ssgApi);
|
||||
ssgCliConfiguration.getDependencies().add(ssgCli);
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user