mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-08-17 00:36:35 +00:00
41 lines
1.0 KiB
Groovy
41 lines
1.0 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://dl.cloudsmith.io/public/arcane/archive/maven/" }
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly 'org.projectlombok:lombok:1.18.24'
|
|
annotationProcessor 'org.projectlombok:lombok:1.18.24'
|
|
annotationProcessor 'systems.manifold:manifold-ext:2022.1.18'
|
|
implementation 'art.arcane:Source:22.7.2'
|
|
implementation 'art.arcane:Amulet:22.7.13'
|
|
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.18'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
|
|
}
|
|
|