-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
55 lines (46 loc) · 1.44 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
buildscript {
repositories {
jcenter()
maven { url 'https://maven.rapidminer.com/content/groups/public/' }
}
}
plugins { id 'com.rapidminer.extension' version '0.9.4' }
// Define Maven artifact repositories
repositories {
jcenter()
maven { url 'https://maven.rapidminer.com/content/groups/public/' }
}
extensionConfig {
// The extension name
name 'Template'
/*
* The artifact group which will be used when publishing the extensions Jar
* and for package customization when initializing the project repository.
*
* It is 'com.rapidminer.extension' by default.
*/
//groupId = 'com.rapidminer.extension'
/*
* The extension vendor which will be displayed in the extensions about box
* and for customizing the license headers when initializing the project repository.
*
* It is 'RapidMiner GmbH' by default.
*/
//vendor = "RapidMiner GmbH"
/*
* The vendor homepage which will be displayed in the extensions about box
* and for customizing the license headers when initializing the project repository.
*
* It is 'www.rapidminer.com' by default.
*/
//homepage = "www.rapidminer.com"
// define RapidMiner version and extension dependencies
dependencies {
rapidminer '9.7.0'
//extension namespace: 'text', version: '8.1.0'
}
}
// Define third party library dependencies
dependencies {
//compile 'com.google.guava:guava:26.0'
}