mirror of
https://github.com/collinsmith/riiablo.git
synced 2025-01-05 21:11:02 +07:00
49 lines
1.2 KiB
Groovy
49 lines
1.2 KiB
Groovy
buildscript {
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral()
|
|
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
|
|
maven { url "https://plugins.gradle.org/m2/" }
|
|
jcenter()
|
|
google()
|
|
}
|
|
|
|
dependencies {
|
|
classpath "com.android.tools.build:gradle:$androidBuildToolsPluginVersion"
|
|
classpath "gradle.plugin.io.netifi:gradle-flatbuffers-plugin:$flatbuffersPluginVersion"
|
|
}
|
|
|
|
dependencies {
|
|
// lib for artemis-odb weaving.
|
|
// see https://github.com/junkdog/artemis-odb/wiki/Bytecode-weaving
|
|
classpath "net.onedaybeard.artemis:artemis-odb-gradle-plugin:$artemisOdbVersion"
|
|
|
|
// lib for artemis-odb fluid.
|
|
// classpath "net.onedaybeard.artemis:artemis-fluid-gradle-plugin:$artemisOdbVersion"
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
apply plugin: 'idea'
|
|
|
|
version = '0.0.2'
|
|
ext.appName = 'riiablo'
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral()
|
|
google()
|
|
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
|
|
maven { url 'https://oss.sonatype.org/content/repositories/releases/' }
|
|
maven { url 'https://jitpack.io' }
|
|
}
|
|
}
|
|
|
|
configure(subprojects - project(':android')) {
|
|
apply plugin: 'java-library'
|
|
sourceCompatibility = 7.0
|
|
compileJava {
|
|
options.incremental = true
|
|
}
|
|
}
|