2024-12-22 19:39:47 +00:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
id 'application'
|
|
|
|
}
|
|
|
|
|
|
|
|
group = 'net.pixtaded'
|
2025-01-10 20:58:22 +00:00
|
|
|
version = '1.0.1'
|
2024-12-22 19:39:47 +00:00
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
application {
|
|
|
|
mainClass = 'net.pixtaded.crab.Main'
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation('org.xerial:sqlite-jdbc:3.47.1.0')
|
|
|
|
}
|