blob: e386ac5dc59aca29c20b63dc40d81b4459b8fd70 [file]
module org.apache.derby.server
{
//
// MANDATORY IMPORTS
//
requires java.base;
requires java.sql;
requires org.apache.derby.engine;
requires org.apache.derby.tools;
requires org.apache.derby.commons;
//
// OPTIONAL IMPORTS
//
// REQUIRED AT COMPILE-TIME.
// OPTIONAL AT RUN-TIME.
//
// NetServlet needs Java EE, which has not been modularized yet.
requires static geronimo.spec.servlet;
//
// DERBY INTERNAL EXPORTS
//
// ONLY VISIBLE TO OTHER DERBY MODULES.
//
exports org.apache.derby.drda to
org.apache.derby.runner,
org.apache.derby.tests;
exports org.apache.derby.impl.drda to
org.apache.derby.tests;
}