mirror of
https://github.com/2006-Scape/apollo.git
synced 2026-07-03 00:38:21 +00:00
a53929a9a8
Replaces the old Gradle plugin with plain Gradle buildscripts. Also cleans-up the current Gradle extensions and re-adds detekt, along with JUnit 5 support to all modules.
23 lines
677 B
Groovy
23 lines
677 B
Groovy
plugins {
|
|
id 'org.jetbrains.kotlin.jvm' version '1.2.60' apply(false)
|
|
id 'org.jetbrains.intellij' version '0.3.6' apply(false)
|
|
id 'org.jmailen.kotlinter' version '1.16.0' apply(false)
|
|
id 'org.sonarqube' version '2.6.2'
|
|
id "io.gitlab.arturbosch.detekt" version "1.0.0.RC8"
|
|
}
|
|
|
|
allprojects {
|
|
group = 'apollo'
|
|
version = '0.0.1'
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
maven { url "https://repo.maven.apache.org/maven2" }
|
|
maven { url "https://dl.bintray.com/kotlin/kotlinx/" }
|
|
}
|
|
}
|
|
|
|
apply from: 'gradle/properties.gradle'
|
|
apply from: 'gradle/code-quality.gradle'
|
|
apply from: 'gradle/testing.gradle'
|
|
apply from: 'gradle/wrapper.gradle' |