mirror of
https://github.com/google/nomulus.git
synced 2025-08-02 16:02:10 +02:00
* Break circular dependency between core and util Created a new :common project and moved a minimum number of classes to break the circular dependency between the two projects. This gets rid of the gradle lint dependency warnings. Also separated api classes and testing helpers into separate source sets in :common so that testing classes may be restricted to test configurations.
52 lines
2.4 KiB
Groovy
52 lines
2.4 KiB
Groovy
// Copyright 2019 The Nomulus Authors. All Rights Reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
dependencies {
|
|
def deps = rootProject.dependencyMap
|
|
compile deps['com.google.api-client:google-api-client']
|
|
compile deps['com.google.appengine:appengine-api-1.0-sdk']
|
|
compile deps['com.google.appengine:appengine-testing']
|
|
compile deps['com.google.auth:google-auth-library-credentials']
|
|
compile deps['com.google.auth:google-auth-library-oauth2-http']
|
|
compile deps['com.google.auto.value:auto-value-annotations']
|
|
compile deps['com.google.code.findbugs:jsr305']
|
|
compile deps['com.google.dagger:dagger']
|
|
compile deps['com.google.flogger:flogger']
|
|
compile deps['com.google.guava:guava']
|
|
compile deps['com.google.http-client:google-http-client']
|
|
compile deps['com.google.re2j:re2j']
|
|
compile deps['com.ibm.icu:icu4j']
|
|
compile deps['javax.inject:javax.inject']
|
|
compile deps['javax.mail:mail']
|
|
compile deps['javax.xml.bind:jaxb-api']
|
|
compile deps['joda-time:joda-time']
|
|
compile deps['org.yaml:snakeyaml']
|
|
compile project(':common')
|
|
runtime deps['com.google.auto.value:auto-value']
|
|
testCompile deps['com.google.appengine:appengine-api-stubs']
|
|
testCompile deps['com.google.guava:guava-testlib']
|
|
testCompile deps['com.google.truth:truth']
|
|
testCompile deps['junit:junit']
|
|
testCompile deps['org.hamcrest:hamcrest-all']
|
|
testCompile deps['org.hamcrest:hamcrest-core']
|
|
testCompile deps['org.mockito:mockito-core']
|
|
testCompile files("${rootDir}/third_party/objectify/v4_1/objectify-4.1.3.jar")
|
|
testCompile project(path: ':common', configuration: 'testing')
|
|
testCompile project(':third_party')
|
|
testRuntime deps['com.google.flogger:flogger-system-backend']
|
|
annotationProcessor deps['com.google.auto.value:auto-value']
|
|
annotationProcessor deps['com.google.dagger:dagger-compiler']
|
|
testAnnotationProcessor deps['com.google.auto.value:auto-value']
|
|
testAnnotationProcessor deps['com.google.dagger:dagger-compiler']
|
|
}
|