-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathbuild.gradle
44 lines (37 loc) · 1.05 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
subprojects {
repositories {
mavenCentral()
// maven {
// url 'https://oss.sonatype.org/content/repositories/snapshots/'
// }
// mavenLocal()
}
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.2.3'
}
}
}
ext {
minSdkVersion = 14
compileSdkVersion = 21
targetSdkVersion = compileSdkVersion
buildToolsVersion = '21.1.2'
javaVersion = JavaVersion.VERSION_1_7
GROUP = 'info.piwai.frenchtoast'
VERSION_NAME = "1.0"
POM_PACKAGING = "pom"
POM_DESCRIPTION= "French Toast"
POM_URL="http://github.com/pyricau/frenchtoast/"
POM_SCM_URL="http://github.com/pyricau/frenchtoast/"
POM_SCM_CONNECTION="scm:git:https://github.com/pyricau/frenchtoast.git"
POM_SCM_DEV_CONNECTION="scm:git:[email protected]:pyricau/frenchtoast.git"
POM_LICENCE_NAME="The Apache Software License, Version 2.0"
POM_LICENCE_URL="http://www.apache.org/licenses/LICENSE-2.0.txt"
POM_LICENCE_DIST="repo"
POM_DEVELOPER_ID="pyricau"
POM_DEVELOPER_NAME="Pierre-Yves Ricau"
}