blob: 98382aba3b149947ff81492c2e6fd2014efd659d [file] [log] [blame]
/*
Derby - Class module-info
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to you 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.
*/
/**
* <p>
* The Derby tests exercise all of the modules.
* </p>
*
* <p><b>Module Diagram:</b></p>
*
* <div style="text-align:center;">
* <img
* src="tests.svg"
* alt="module diagram for org.apache.derby.tests"
* style="border:2px solid #000000"
* />
* </div>
*
*/
open module org.apache.derby.tests
{
//
// MANDATORY IMPORTS
//
requires java.base;
requires java.logging;
requires java.management;
requires java.naming;
requires java.sql;
requires java.xml;
requires org.apache.derby.commons;
requires org.apache.derby.engine;
requires org.apache.derby.server;
requires org.apache.derby.client;
requires org.apache.derby.tools;
requires org.apache.derby.optionaltools;
requires org.apache.derby.runner;
//
// OPTIONAL IMPORTS
//
// REQUIRED AT COMPILE-TIME.
// OPTIONAL AT RUN-TIME.
//
requires static json.simple;
requires static lucene.analyzers.common;
requires static lucene.core;
requires static lucene.queryparser;
// MAKING THIS STATIC ALLOWS sysinfo TO EXAMINE derbyTesting.jar
requires static junit;
//
// PUBLIC API
//
// NEEDED BY sysinfo
exports org.apache.derbyTesting.junit;
//
// SUPPORT MODULE LOOKUP
//
provides org.apache.derby.shared.api.DerbyModuleAPI
with org.apache.derby.info.tsting.DerbyModule;
}