-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
63 lines (49 loc) · 1.69 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
60
61
62
63
plugins {
id 'java'
id 'io.quarkus'
}
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
implementation ('org.eclipse.jdt:org.eclipse.jdt.core:3.23.0') {
exclude group: 'org.slf4j'
}
implementation 'org.eclipse.jgit:org.eclipse.jgit:5.11.0.202103091610-r'
implementation ('com.github.tsantalis:refactoring-miner:2.1.0') {
exclude group: 'org.slf4j'
exclude group: "junit"
}
implementation 'io.quarkus:quarkus-hibernate-orm-panache'
implementation 'io.quarkus:quarkus-jdbc-mariadb'
// Conflicting dependencies, now we use transitive from RM
// implementation 'io.quarkus:quarkus-jgit'
implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}")
implementation 'io.quarkus:quarkus-arc'
implementation('com.github.mauricioaniche:ck:0.6.3') {
exclude group: 'org.slf4j'
}
implementation 'org.jboss.logmanager:log4j-jboss-logmanager:1.2.0.Final'
implementation 'org.jboss.logmanager:log4j2-jboss-logmanager:1.0.0.Beta1'
implementation 'org.jboss.slf4j:slf4j-jboss-logmanager:1.1.0.Final'
testImplementation 'io.quarkus:quarkus-junit5'
testImplementation 'io.quarkus:quarkus-jdbc-h2'
testImplementation 'org.junit.vintage:junit-vintage-engine:5.7.0'
}
group 'refactoringml'
version '0.1.0'
compileJava {
options.encoding = 'UTF-8'
options.compilerArgs << '-parameters'
}
compileTestJava {
options.encoding = 'UTF-8'
}
java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
test {
systemProperty "java.util.logging.manager", "org.jboss.logmanager.Logger"
}