Initialize project with Gradle setup, core dependencies, and IntelliJ configuration.

This commit is contained in:
CodingPhoenixx
2026-02-15 11:50:43 +01:00
commit 61e6e40319
14 changed files with 471 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
plugins {
id 'java'
}
group = 'dev.coph'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
maven {
name = "cophrepositoryReleases"
url = uri("https://repo.coph.dev/releases")
}
}
dependencies {
compileOnly 'org.projectlombok:lombok:1.18.42'
annotationProcessor 'org.projectlombok:lombok:1.18.42'
implementation("dev.coph:simpleauthentication:0.3.0")
implementation("dev.coph:simplecache:1.3.0")
implementation("dev.coph:simplelogger:3.2.4")
implementation("dev.coph:simplerequest:5.1.1")
implementation("dev.coph:simplesql:4.2.0")
implementation("dev.coph:simpleutilities:3.12.1")
}