54 lines
1.6 KiB
Groovy
54 lines
1.6 KiB
Groovy
/*
|
|
* This file was generated by the Gradle 'init' task.
|
|
*/
|
|
|
|
plugins {
|
|
id 'com.github.ben-manes.versions' version '0.52.0'
|
|
id 'java'
|
|
id 'application'
|
|
}
|
|
|
|
mainClassName = 'App'
|
|
version = '1.0'
|
|
compileJava.options.encoding = 'UTF-8'
|
|
compileTestJava.options.encoding = 'UTF-8'
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'mysql:mysql-connector-java:8.0.33'
|
|
implementation 'org.apache.httpcomponents:httpclient:4.5.14'
|
|
implementation 'com.googlecode.json-simple:json-simple:1.1.1'
|
|
implementation 'com.google.code.gson:gson:2.11.0'
|
|
implementation 'com.google.auth:google-auth-library-oauth2-http:1.31.0'
|
|
implementation 'com.google.api-client:google-api-client:2.7.2'
|
|
implementation 'com.google.apis:google-api-services-calendar:v3-rev20250115-2.0.0'
|
|
implementation 'com.google.guava:guava:33.4.0-jre'
|
|
implementation 'commons-cli:commons-cli:1.9.0'
|
|
implementation 'net.sourceforge.argparse4j:argparse4j:0.9.0'
|
|
implementation 'org.slf4j:slf4j-api:1.6.1'
|
|
implementation 'org.slf4j:slf4j-simple:1.6.1'
|
|
implementation 'javax.xml.bind:jaxb-api:2.4.0-b180830.0359'
|
|
implementation 'software.amazon.awssdk:s3:2.30.6'
|
|
testImplementation 'junit:junit:4.13.2'
|
|
testImplementation 'org.testng:testng:7.10.2'
|
|
}
|
|
|
|
jar {
|
|
manifest {
|
|
attributes(
|
|
'Main-Class': 'de.jeyp91.App'
|
|
)
|
|
}
|
|
manifest.attributes(
|
|
'Multi-Release': 'true'
|
|
)
|
|
from {
|
|
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
|
|
}
|
|
duplicatesStrategy = DuplicatesStrategy.INCLUDE
|
|
}
|