-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathbuild.gradle
68 lines (56 loc) · 2.26 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
56
57
58
59
60
61
62
63
64
65
66
67
68
buildscript {
repositories {
mavenLocal()
mavenCentral()
google()
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
maven {url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.3'
classpath 'com.google.gms:google-services:4.4.0'
classpath 'org.wisepersist:gwt-gradle-plugin:1.0.13'
classpath "org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:3.3"
// classpath 'com.dicedmelon.gradle:jacoco-android:0.1.4'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.4.1'
classpath 'com.mobidevelop.robovm:robovm-gradle-plugin:2.3.20'
}
}
plugins {
id "io.github.gradle-nexus.publish-plugin" version "1.1.0"
}
apply plugin: 'base'
allprojects {
apply plugin: "idea"
if( project.name.indexOf("e2e") < 0 ) apply plugin: "maven-publish"
group 'pl.mk5.gdx-fireapp'
version = (project.hasProperty("version") && project.getProperty("version") != "unspecified") ? project.getProperty("version") : 'latest'
ext {
appName = 'GDX Fireapp'
groupId = 'pl.mk5.gdx-fireapp'
libraryVersion = project.version
libraryName = 'GDX Fireapp'
libraryDescription = 'Firebase SDK API for LibGDX projects.'
siteUrl = 'https://github.com/mk-5/gdx-fireapp'
gitUrl = 'https://github.com/mk-5/gdx-fireapp.git'
issuesUrl = 'https://github.com/mk-5/gdx-fireapp/issues'
tags = ['libgdx','firebase sdk']
githubRepo = 'mk-5/gdx-fireapp'
githubReleaseNotesFile = 'README.md'
vcsTag = project.version
developerId = 'mk-5'
developerName = 'mk5'
developerEmail = '[email protected]'
licenseName = 'The Apache Software License, Version 2.0'
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
allLicenses = ["Apache-2.0"]
}
apply from: "" + project.rootDir + "/gradle/dependencies.gradle"
repositories {
mavenCentral()
google()
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
maven { url "https://oss.sonatype.org/content/repositories/releases/" }
}
}
apply from: "" + project.rootDir + "/gradle/testing.gradle"