forked from pedrovgs/AndroidWiFiADB
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
39 lines (31 loc) · 851 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
buildscript {
repositories {
mavenCentral()
}
}
plugins {
id "org.jetbrains.intellij" version "0.2.13"
}
/*apply plugin: 'org.jetbrains.intellij'
apply plugin: 'java'
apply plugin: 'jacoco'*/
group 'org.firstinspires.ftc.plugins'
// version '0.0.40' // gets added to the file name
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
}
// https://github.com/JetBrains/gradle-intellij-plugin
intellij {
// https://blog.jetbrains.com/blog/2016/03/09/jetbrains-toolbox-release-and-versioning-changes/
// http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html
version '2016.2'
pluginName 'FtcAndroidStudioPlugin'
plugins 'android'
updateSinceUntilBuild false
}
dependencies {
// compile 'junit:junit:4.12'
// compile 'org.mockito:mockito-all:1.10.19'
}