mirror of
https://codeberg.org/PGPainless/pgpeasy.git
synced 2025-09-09 03:09:40 +02:00
Initial commit
This commit is contained in:
commit
a0c2fc468a
23 changed files with 628 additions and 0 deletions
29
build.gradle
Normal file
29
build.gradle
Normal file
|
@ -0,0 +1,29 @@
|
|||
plugins {
|
||||
id 'application'
|
||||
}
|
||||
|
||||
group 'org.pgpainless'
|
||||
version '0.1.0-SNAPSHOT'
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
dependencies {
|
||||
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
|
||||
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
|
||||
|
||||
// CLI
|
||||
implementation 'info.picocli:picocli:4.6.3'
|
||||
|
||||
// PGPainless
|
||||
implementation "org.pgpainless:pgpainless-core:1.1.2"
|
||||
}
|
||||
|
||||
application {
|
||||
mainClass = 'org.pgpainless.pgpeasy.PGPeasy'
|
||||
}
|
||||
|
||||
test {
|
||||
useJUnitPlatform()
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue