-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathbuild.gradle
More file actions
30 lines (26 loc) · 829 Bytes
/
build.gradle
File metadata and controls
30 lines (26 loc) · 829 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
buildscript {
repositories {
mavenCentral()
jcenter()
maven {
url "https://repository.axelor.com/nexus/repository/maven-public/"
}
}
dependencies {
classpath 'com.ullink.gradle:gradle-msbuild-plugin:2.10'
classpath 'com.github.ben-manes:gradle-versions-plugin:0.11.1'
}
}
plugins {
id "com.jfrog.bintray" version '1.2'
id 'com.github.ben-manes.versions' version '0.9'
}
description = 'SOAP clients and webservice tests for epages6'
apply from: './gradle/wsdl.gradle'
apply from: './gradle/eclipse.gradle'
apply from: './gradle/java.gradle'
apply from: './gradle/documentation.gradle'
// Do not start perl tests via gradle wrapper
// apply from: './gradle/perl.gradle'
apply from: './gradle/bintray.gradle'
wrapper { gradleVersion = "2.6" }