mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-01 15:36:45 +00:00
42 lines
1.1 KiB
Groovy
42 lines
1.1 KiB
Groovy
plugins {
|
|
id 'java'
|
|
id "io.freefair.lombok" version "6.3.0"
|
|
}
|
|
|
|
group 'com.volmit.iris'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
jar {
|
|
manifest {
|
|
attributes('Contains-Sources': 'java,class')
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
apply plugin: 'java'
|
|
|
|
repositories {
|
|
maven { url "https://arcanearts.jfrog.io/artifactory/archives" }
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly 'org.projectlombok:lombok:1.18.24'
|
|
annotationProcessor 'org.projectlombok:lombok:1.18.24'
|
|
annotationProcessor 'systems.manifold:manifold-ext:2022.1.19'
|
|
implementation 'art.arcane:Source:22.9.3'
|
|
implementation 'art.arcane:Cram:22.9.3'
|
|
implementation 'art.arcane:Amulet:22.9.5'
|
|
implementation 'com.google.code.gson:gson:2.9.0'
|
|
implementation 'com.github.ben-manes.caffeine:caffeine:3.1.1'
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
|
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
|
|
testAnnotationProcessor 'systems.manifold:manifold-ext:2022.1.19'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
|
|
}
|
|
|