mirror of
https://github.com/google/nomulus.git
synced 2025-05-05 06:27:51 +02:00
Move configs and dependencies from root script to subprojects. There is not too much commonality between subprojects. Besides, the gradle lint plugin (not added to this project yet) does not handle inherited dependencies properly. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=218698818
29 lines
441 B
Groovy
29 lines
441 B
Groovy
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
mavenCentral()
|
|
|
|
maven {
|
|
url 'https://plugins.gradle.org/m2/'
|
|
}
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
jcenter()
|
|
mavenCentral()
|
|
flatDir {
|
|
// The objectify jar that comes with Nomulus.
|
|
dirs "${rootDir}/../third_party/objectify/v4_1"
|
|
}
|
|
}
|
|
|
|
// Single version across all projects for now.
|
|
version = '1.0'
|
|
|
|
// Java plugin:
|
|
apply plugin: 'java'
|
|
}
|
|
|
|
|