module-info.java revision 13901:b2a69d66dc65
175374Sbp/*
275374Sbp * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
375374Sbp * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
475374Sbp *
575374Sbp * This code is free software; you can redistribute it and/or modify it
675374Sbp * under the terms of the GNU General Public License version 2 only, as
775374Sbp * published by the Free Software Foundation.
875374Sbp *
975374Sbp * This code is distributed in the hope that it will be useful, but WITHOUT
1075374Sbp * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1175374Sbp * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
1275374Sbp * version 2 for more details (a copy is included in the LICENSE file that
1375374Sbp * accompanied this code).
1475374Sbp *
1575374Sbp * You should have received a copy of the GNU General Public License version
1675374Sbp * 2 along with this work; if not, write to the Free Software Foundation,
1775374Sbp * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
1875374Sbp *
1975374Sbp * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2075374Sbp * or visit www.oracle.com if you need additional information or have any
2175374Sbp * questions.
2275374Sbp */
2375374Sbp
2475374Sbpmodule m2 {
2575374Sbp    requires m1;
2675374Sbp    requires java.logging;
2775374Sbp    exports p2.test;
2875374Sbp}
2975374Sbp