Initial commit

This commit is contained in:
2022-05-13 08:53:40 +08:00
commit 6bd66d2f25
11 changed files with 533 additions and 0 deletions

24
build.gradle Normal file
View File

@@ -0,0 +1,24 @@
plugins {
id 'java'
id 'idea'
}
group 'com.github.jie65535.opencommand'
version 'dev-1.0.0'
sourceCompatibility = 17
targetCompatibility = 17
repositories {
mavenCentral()
}
dependencies {
implementation fileTree(dir: 'lib', include: ['*.jar'])
}
jar {
jar.baseName = 'opencommand'
destinationDir = file(".")
}