temporary commit2

This commit is contained in:
2023-10-03 19:53:24 +08:00
parent 1747d946ec
commit e75a0e551b
13 changed files with 63 additions and 41 deletions

12
wcfg-cli/build.gradle Normal file
View File

@@ -0,0 +1,12 @@
plugins {
alias(catalog.plugins.envelope)
}
dependencies {
implementation catalog.picocli
implementation project(':wcfg')
}
envelopeJar {
mainClass = 'net.woggioni.wson.wcfg.cli.Main'
}

View File

@@ -0,0 +1,3 @@
module net.woggioni.wson.wcfg.cli {
requires net.woggioni.wson.wcfg;
}

View File

@@ -0,0 +1,7 @@
package net.woggioni.wson.wcfg.cli;
public class Main {
public void main(String[] args) {
System.out.println();
}
}