Skip to content

Commit

Permalink
📚 Add common libraries (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
CybAtax authored May 25, 2024
1 parent 0de621b commit b060e58
Showing 1 changed file with 19 additions and 6 deletions.
25 changes: 19 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,20 +1,33 @@
import java.nio.charset.StandardCharsets

plugins {
id 'java'
id 'com.diffplug.spotless' version '6.25.0'
id "java"
id "com.diffplug.spotless" version "6.25.0"
}

group = 'de.trollteam'
version = '1.0-SNAPSHOT'
group = "de.trollteam"
version = "1.0-rc"

repositories {
mavenCentral()
}

dependencies {
testImplementation platform('org.junit:junit-bom:5.10.2')
testImplementation 'org.junit.jupiter:junit-jupiter'
// Validation
implementation group: "jakarta.validation", name: "jakarta.validation-api", version: "3.0.2"
implementation group: "org.hibernate.validator", name: "hibernate-validator", version: "8.0.1.Final"

// Utility
compileOnly group: "org.projectlombok", name: "lombok", version: "1.18.28"
annotationProcessor group: "org.projectlombok", name: "lombok", version: "1.18.28"
testCompileOnly group: "org.projectlombok", name: "lombok", version: "1.18.28"
testAnnotationProcessor group: "org.projectlombok", name: "lombok", version: "1.18.28"

testImplementation group: "org.junit.jupiter", name:"junit-jupiter", version: "5.10.2"
testImplementation group: "org.junit-pioneer", name: "junit-pioneer", version: "2.2.0"
testImplementation group: "org.assertj", name: "assertj-core", version: "3.25.3"
testImplementation group: "com.tngtech.archunit", name: "archunit-junit5", version: "1.2.1"
testImplementation group: "org.mockito", name: "mockito-core", version: "5.10.0"
}

wrapper {
Expand Down

0 comments on commit b060e58

Please sign in to comment.