Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4e0de9904c | ||
|
|
38464b11fd | ||
|
|
36a4459951 | ||
|
|
a9bcbf9296 |
@ -1,27 +1,3 @@
|
||||
plugins {
|
||||
id 'groovy-gradle-plugin'
|
||||
}
|
||||
|
||||
repositories {
|
||||
maven {
|
||||
url 'https://archiva.jessebrault.com/repository/internal/'
|
||||
|
||||
credentials {
|
||||
username System.getenv('JBARCHIVA_USERNAME')
|
||||
password System.getenv('JBARCHIVA_PASSWORD')
|
||||
}
|
||||
}
|
||||
|
||||
maven {
|
||||
url 'https://archiva.jessebrault.com/repository/snapshots/'
|
||||
|
||||
credentials {
|
||||
username System.getenv('JBARCHIVA_USERNAME')
|
||||
password System.getenv('JBARCHIVA_PASSWORD')
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation 'com.jessebrault.jbarchiva:jbarchiva:0.2.2'
|
||||
}
|
||||
|
||||
@ -4,7 +4,7 @@ plugins {
|
||||
}
|
||||
|
||||
group 'com.jessebrault.ssg'
|
||||
version '0.6.1'
|
||||
version '0.6.3'
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
|
||||
@ -16,7 +16,7 @@ dependencies {
|
||||
implementation libs.picocli
|
||||
implementation libs.log4j2.api
|
||||
implementation libs.log4j2.core
|
||||
implementation "org.gradle:gradle-tooling-api:8.14.1"
|
||||
implementation "org.gradle:gradle-tooling-api:9.2.0"
|
||||
|
||||
runtimeOnly libs.log4j2.slf4j2.impl
|
||||
}
|
||||
|
||||
@ -5,7 +5,7 @@ import picocli.CommandLine
|
||||
@CommandLine.Command(
|
||||
name = 'ssg',
|
||||
mixinStandardHelpOptions = true,
|
||||
version = '0.6.1',
|
||||
version = '0.6.3',
|
||||
description = 'A static site generator which can interface with Gradle for high extensibility.',
|
||||
subcommands = [SsgInit, SsgBuild, SsgWatch]
|
||||
)
|
||||
|
||||
@ -1,15 +1,15 @@
|
||||
[versions]
|
||||
classgraph = '4.8.179'
|
||||
commonmark = '0.24.0'
|
||||
classgraph = '4.8.184'
|
||||
commonmark = '0.27.0'
|
||||
di = '0.1.0'
|
||||
fp = '0.1.0'
|
||||
groovy = '4.0.27'
|
||||
groowt = '0.1.4'
|
||||
jetbrains-annotations = '26.0.2'
|
||||
jsoup = '1.20.1'
|
||||
junit = '5.13.0'
|
||||
log4j2 = '2.24.3'
|
||||
mockito = '5.18.0'
|
||||
jsoup = '1.21.2'
|
||||
junit = '5.14.0'
|
||||
log4j2 = '2.25.2'
|
||||
mockito = '5.20.0'
|
||||
picocli = '4.7.7'
|
||||
slf4j = '2.0.17'
|
||||
|
||||
@ -25,8 +25,6 @@ groowt-v = { module = 'groowt:views', version.ref = 'groowt' }
|
||||
groowt-vc = { module = 'groowt:view-components', version.ref = 'groowt' }
|
||||
groowt-wvc= { module = 'groowt:web-view-components', version.ref = 'groowt' }
|
||||
groowt-wvcc = { module = 'groowt:web-view-components-compiler', version.ref = 'groowt' }
|
||||
groowt-fp = { module = 'groowt:util-fp', version.ref = 'groowt' }
|
||||
groowt-di = { module = 'groowt:util-di', version.ref = 'groowt' }
|
||||
jetbrains-anontations = { module = 'org.jetbrains:annotations', version.ref = 'jetbrains-annotations' }
|
||||
jsoup = { module = 'org.jsoup:jsoup', version.ref = 'jsoup' }
|
||||
junit-jupiter-api = { module = 'org.junit.jupiter:junit-jupiter-api', version.ref = 'junit' }
|
||||
|
||||
@ -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.5.0-SNAPSHOT");
|
||||
final Dependency ssgCli = project.getDependencies().create("com.jessebrault.ssg:cli:0.5.0-SNAPSHOT");
|
||||
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");
|
||||
ssgApiConfiguration.getDependencies().add(ssgApi);
|
||||
ssgCliConfiguration.getDependencies().add(ssgCli);
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user