mirror of
https://github.com/2006-Scape/apollo.git
synced 2026-07-03 00:38:21 +00:00
16 lines
401 B
Groovy
16 lines
401 B
Groovy
apply plugin: 'kotlin'
|
|
|
|
|
|
dependencies {
|
|
def gameProject = project(':game')
|
|
|
|
compile gameProject.sourceSets.main.output
|
|
compile group: 'org.assertj', name: 'assertj-core', version: '3.8.0'
|
|
|
|
def gameTestConfiguration = gameProject.configurations.testCompileOnly
|
|
def gameTestDependencies = gameTestConfiguration.dependencies
|
|
|
|
gameTestDependencies.each {
|
|
compile it
|
|
}
|
|
} |