forked from TheEngineRoom-UniGe/OWLOOP
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
32 lines (25 loc) · 852 Bytes
/
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
/*
* Copyright (C) 2017 Luca Buoncompagni, Syed Yusha kareem.
*
* Licensed under the GNU GENERAL PUBLIC LICENSE, Version 3.0.
* You may obtain a copy of the License at https://www.gnu.org/licenses/gpl-3.0.en.html
*
*/
group 'it.emarolab.owloop'
version '2.1'
apply plugin: 'java'
apply plugin: 'idea'
repositories {
mavenCentral()
flatDir {
dirs 'lib'
}
}
dependencies {
/* Dependencies are commented in this build.gradle file and instead are added to pom.xml file
because owloop is now using the Maven build tool. */
compile 'it.emarolab.amor:amor:2.2'
compile group: 'net.sourceforge.owlapi', name: 'owlapi-distribution', version: '5.0.5'
compile group: 'com.github.galigator.openllet', name: 'openllet-owlapi', version: '2.5.1'
testCompile group: 'junit', name: 'junit', version: '4.12'
}