forked from axelor/open-platform-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
48 lines (40 loc) · 961 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
buildscript {
ext.repos = {
jcenter()
mavenCentral()
mavenLocal()
maven { url 'https://plugins.gradle.org/m2/' }
maven { url 'https://repository.axelor.com/nexus/public/' }
}
ext.adkVersion = '5.0.+'
ext.appVersion = '5.0.4'
repositories repos
dependencies {
classpath "com.axelor:axelor-gradle:${adkVersion}"
}
}
allprojects {
repositories repos
}
apply plugin: 'idea'
apply plugin: 'eclipse'
apply plugin: "com.axelor.app"
apply from: './gradle/style.gradle'
axelor {
title = "Axelor :: DEMO"
}
allprojects {
apply plugin: 'idea'
apply plugin: 'eclipse'
group = "com.axelor"
version = "${appVersion}"
sourceCompatibility = 1.8
targetCompatibility = 1.8
}
dependencies {
// add module dependencies
compile project(":modules:axelor-demo-contact")
compile project(":modules:axelor-demo-sale")
compile project(":modules:axelor-demo-project")
compile project(":modules:axelor-demo-custom")
}