-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
59 lines (48 loc) · 1.58 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
51
52
53
54
55
56
57
58
59
plugins {
id 'application'
id 'com.github.johnrengelman.shadow' version '6.0.0'
id 'com.adarshr.test-logger' version '2.1.0'
id "org.sonarqube" version "3.1.1"
id 'idea'
id 'java-library'
id 'signing'
id 'maven-publish'
id 'jacoco'
}
group 'com.jinyframework'
version '1.0-SNAPSHOT'
repositories {
maven { url "https://s01.oss.sonatype.org/content/repositories/snapshots" }
mavenCentral()
}
def nettyVersion = '4.1.65.Final'
dependencies {
compileOnly 'org.projectlombok:lombok:1.18.12'
annotationProcessor 'org.projectlombok:lombok:1.18.12'
testCompileOnly 'org.projectlombok:lombok:1.18.12'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.12'
// JUnit
testImplementation('org.junit.jupiter:junit-jupiter:5.6.2')
// SLF4J as a facade
implementation group: 'org.slf4j', name:'slf4j-api', version: '1.7.2'
implementation 'org.projectlombok:lombok:1.18.16'
implementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.0.9'
implementation group: 'ch.qos.logback', name: 'logback-core', version: '1.0.9'
implementation 'dev.keva:keva-ioc:0.1.0-SNAPSHOT'
implementation group: 'io.netty', name: 'netty-handler', version: "${nettyVersion}"
implementation group: 'io.netty', name: 'netty-buffer', version: "${nettyVersion}"
}
shadowJar {
minimize()
}
application {
mainClassName = 'dev.keva.proxy.Application'
}
test {
useJUnitPlatform()
testLogging {
events "passed", "skipped", "failed"
outputs.upToDateWhen { false }
showStandardStreams = true
}
}