< prev index next >

test/tools/jlink/plugins/ExcludeFilesPluginTest.java

Print this page




  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @summary Test exclude files plugin
  27  * @author Jean-Francois Denise
  28  * @modules jdk.jlink/jdk.tools.jlink.internal
  29  *          jdk.jlink/jdk.tools.jlink.internal.plugins

  30  * @run main ExcludeFilesPluginTest
  31  */
  32 
  33 import java.io.ByteArrayInputStream;
  34 import java.io.File;
  35 import java.nio.file.Files;
  36 import java.util.HashMap;
  37 import java.util.Map;
  38 import jdk.tools.jlink.internal.ResourcePoolManager;
  39 
  40 import jdk.tools.jlink.internal.plugins.ExcludeFilesPlugin;
  41 import jdk.tools.jlink.plugin.ResourcePool;
  42 import jdk.tools.jlink.plugin.ResourcePoolEntry;
  43 
  44 public class ExcludeFilesPluginTest {
  45     public static void main(String[] args) throws Exception {
  46         new ExcludeFilesPluginTest().test();
  47     }
  48 
  49     public void test() throws Exception {




  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @summary Test exclude files plugin
  27  * @author Jean-Francois Denise
  28  * @modules jdk.jlink/jdk.tools.jlink.internal
  29  *          jdk.jlink/jdk.tools.jlink.internal.plugins
  30  *          jdk.jlink/jdk.tools.jlink.plugin
  31  * @run main ExcludeFilesPluginTest
  32  */
  33 
  34 import java.io.ByteArrayInputStream;
  35 import java.io.File;
  36 import java.nio.file.Files;
  37 import java.util.HashMap;
  38 import java.util.Map;
  39 import jdk.tools.jlink.internal.ResourcePoolManager;
  40 
  41 import jdk.tools.jlink.internal.plugins.ExcludeFilesPlugin;
  42 import jdk.tools.jlink.plugin.ResourcePool;
  43 import jdk.tools.jlink.plugin.ResourcePoolEntry;
  44 
  45 public class ExcludeFilesPluginTest {
  46     public static void main(String[] args) throws Exception {
  47         new ExcludeFilesPluginTest().test();
  48     }
  49 
  50     public void test() throws Exception {


< prev index next >