[DEV] add GLD port for java

This commit is contained in:
Edouard DUPIN 2022-05-08 17:55:55 +02:00
parent 2fae365bb9
commit 8d24136b6a
3 changed files with 52 additions and 0 deletions

27
GLD_logger-test.json Normal file
View File

@ -0,0 +1,27 @@
{
"type":"BINARY",
"sub-type":"TEST",
"group-id":"io.scenarium",
"description":"Simple java logger test ",
"license":"MPL-2",
"license-file":"file://LICENSE",
"maintainer":"file://authors.txt",
"author":"file://authors.txt",
"version":"file://version.txt",
"source": [
"test/src/test/scenarium/logger/Log2.java",
"test/src/test/scenarium/logger/TestBasicLog.java",
"test/src/test/scenarium/logger/Log.java"
],
"path":[
"test/src/"
],
"compilation-version": {
"java": 18
},
"dependency": [
"logger",
"junit-jupiter-api"
]
}

24
GLD_logger.json Normal file
View File

@ -0,0 +1,24 @@
{
"type":"LIBRARY",
"group-id":"io.scenarium",
"description":"Simple java logger",
"license":"MPL-2",
"license-file":"file://LICENSE",
"maintainer":"file://authors.txt",
"author":"file://authors.txt",
"version":"file://version.txt",
"source": [
"src/module-info.java",
"src/io/scenarium/logger/LoggerLocal.java",
"src/io/scenarium/logger/internal/Log.java",
"src/io/scenarium/logger/Logger.java",
"src/io/scenarium/logger/LogLevel.java"
],
"path":[
"src/"
],
"compilation-version": {
"java": 18
}
}

1
author.txt Normal file
View File

@ -0,0 +1 @@
Edouard DUPIN<yui.heero@gmail.com>