forked from mjc-school/stage3-module2-task
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
50 lines (42 loc) · 1.43 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
plugins {
id 'java-base'
}
wrapper {
gradleVersion = gradlewVersion
}
subprojects {
apply plugin: 'java'
apply plugin: 'jacoco'
group = 'com.mjc.school'
sourceCompatibility = javaVersion
targetCompatibility = javaVersion
repositories {
mavenCentral()
}
dependencies {
implementation "org.springframework:spring-context:$springVersion"
testImplementation "org.springframework:spring-test:$springVersion"
testImplementation "org.junit.jupiter:junit-jupiter-api:$jupiterVersion"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$jupiterVersion"
testImplementation "com.tngtech.archunit:archunit:$archUnitVersion"
// https://mvnrepository.com/artifact/org.aspectj/aspectjweaver
implementation 'org.aspectj:aspectjweaver:1.9.19'
annotationProcessor "org.mapstruct:mapstruct-processor:$mapstructVersion"
implementation "org.mapstruct:mapstruct:$mapstructVersion"
}
test {
useJUnitPlatform()
}
}
task repack(type: Jar, dependsOn: ':module-main:build') {
if (findProject(':module-main') != null) {
entryCompression = ZipEntryCompression.STORED
def buildJar = zipTree("${project(':module-main').buildDir}/libs/module-main.jar")
from(buildJar) { into('/') }
manifest {
attributes(
'Main-Class': 'com.mjc.school.Main'
)
}
}
}