/
githubmirror
/
guava
Обзор
Документация
Войти
/
githubmirror
/
guava
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
guava-testlib/src/module-info.java
31 строка
1 KB
cpovirk
Declare our module dep on `failureaccess` as [`transitive`](https://dev.java/learn/modules/implied-readability/), and improve module deps in `testlib`, too.
02 апр 2025, 00:16
02 апр 2025, 00:16
63ecdf2
Код
Авторство
О чём код?
/* * Copyright (C) 2024 The Guava Authors * * 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. */ /** Guava Testlib */ module com.google.common.testlib { requires java.logging; requires transitive com.google.common; requires transitive junit; requires static com.google.errorprone.annotations; requires static com.google.j2objc.annotations; requires static org.jspecify; exports com.google.common.collect.testing; exports com.google.common.collect.testing.features; exports com.google.common.collect.testing.google; exports com.google.common.collect.testing.testers; exports com.google.common.escape.testing; exports com.google.common.testing; exports com.google.common.util.concurrent.testing; }