build.gradle (1233B)
1 /* 2 * This file was generated by the Gradle 'init' task. 3 * 4 * This generated file contains a sample Java application project to get you started. 5 * For more details on building Java & JVM projects, please refer to https://docs.gradle.org/8.4/userguide/building_java_projects.html in the Gradle documentation. 6 */ 7 8 9 plugins { 10 id 'java' 11 id 'application' 12 } 13 14 repositories { 15 mavenCentral() 16 } 17 18 dependencies { 19 implementation 'redis.clients:jedis:4.3.1' // reddis server 20 implementation 'org.mariadb.jdbc:mariadb-java-client:3.3.1' // MariaDB-driver for JavaDB 21 22 implementation "com.sparkjava:spark-core:2.9.4" // spark-java 23 // implementation "com.ftpix:sparknotation:1.17" // spark-java annotation like @SparkGet(...) 24 25 implementation "org.slf4j:slf4j-simple:2.0.9" // slf4j implementation 26 27 implementation 'com.google.code.gson:gson:2.10.1' // json library 28 29 implementation "javax.persistence:javax.persistence-api:2.2" // orm (idk man) 30 31 testImplementation 'org.junit.jupiter:junit-jupiter:5.9.3' // unit test 32 } 33 34 application { 35 // Define the main class for the application. 36 mainClass = 'circuhub.App' 37 } 38 39 tasks.named('test') { 40 // Use JUnit Platform for unit tests. 41 useJUnitPlatform() 42 }