-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
53 lines (40 loc) · 1.54 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
plugins {
id 'java'
//https://github.com/JetBrains/gradle-intellij-plugin
id 'org.jetbrains.intellij' version '1.3.0'
}
group 'org.outsparql'
repositories {
mavenCentral()
}
// Include the generated files in the source set
sourceSets.main.java.srcDirs 'src/main/gen'
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
testRuntimeOnly 'org.junit.vintage:junit-vintage-engine:5.8.2'
testCompileOnly 'junit:junit:4.13.2'
testImplementation ('org.mockito:mockito-core:4.0.0')
// Release notes: https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=-3&styleName=Html&projectId=12311220
implementation ('org.apache.jena:jena-arq:4.2.0'){ exclude group: 'org.slf4j' }
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
version = '2021.3.1'
plugins = ['com.intellij.java']
}
// https://data.services.jetbrains.com/products?fields=code,name,releases.downloads,releases.version,releases.build,releases.type&code=DG,PS,DL,MPS,MPSIIP,RDCPPP,WS,AC,IIC,IIE,GO,CL,PCD,PCC,RD,PCE,IIU,RM,PCP
// https://data.services.jetbrains.com/products?fields=code,name,releases.downloads,releases.version,releases.build,releases.type&code=IIC,IIU
// https://jb.gg/intellij-platform-builds-list
runPluginVerifier {
ideVersions = ["2020.3.1", "2022.3.2"]
}
patchPluginXml {
// 2020.1.4 (build 201.8743.12),
version = '0.4.0'
sinceBuild = '203.6682.168'
untilBuild = ''
}
test {
useJUnitPlatform()
}