-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
47 lines (41 loc) · 912 Bytes
/
build.gradle
File metadata and controls
47 lines (41 loc) · 912 Bytes
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
subprojects {
group = 'io.opencaesar.owl'
version = '2.15.0'
ext.versions = [
owl: '5.1.17',
openllet: '2.6.5',
jena: '4.6.1',
jgrapht: '1.1.0',
xmlcatalog: '1.0.4',
xmlresolver: '1.2',
commonsIo: '2.11.0',
jcommander: '1.82',
log4j: '1.2.17',
slf4j: '1.7.33',
junit: '4.13.2',
mavenResolver: '1.8.2',
mavenProvider: '3.8.4',
plantuml: '1.2023.9',
jsoup: '1.16.1'
]
repositories {
mavenLocal()
mavenCentral()
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply from: "${rootDir}/gradle/maven-deployment.gradle"
java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
withJavadocJar()
withSourcesJar()
}
tasks.named('jar') {
manifest {
attributes('Implementation-Title': project.name,
'Implementation-Version': project.version)
}
}
}