mirror of
https://github.com/kaboomserver/server.git
synced 2024-12-22 07:35:08 +00:00
Rename repo, cleanup
This commit is contained in:
parent
1c6d6a4f81
commit
11d0c72c18
84 changed files with 3 additions and 4398 deletions
|
@ -1,3 +1,3 @@
|
|||
# base-files
|
||||
# server
|
||||
|
||||
Base files for the Kaboom server
|
||||
Server files for the Kaboom server
|
||||
|
|
Binary file not shown.
13
generate_jre
13
generate_jre
|
@ -1,13 +0,0 @@
|
|||
#!/bin/sh
|
||||
# This script is used as a reference to generate a stripped-down OpenJ9 JRE for the server
|
||||
rm -rf java/
|
||||
wget https://github.com/AdoptOpenJDK/openjdk11-binaries/releases/download/jdk-11.0.5%2B10_openj9-0.17.0/OpenJDK11U-jdk_x64_linux_openj9_11.0.5_10_openj9-0.17.0.tar.gz
|
||||
tar -zxvf OpenJDK*
|
||||
rm OpenJDK*
|
||||
mv jdk* jdk/
|
||||
jdk/bin/jlink --no-header-files --no-man-pages --compress=2 --strip-debug \
|
||||
--exclude-files=**java_*.properties,**jrunscript,**keytool,**legal/** \
|
||||
--add-modules \
|
||||
java.desktop,java.logging,java.management,java.naming,java.net.http,java.scripting,java.sql,jdk.crypto.ec,jdk.unsupported,jdk.zipfs,openj9.sharedclasses \
|
||||
--output java
|
||||
rm -rf jdk/
|
BIN
java/bin/java
BIN
java/bin/java
Binary file not shown.
|
@ -1,63 +0,0 @@
|
|||
############################################################
|
||||
# Default Logging Configuration File
|
||||
#
|
||||
# You can use a different file by specifying a filename
|
||||
# with the java.util.logging.config.file system property.
|
||||
# For example java -Djava.util.logging.config.file=myfile
|
||||
############################################################
|
||||
|
||||
############################################################
|
||||
# Global properties
|
||||
############################################################
|
||||
|
||||
# "handlers" specifies a comma separated list of log Handler
|
||||
# classes. These handlers will be installed during VM startup.
|
||||
# Note that these classes must be on the system classpath.
|
||||
# By default we only configure a ConsoleHandler, which will only
|
||||
# show messages at the INFO and above levels.
|
||||
handlers= java.util.logging.ConsoleHandler
|
||||
|
||||
# To also add the FileHandler, use the following line instead.
|
||||
#handlers= java.util.logging.FileHandler, java.util.logging.ConsoleHandler
|
||||
|
||||
# Default global logging level.
|
||||
# This specifies which kinds of events are logged across
|
||||
# all loggers. For any given facility this global level
|
||||
# can be overriden by a facility specific level
|
||||
# Note that the ConsoleHandler also has a separate level
|
||||
# setting to limit messages printed to the console.
|
||||
.level= INFO
|
||||
|
||||
############################################################
|
||||
# Handler specific properties.
|
||||
# Describes specific configuration info for Handlers.
|
||||
############################################################
|
||||
|
||||
# default file output is in user's home directory.
|
||||
java.util.logging.FileHandler.pattern = %h/java%u.log
|
||||
java.util.logging.FileHandler.limit = 50000
|
||||
java.util.logging.FileHandler.count = 1
|
||||
# Default number of locks FileHandler can obtain synchronously.
|
||||
# This specifies maximum number of attempts to obtain lock file by FileHandler
|
||||
# implemented by incrementing the unique field %u as per FileHandler API documentation.
|
||||
java.util.logging.FileHandler.maxLocks = 100
|
||||
java.util.logging.FileHandler.formatter = java.util.logging.XMLFormatter
|
||||
|
||||
# Limit the message that are printed on the console to INFO and above.
|
||||
java.util.logging.ConsoleHandler.level = INFO
|
||||
java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter
|
||||
|
||||
# Example to customize the SimpleFormatter output format
|
||||
# to print one-line log message like this:
|
||||
# <level>: <log message> [<date/time>]
|
||||
#
|
||||
# java.util.logging.SimpleFormatter.format=%4$s: %5$s [%1$tc]%n
|
||||
|
||||
############################################################
|
||||
# Facility specific properties.
|
||||
# Provides extra control for each logger.
|
||||
############################################################
|
||||
|
||||
# For example, set the com.xyz.foo logger to only log SEVERE
|
||||
# messages:
|
||||
com.xyz.foo.level = SEVERE
|
|
@ -1,121 +0,0 @@
|
|||
############################################################
|
||||
# Default Networking Configuration File
|
||||
#
|
||||
# This file may contain default values for the networking system properties.
|
||||
# These values are only used when the system properties are not specified
|
||||
# on the command line or set programmatically.
|
||||
# For now, only the various proxy settings can be configured here.
|
||||
############################################################
|
||||
|
||||
# Whether or not the DefaultProxySelector will default to System Proxy
|
||||
# settings when they do exist.
|
||||
# Set it to 'true' to enable this feature and check for platform
|
||||
# specific proxy settings
|
||||
# Note that the system properties that do explicitly set proxies
|
||||
# (like http.proxyHost) do take precedence over the system settings
|
||||
# even if java.net.useSystemProxies is set to true.
|
||||
|
||||
java.net.useSystemProxies=false
|
||||
|
||||
#------------------------------------------------------------------------
|
||||
# Proxy configuration for the various protocol handlers.
|
||||
# DO NOT uncomment these lines if you have set java.net.useSystemProxies
|
||||
# to true as the protocol specific properties will take precedence over
|
||||
# system settings.
|
||||
#------------------------------------------------------------------------
|
||||
|
||||
# HTTP Proxy settings. proxyHost is the name of the proxy server
|
||||
# (e.g. proxy.mydomain.com), proxyPort is the port number to use (default
|
||||
# value is 80) and nonProxyHosts is a '|' separated list of hostnames which
|
||||
# should be accessed directly, ignoring the proxy server (default value is
|
||||
# localhost & 127.0.0.1).
|
||||
#
|
||||
# http.proxyHost=
|
||||
# http.proxyPort=80
|
||||
http.nonProxyHosts=localhost|127.*|[::1]
|
||||
#
|
||||
# HTTPS Proxy Settings. proxyHost is the name of the proxy server
|
||||
# (e.g. proxy.mydomain.com), proxyPort is the port number to use (default
|
||||
# value is 443). The HTTPS protocol handlers uses the http nonProxyHosts list.
|
||||
#
|
||||
# https.proxyHost=
|
||||
# https.proxyPort=443
|
||||
#
|
||||
# FTP Proxy settings. proxyHost is the name of the proxy server
|
||||
# (e.g. proxy.mydomain.com), proxyPort is the port number to use (default
|
||||
# value is 80) and nonProxyHosts is a '|' separated list of hostnames which
|
||||
# should be accessed directly, ignoring the proxy server (default value is
|
||||
# localhost & 127.0.0.1).
|
||||
#
|
||||
# ftp.proxyHost=
|
||||
# ftp.proxyPort=80
|
||||
ftp.nonProxyHosts=localhost|127.*|[::1]
|
||||
#
|
||||
# Gopher Proxy settings. proxyHost is the name of the proxy server
|
||||
# (e.g. proxy.mydomain.com), proxyPort is the port number to use (default
|
||||
# value is 80)
|
||||
#
|
||||
# gopher.proxyHost=
|
||||
# gopher.proxyPort=80
|
||||
#
|
||||
# Socks proxy settings. socksProxyHost is the name of the proxy server
|
||||
# (e.g. socks.domain.com), socksProxyPort is the port number to use
|
||||
# (default value is 1080)
|
||||
#
|
||||
# socksProxyHost=
|
||||
# socksProxyPort=1080
|
||||
#
|
||||
# HTTP Keep Alive settings. remainingData is the maximum amount of data
|
||||
# in kilobytes that will be cleaned off the underlying socket so that it
|
||||
# can be reused (default value is 512K), queuedConnections is the maximum
|
||||
# number of Keep Alive connections to be on the queue for clean up (default
|
||||
# value is 10).
|
||||
# http.KeepAlive.remainingData=512
|
||||
# http.KeepAlive.queuedConnections=10
|
||||
|
||||
# Authentication Scheme restrictions for HTTP and HTTPS.
|
||||
#
|
||||
# In some environments certain authentication schemes may be undesirable
|
||||
# when proxying HTTP or HTTPS. For example, "Basic" results in effectively the
|
||||
# cleartext transmission of the user's password over the physical network.
|
||||
# This section describes the mechanism for disabling authentication schemes
|
||||
# based on the scheme name. Disabled schemes will be treated as if they are not
|
||||
# supported by the implementation.
|
||||
#
|
||||
# The 'jdk.http.auth.tunneling.disabledSchemes' property lists the authentication
|
||||
# schemes that will be disabled when tunneling HTTPS over a proxy, HTTP CONNECT.
|
||||
# The 'jdk.http.auth.proxying.disabledSchemes' property lists the authentication
|
||||
# schemes that will be disabled when proxying HTTP.
|
||||
#
|
||||
# In both cases the property is a comma-separated list of, case-insensitive,
|
||||
# authentication scheme names, as defined by their relevant RFCs. An
|
||||
# implementation may, but is not required to, support common schemes whose names
|
||||
# include: 'Basic', 'Digest', 'NTLM', 'Kerberos', 'Negotiate'. A scheme that
|
||||
# is not known, or not supported, by the implementation is ignored.
|
||||
#
|
||||
# Note: This property is currently used by the JDK Reference implementation. It
|
||||
# is not guaranteed to be examined and used by other implementations.
|
||||
#
|
||||
#jdk.http.auth.proxying.disabledSchemes=
|
||||
jdk.http.auth.tunneling.disabledSchemes=Basic
|
||||
|
||||
#
|
||||
# Transparent NTLM HTTP authentication mode on Windows. Transparent authentication
|
||||
# can be used for the NTLM scheme, where the security credentials based on the
|
||||
# currently logged in user's name and password can be obtained directly from the
|
||||
# operating system, without prompting the user. This property has three possible
|
||||
# values which regulate the behavior as shown below. Other unrecognized values
|
||||
# are handled the same as 'disabled'. Note, that NTLM is not considered to be a
|
||||
# strongly secure authentication scheme and care should be taken before enabling
|
||||
# this mechanism.
|
||||
#
|
||||
# Transparent authentication never used.
|
||||
#jdk.http.ntlm.transparentAuth=disabled
|
||||
#
|
||||
# Enabled for all hosts.
|
||||
#jdk.http.ntlm.transparentAuth=allHosts
|
||||
#
|
||||
# Enabled for hosts that are trusted in Windows Internet settings
|
||||
#jdk.http.ntlm.transparentAuth=trustedHosts
|
||||
#
|
||||
jdk.http.ntlm.transparentAuth=disabled
|
|
@ -1,44 +0,0 @@
|
|||
//
|
||||
// This system policy file grants a set of default permissions to all domains
|
||||
// and can be configured to grant additional permissions to modules and other
|
||||
// code sources. The code source URL scheme for modules linked into a
|
||||
// run-time image is "jrt".
|
||||
//
|
||||
// For example, to grant permission to read the "foo" property to the module
|
||||
// "com.greetings", the grant entry is:
|
||||
//
|
||||
// grant codeBase "jrt:/com.greetings" {
|
||||
// permission java.util.PropertyPermission "foo", "read";
|
||||
// };
|
||||
//
|
||||
|
||||
// default permissions granted to all domains
|
||||
grant {
|
||||
// allows anyone to listen on dynamic ports
|
||||
permission java.net.SocketPermission "localhost:0", "listen";
|
||||
|
||||
// "standard" properies that can be read by anyone
|
||||
permission java.util.PropertyPermission "java.version", "read";
|
||||
permission java.util.PropertyPermission "java.vendor", "read";
|
||||
permission java.util.PropertyPermission "java.vendor.url", "read";
|
||||
permission java.util.PropertyPermission "java.class.version", "read";
|
||||
permission java.util.PropertyPermission "os.name", "read";
|
||||
permission java.util.PropertyPermission "os.version", "read";
|
||||
permission java.util.PropertyPermission "os.arch", "read";
|
||||
permission java.util.PropertyPermission "file.separator", "read";
|
||||
permission java.util.PropertyPermission "path.separator", "read";
|
||||
permission java.util.PropertyPermission "line.separator", "read";
|
||||
permission java.util.PropertyPermission
|
||||
"java.specification.version", "read";
|
||||
permission java.util.PropertyPermission "java.specification.vendor", "read";
|
||||
permission java.util.PropertyPermission "java.specification.name", "read";
|
||||
permission java.util.PropertyPermission
|
||||
"java.vm.specification.version", "read";
|
||||
permission java.util.PropertyPermission
|
||||
"java.vm.specification.vendor", "read";
|
||||
permission java.util.PropertyPermission
|
||||
"java.vm.specification.name", "read";
|
||||
permission java.util.PropertyPermission "java.vm.version", "read";
|
||||
permission java.util.PropertyPermission "java.vm.vendor", "read";
|
||||
permission java.util.PropertyPermission "java.vm.name", "read";
|
||||
};
|
File diff suppressed because it is too large
Load diff
|
@ -1,54 +0,0 @@
|
|||
|
||||
Java(TM) Cryptography Extension Policy Files
|
||||
for the Java(TM) Platform, Standard Edition Runtime Environment
|
||||
|
||||
README
|
||||
------------------------------------------------------------------------
|
||||
|
||||
Import and export control rules on cryptographic software vary from
|
||||
country to country. The Java Cryptography Extension (JCE) architecture
|
||||
allows flexible cryptographic key strength to be configured via the
|
||||
jurisdiction policy files which are referenced by the "crypto.policy"
|
||||
security property in the <java-home>/conf/security/java.security file.
|
||||
|
||||
By default, Java provides two different sets of cryptographic policy
|
||||
files:
|
||||
|
||||
unlimited: These policy files contain no restrictions on cryptographic
|
||||
strengths or algorithms
|
||||
|
||||
limited: These policy files contain more restricted cryptographic
|
||||
strengths
|
||||
|
||||
These files reside in <java-home>/conf/security/policy in the "unlimited"
|
||||
or "limited" subdirectories respectively.
|
||||
|
||||
Each subdirectory contains a complete policy configuration,
|
||||
and subdirectories can be added/edited/removed to reflect your
|
||||
import or export control product requirements.
|
||||
|
||||
Within a subdirectory, the effective policy is the combined minimum
|
||||
permissions of the grant statements in the file(s) matching the filename
|
||||
pattern "default_*.policy". At least one grant is required. For example:
|
||||
|
||||
limited = Export (all) + Import (limited) = Limited
|
||||
unlimited = Export (all) + Import (all) = Unlimited
|
||||
|
||||
The effective exemption policy is the combined minimum permissions
|
||||
of the grant statements in the file(s) matching the filename pattern
|
||||
"exempt_*.policy". Exemption grants are optional. For example:
|
||||
|
||||
limited = grants exemption permissions, by which the
|
||||
effective policy can be circumvented.
|
||||
e.g. KeyRecovery/KeyEscrow/KeyWeakening.
|
||||
|
||||
Please see the Java Cryptography Architecture (JCA) documentation for
|
||||
additional information on these files and formats.
|
||||
|
||||
YOU ARE ADVISED TO CONSULT YOUR EXPORT/IMPORT CONTROL COUNSEL OR ATTORNEY
|
||||
TO DETERMINE THE EXACT REQUIREMENTS.
|
||||
|
||||
Please note that the JCE for Java SE, including the JCE framework,
|
||||
cryptographic policy files, and standard JCE providers provided with
|
||||
the Java SE, have been reviewed and approved for export as mass market
|
||||
encryption item by the US Bureau of Industry and Security.
|
|
@ -1,6 +0,0 @@
|
|||
// Default US Export policy file.
|
||||
|
||||
grant {
|
||||
// There is no restriction to any algorithms.
|
||||
permission javax.crypto.CryptoAllPermission;
|
||||
};
|
|
@ -1,14 +0,0 @@
|
|||
// Some countries have import limits on crypto strength. This policy file
|
||||
// is worldwide importable.
|
||||
|
||||
grant {
|
||||
permission javax.crypto.CryptoPermission "DES", 64;
|
||||
permission javax.crypto.CryptoPermission "DESede", *;
|
||||
permission javax.crypto.CryptoPermission "RC2", 128,
|
||||
"javax.crypto.spec.RC2ParameterSpec", 128;
|
||||
permission javax.crypto.CryptoPermission "RC4", 128;
|
||||
permission javax.crypto.CryptoPermission "RC5", 128,
|
||||
"javax.crypto.spec.RC5ParameterSpec", *, 12, *;
|
||||
permission javax.crypto.CryptoPermission "RSA", *;
|
||||
permission javax.crypto.CryptoPermission *, 128;
|
||||
};
|
|
@ -1,13 +0,0 @@
|
|||
// Some countries have import limits on crypto strength, but may allow for
|
||||
// these exemptions if the exemption mechanism is used.
|
||||
|
||||
grant {
|
||||
// There is no restriction to any algorithms if KeyRecovery is enforced.
|
||||
permission javax.crypto.CryptoPermission *, "KeyRecovery";
|
||||
|
||||
// There is no restriction to any algorithms if KeyEscrow is enforced.
|
||||
permission javax.crypto.CryptoPermission *, "KeyEscrow";
|
||||
|
||||
// There is no restriction to any algorithms if KeyWeakening is enforced.
|
||||
permission javax.crypto.CryptoPermission *, "KeyWeakening";
|
||||
};
|
|
@ -1,6 +0,0 @@
|
|||
// Default US Export policy file.
|
||||
|
||||
grant {
|
||||
// There is no restriction to any algorithms.
|
||||
permission javax.crypto.CryptoAllPermission;
|
||||
};
|
|
@ -1,6 +0,0 @@
|
|||
// Country-specific policy file for countries with no limits on crypto strength.
|
||||
|
||||
grant {
|
||||
// There is no restriction to any algorithms.
|
||||
permission javax.crypto.CryptoAllPermission;
|
||||
};
|
|
@ -1,39 +0,0 @@
|
|||
############################################################
|
||||
# Sound Configuration File
|
||||
############################################################
|
||||
#
|
||||
# This properties file is used to specify default service
|
||||
# providers for javax.sound.midi.MidiSystem and
|
||||
# javax.sound.sampled.AudioSystem.
|
||||
#
|
||||
# The following keys are recognized by MidiSystem methods:
|
||||
#
|
||||
# javax.sound.midi.Receiver
|
||||
# javax.sound.midi.Sequencer
|
||||
# javax.sound.midi.Synthesizer
|
||||
# javax.sound.midi.Transmitter
|
||||
#
|
||||
# The following keys are recognized by AudioSystem methods:
|
||||
#
|
||||
# javax.sound.sampled.Clip
|
||||
# javax.sound.sampled.Port
|
||||
# javax.sound.sampled.SourceDataLine
|
||||
# javax.sound.sampled.TargetDataLine
|
||||
#
|
||||
# The values specify the full class name of the service
|
||||
# provider, or the device name.
|
||||
#
|
||||
# See the class descriptions for details.
|
||||
#
|
||||
# Example 1:
|
||||
# Use MyDeviceProvider as default for SourceDataLines:
|
||||
# javax.sound.sampled.SourceDataLine=com.xyz.MyDeviceProvider
|
||||
#
|
||||
# Example 2:
|
||||
# Specify the default Synthesizer by its name "InternalSynth".
|
||||
# javax.sound.midi.Synthesizer=#InternalSynth
|
||||
#
|
||||
# Example 3:
|
||||
# Specify the default Receiver by provider and name:
|
||||
# javax.sound.midi.Receiver=com.sun.media.sound.MidiProvider#SunMIDI1
|
||||
#
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load diff
BIN
java/lib/jexec
BIN
java/lib/jexec
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,2 +0,0 @@
|
|||
-server KNOWN
|
||||
-client IGNORE
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
java/lib/modules
BIN
java/lib/modules
Binary file not shown.
|
@ -1,263 +0,0 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
|
||||
<title>About</title>
|
||||
</head>
|
||||
<body lang="EN-US">
|
||||
<h2>About This Content</h2>
|
||||
|
||||
<p><em>January 24, 2018</em></p>
|
||||
<h3>License</h3>
|
||||
|
||||
This program and the accompanying materials are made available under the terms of the Eclipse Public License 2 which accompanies this distribution and is available at https://www.eclipse.org/legal/epl-2.0/ or the Apache License, Version 2.0 which accompanies this distribution and is available at https://www.apache.org/licenses/LICENSE-2.0.
|
||||
<p>
|
||||
This Source Code may also be made available under the following Secondary Licenses when the conditions for such availability set forth in the Eclipse Public License, v. 2.0 are satisfied: GNU General Public License, version 2 with the GNU Classpath Exception [1] and GNU General Public License, version 2 with the OpenJDK Assembly Exception [2].
|
||||
<p>
|
||||
[1] https://www.gnu.org/software/classpath/license.html
|
||||
<BR>
|
||||
[2] http://openjdk.java.net/legal/assembly-exception.html
|
||||
<BR>
|
||||
<BR>
|
||||
SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 OR LicenseRef-GPL-2.0 WITH Assembly-exception
|
||||
|
||||
<p>If you did not receive this Content directly from the Eclipse Foundation, the Content is
|
||||
being redistributed by another party ("Redistributor") and different terms and conditions may
|
||||
apply to your use of any object code in the Content. Check the Redistributor's license that was
|
||||
provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise
|
||||
indicated below, the terms and conditions of the EPL still apply to any source code in the Content
|
||||
and such source code may be obtained at <a href="https://www.eclipse.org/">https://www.eclipse.org</a>.</p>
|
||||
|
||||
<h3>Third Party Content</h3>
|
||||
<p>The Content includes items that have been sourced from third parties as set out below. If you
|
||||
did not receive this Content directly from the Eclipse Foundation, the following is provided
|
||||
for informational purposes only, and you should look to the Redistributor's license for
|
||||
terms and conditions of use.</p>
|
||||
|
||||
<h4>Eclipse OMR</h4>
|
||||
<p>Copyright (c) 2017, 2018 IBM Corp. and others</p>
|
||||
<p>
|
||||
This program and the accompanying materials are made available under the terms of the Eclipse Public License 2 which accompanies this distribution and is available at https://www.eclipse.org/legal/epl-2.0/ or the Apache License, Version 2.0 which accompanies this distribution and is available at https://www.apache.org/licenses/LICENSE-2.0.
|
||||
<p>
|
||||
This Source Code may also be made available under the following Secondary Licenses when the conditions for such availability set forth in the Eclipse Public License, v. 2.0 are satisfied: GNU General Public License, version 2 with the GNU Classpath Exception [1] and GNU General Public License, version 2 with the OpenJDK Assembly Exception [2].
|
||||
<p>
|
||||
[1] https://www.gnu.org/software/classpath/license.html
|
||||
<BR>
|
||||
[2] http://openjdk.java.net/legal/assembly-exception.html
|
||||
<BR>
|
||||
<BR>
|
||||
SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 OR LicenseRef-GPL-2.0 WITH Assembly-exception
|
||||
<p>
|
||||
Subject to the following notices:<br />
|
||||
1. Google Test is provided under the Google Test license below.<br />
|
||||
2. Pugixml is provided under the pugixml license below.<br />
|
||||
3. config.sub and config.guess are provided under the GPL v3.0 with the Autoconf exception (see below).<br />
|
||||
<p>
|
||||
You may distribute this program and materials under either the
|
||||
Eclipse Public License 2 or the Apache V2.0 License as long as you pass through
|
||||
the exceptions noted above.
|
||||
<p>
|
||||
|
||||
<h5>Google C++ Testing Framework 1.7.0</h5>
|
||||
<p>Copyright 2008, Google Inc. <br>All rights reserved.</p>
|
||||
<p>
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are
|
||||
met:
|
||||
<p class="list">* Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.</p>
|
||||
<p class="list">* Redistributions in binary form must reproduce the above
|
||||
copyright notice, this list of conditions and the following disclaimer
|
||||
in the documentation and/or other materials provided with the
|
||||
distribution.</p>
|
||||
<p class="list">* Neither the name of Google Inc. nor the names of its
|
||||
contributors may be used to endorse or promote products derived from
|
||||
this software without specific prior written permission.</p>
|
||||
<p>
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
</p>
|
||||
The source is available at <a href="https://github.com/google/googletest">https://github.com/google/googletest</a>.
|
||||
</p>
|
||||
|
||||
<h5>pugixml 1.5</h5>
|
||||
<p>Copyright (c) 2006-2015 Arseny Kapoulkine</p>
|
||||
<p>
|
||||
Permission is hereby granted, free of charge, to any person obtaining a
|
||||
copy of this software and associated documentation files (the "Software"),
|
||||
to deal in the Software without restriction, including without limitation
|
||||
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
and/or sell copies of the Software, and to permit persons to whom the
|
||||
Software is furnished to do so, subject to the following conditions:</p>
|
||||
<p class="list">
|
||||
The above copyright notice and this permission notice shall be included
|
||||
in all copies or substantial portions of the Software.</p>
|
||||
<p>
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
||||
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
</p>
|
||||
<p>
|
||||
The source is available at <a href="http://pugixml.org/2014/11/27/pugixml-1.5-release.html">http://pugixml.org/2014/11/27/pugixml-1.5-release.html</a>.
|
||||
</p>
|
||||
|
||||
<h5>config.sub and config.guess</h5>
|
||||
<p>
|
||||
This file is free software; you can redistribute it and/or modify it
|
||||
under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 3 of the License, or
|
||||
(at your option) any later version.</p>
|
||||
<p>
|
||||
This program is distributed in the hope that it will be useful, but
|
||||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
General Public License for more details.</p>
|
||||
<p>
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, see <a href="http://www.gnu.org/licenses/">http://www.gnu.org/licenses/</a></p>
|
||||
<p>
|
||||
As a special exception to the GNU General Public License, if you
|
||||
distribute this file as part of a program that contains a
|
||||
configuration script generated by Autoconf, you may include it under
|
||||
the same distribution terms that you use for the rest of that
|
||||
program. This Exception is an additional permission under section 7
|
||||
of the GNU General Public License, version 3 ("GPLv3").</p>
|
||||
<p>
|
||||
The source for config.guess is available at <a href="http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD">http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD</a>.
|
||||
<br>
|
||||
The source for config.guess is available at <a href="http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD">http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD</a>.
|
||||
</p>
|
||||
|
||||
<h4>Unicode 6.0, Unicode 8.0</h4>
|
||||
UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE
|
||||
<p>
|
||||
Unicode Data Files include all data files under the directories http://www.unicode.org/Public/, http://www.unicode.org/reports/, and http://www.unicode.org/cldr/data/. Unicode Data Files do not include PDF online code charts under the directory http://www.unicode.org/Public/. Software includes any source code published in the Unicode Standard or under the directories http://www.unicode.org/Public/, http://www.unicode.org/reports/, and http://www.unicode.org/cldr/data/.
|
||||
<p>
|
||||
NOTICE TO USER: Carefully read the following legal agreement. BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.
|
||||
<p>
|
||||
COPYRIGHT AND PERMISSION NOTICE
|
||||
<p>
|
||||
Copyright © 1991-2011 Unicode, Inc. All rights reserved. Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
<p>
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of the Unicode data files and any associated documentation (the "Data Files") or Unicode software and any associated documentation (the "Software") to deal in the Data Files or Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, and/or sell copies of the Data Files or Software, and to permit persons to whom the Data Files or Software are furnished to do so, provided that (a) the above copyright notice(s) and this permission notice appear with all copies of the Data Files or Software, (b) both the above copyright notice(s) and this permission notice appear in associated documentation, and (c) there is clear notice in each modified Data File or in the Software as well as in the documentation associated with the Data File(s) or Software that the data or software has been modified.
|
||||
<p>
|
||||
THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR SOFTWARE.
|
||||
<p>
|
||||
Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in these Data Files or Software without prior written authorization of the copyright holder.
|
||||
<p>
|
||||
Unicode and the Unicode logo are trademarks of Unicode, Inc. in the United States and other countries. All third party trademarks referenced herein are the property of their respective owners.
|
||||
<p>
|
||||
<h4>MurmurHash3</h4>
|
||||
MurmurHash3 was written by Austin Appleby, and is placed in the public domain. The author hereby disclaims copyright to this source code.
|
||||
<p>
|
||||
Note - The x86 and x64 versions do _not_ produce the same results, as the algorithms are optimized for their respective platforms. You can still compile and run any of them on any platform, but your performance with the non-native version will be less than optimal
|
||||
<p>
|
||||
<h4>libFFI 3.0.13</h4>
|
||||
libffi - Copyright (c) 1996-2014 Anthony Green, Red Hat, Inc and others.
|
||||
See source files for details.
|
||||
<p>
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
``Software''), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
<p>
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
<p>
|
||||
THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
||||
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
<p>
|
||||
<h4>zlib 1.2.3</h4>
|
||||
(C) 1995-2012 Jean-loup Gailly and Mark Adler
|
||||
<p>
|
||||
This software is provided 'as-is', without any express or implied
|
||||
warranty. In no event will the authors be held liable for any damages
|
||||
arising from the use of this software.
|
||||
<p>
|
||||
Permission is granted to anyone to use this software for any purpose,
|
||||
including commercial applications, and to alter it and redistribute it
|
||||
freely, subject to the following restrictions:
|
||||
<BR>
|
||||
1. The origin of this software must not be misrepresented; you must not
|
||||
claim that you wrote the original software. If you use this software
|
||||
in a product, an acknowledgment in the product documentation would be
|
||||
appreciated but is not required.
|
||||
<BR>
|
||||
2. Altered source versions must be plainly marked as such, and must not be
|
||||
misrepresented as being the original software.
|
||||
<BR>
|
||||
3. This notice may not be removed or altered from any source distribution.
|
||||
<p>
|
||||
Jean-loup Gailly Mark Adler
|
||||
jloup@gzip.org madler@alumni.caltech.edu
|
||||
<p>
|
||||
<h4>CuTest</h4>
|
||||
Copyright (c) 2003 Asim Jalis
|
||||
<p>
|
||||
This software is provided 'as-is', without any express or implied
|
||||
warranty. In no event will the authors be held liable for any damages
|
||||
arising from the use of this software.
|
||||
<p>
|
||||
Permission is granted to anyone to use this software for any purpose,
|
||||
including commercial applications, and to alter it and redistribute it
|
||||
freely, subject to the following restrictions:
|
||||
<p>
|
||||
1. The origin of this software must not be misrepresented; you must not
|
||||
claim that you wrote the original software. If you use this software in
|
||||
a product, an acknowledgment in the product documentation would be
|
||||
appreciated but is not required.
|
||||
<p>
|
||||
2. Altered source versions must be plainly marked as such, and must not
|
||||
be misrepresented as being the original software.
|
||||
<p>
|
||||
3. This notice may not be removed or altered from any source
|
||||
distribution.
|
||||
<h4>
|
||||
musl 1.1.4
|
||||
</h4>
|
||||
c<p>
|
||||
Copyright © 2005-2014 Rich Felker, et al.
|
||||
</p><p>
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
"Software"), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
</p><p>
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
</p><p>
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
||||
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
|
@ -1 +0,0 @@
|
|||
"-Xlockword:mode=default,noLockword=java/lang/String,noLockword=java/util/MapEntry,noLockword=java/util/HashMap$Entry,noLockword=org/apache/harmony/luni/util/ModifiedMap$Entry,noLockword=java/util/Hashtable$Entry,noLockword=java/lang/invoke/MethodType,noLockword=java/lang/invoke/MethodHandle,noLockword=java/lang/invoke/CollectHandle,noLockword=java/lang/invoke/ConstructorHandle,noLockword=java/lang/invoke/ConvertHandle,noLockword=java/lang/invoke/ArgumentConversionHandle,noLockword=java/lang/invoke/AsTypeHandle,noLockword=java/lang/invoke/ExplicitCastHandle,noLockword=java/lang/invoke/FilterReturnHandle,noLockword=java/lang/invoke/DirectHandle,noLockword=java/lang/invoke/ReceiverBoundHandle,noLockword=java/lang/invoke/DynamicInvokerHandle,noLockword=java/lang/invoke/FieldHandle,noLockword=java/lang/invoke/FieldGetterHandle,noLockword=java/lang/invoke/FieldSetterHandle,noLockword=java/lang/invoke/StaticFieldGetterHandle,noLockword=java/lang/invoke/StaticFieldSetterHandle,noLockword=java/lang/invoke/IndirectHandle,noLockword=java/lang/invoke/InterfaceHandle,noLockword=java/lang/invoke/VirtualHandle,noLockword=java/lang/invoke/PrimitiveHandle,noLockword=java/lang/invoke/InvokeExactHandle,noLockword=java/lang/invoke/InvokeGenericHandle,noLockword=java/lang/invoke/VarargsCollectorHandle,noLockword=java/lang/invoke/ThunkTuple"
|
|
@ -1,119 +0,0 @@
|
|||
#
|
||||
#
|
||||
# Copyright (c) 1996, 2000, Oracle and/or its affiliates. All rights reserved.
|
||||
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
#
|
||||
# This code is free software; you can redistribute it and/or modify it
|
||||
# under the terms of the GNU General Public License version 2 only, as
|
||||
# published by the Free Software Foundation. Oracle designates this
|
||||
# particular file as subject to the "Classpath" exception as provided
|
||||
# by Oracle in the LICENSE file that accompanied this code.
|
||||
#
|
||||
# This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
# version 2 for more details (a copy is included in the LICENSE file that
|
||||
# accompanied this code).
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License version
|
||||
# 2 along with this work; if not, write to the Free Software Foundation,
|
||||
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
#
|
||||
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
# or visit www.oracle.com if you need additional information or have any
|
||||
# questions.
|
||||
#
|
||||
|
||||
#
|
||||
# Japanese PostScript printer property file
|
||||
#
|
||||
font.num=16
|
||||
#
|
||||
serif=serif
|
||||
timesroman=serif
|
||||
sansserif=sansserif
|
||||
helvetica=sansserif
|
||||
monospaced=monospaced
|
||||
courier=monospaced
|
||||
dialog=sansserif
|
||||
dialoginput=monospaced
|
||||
#
|
||||
serif.latin1.plain=Times-Roman
|
||||
serif.latin1.italic=Times-Italic
|
||||
serif.latin1.bolditalic=Times-BoldItalic
|
||||
serif.latin1.bold=Times-Bold
|
||||
#
|
||||
sansserif.latin1.plain=Helvetica
|
||||
sansserif.latin1.italic=Helvetica-Oblique
|
||||
sansserif.latin1.bolditalic=Helvetica-BoldOblique
|
||||
sansserif.latin1.bold=Helvetica-Bold
|
||||
#
|
||||
monospaced.latin1.plain=Courier
|
||||
monospaced.latin1.italic=Courier-Oblique
|
||||
monospaced.latin1.bolditalic=Courier-BoldOblique
|
||||
monospaced.latin1.bold=Courier-Bold
|
||||
#
|
||||
serif.x11jis0208.plain=Ryumin-Light-H
|
||||
serif.x11jis0208.italic=Ryumin-Light-H
|
||||
serif.x11jis0208.bolditalic=Ryumin-Light-H
|
||||
serif.x11jis0208.bold=Ryumin-Light-H
|
||||
#
|
||||
sansserif.x11jis0208.plain=GothicBBB-Medium-H
|
||||
sansserif.x11jis0208.italic=GothicBBB-Medium-H
|
||||
sansserif.x11jis0208.bolditalic=GothicBBB-Medium-H
|
||||
sansserif.x11jis0208.bold=GothicBBB-Medium-H
|
||||
#
|
||||
monospaced.x11jis0208.plain=GothicBBB-Medium-H
|
||||
monospaced.x11jis0208.italic=GothicBBB-Medium-H
|
||||
monospaced.x11jis0208.bolditalic=GothicBBB-Medium-H
|
||||
monospaced.x11jis0208.bold=GothicBBB-Medium-H
|
||||
#
|
||||
serif.x11jis0201.plain=Ryumin-Light.Hankaku
|
||||
serif.x11jis0201.italic=Ryumin-Light.Hankaku
|
||||
serif.x11jis0201.bolditalic=Ryumin-Light.Hankaku
|
||||
serif.x11jis0201.bold=Ryumin-Light.Hankaku
|
||||
#
|
||||
sansserif.x11jis0201.plain=GothicBBB-Medium.Hankaku
|
||||
sansserif.x11jis0201.italic=GothicBBB-Medium.Hankaku
|
||||
sansserif.x11jis0201.bolditalic=GothicBBB-Medium.Hankaku
|
||||
sansserif.x11jis0201.bold=GothicBBB-Medium.Hankaku
|
||||
#
|
||||
monospaced.x11jis0201.plain=GothicBBB-Medium.Hankaku
|
||||
monospaced.x11jis0201.italic=GothicBBB-Medium.Hankaku
|
||||
monospaced.x11jis0201.bolditalic=GothicBBB-Medium.Hankaku
|
||||
monospaced.x11jis0201.bold=GothicBBB-Medium.Hankaku
|
||||
#
|
||||
Helvetica=0
|
||||
Helvetica-Bold=1
|
||||
Helvetica-Oblique=2
|
||||
Helvetica-BoldOblique=3
|
||||
Times-Roman=4
|
||||
Times-Bold=5
|
||||
Times-Italic=6
|
||||
Times-BoldItalic=7
|
||||
Courier=8
|
||||
Courier-Bold=9
|
||||
Courier-Oblique=10
|
||||
Courier-BoldOblique=11
|
||||
GothicBBB-Medium-H=12
|
||||
Ryumin-Light-H=13
|
||||
GothicBBB-Medium.Hankaku=14
|
||||
Ryumin-Light.Hankaku=15
|
||||
#
|
||||
font.0=Helvetica ISOF
|
||||
font.1=Helvetica-Bold ISOF
|
||||
font.2=Helvetica-Oblique ISOF
|
||||
font.3=Helvetica-BoldOblique ISOF
|
||||
font.4=Times-Roman ISOF
|
||||
font.5=Times-Bold ISOF
|
||||
font.6=Times-Italic ISOF
|
||||
font.7=Times-BoldItalic ISOF
|
||||
font.8=Courier ISOF
|
||||
font.9=Courier-Bold ISOF
|
||||
font.10=Courier-Oblique ISOF
|
||||
font.11=Courier-BoldOblique ISOF
|
||||
font.12=GothicBBB-Medium-H findfont
|
||||
font.13=Ryumin-Light-H findfont
|
||||
font.14=GothicBBB-Medium.Hankaku findfont
|
||||
font.15=Ryumin-Light.Hankaku findfont
|
||||
#
|
|
@ -1,323 +0,0 @@
|
|||
#
|
||||
#
|
||||
# Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
#
|
||||
# This code is free software; you can redistribute it and/or modify it
|
||||
# under the terms of the GNU General Public License version 2 only, as
|
||||
# published by the Free Software Foundation. Oracle designates this
|
||||
# particular file as subject to the "Classpath" exception as provided
|
||||
# by Oracle in the LICENSE file that accompanied this code.
|
||||
#
|
||||
# This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
# version 2 for more details (a copy is included in the LICENSE file that
|
||||
# accompanied this code).
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License version
|
||||
# 2 along with this work; if not, write to the Free Software Foundation,
|
||||
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
#
|
||||
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
# or visit www.oracle.com if you need additional information or have any
|
||||
# questions.
|
||||
|
||||
#
|
||||
# PostScript printer property file for Java 2D printing.
|
||||
#
|
||||
# WARNING: This is an internal implementation file, not a public file.
|
||||
# Any customisation or reliance on the existence of this file and its
|
||||
# contents or syntax is discouraged and unsupported.
|
||||
# It may be incompatibly changed or removed without any notice.
|
||||
#
|
||||
#
|
||||
font.num=35
|
||||
#
|
||||
# Legacy logical font family names and logical font aliases should all
|
||||
# map to the primary logical font names.
|
||||
#
|
||||
serif=serif
|
||||
times=serif
|
||||
timesroman=serif
|
||||
sansserif=sansserif
|
||||
helvetica=sansserif
|
||||
dialog=sansserif
|
||||
dialoginput=monospaced
|
||||
monospaced=monospaced
|
||||
courier=monospaced
|
||||
#
|
||||
# Next, physical fonts which can be safely mapped to standard postscript fonts
|
||||
# These keys generally map to a value which is the same as the key, so
|
||||
# the key/value is just a way to say the font has a mapping.
|
||||
# Sometimes however we map more than one screen font to the same PS font.
|
||||
#
|
||||
avantgarde=avantgarde_book
|
||||
avantgarde_book=avantgarde_book
|
||||
avantgarde_demi=avantgarde_demi
|
||||
avantgarde_book_oblique=avantgarde_book_oblique
|
||||
avantgarde_demi_oblique=avantgarde_demi_oblique
|
||||
#
|
||||
itcavantgarde=avantgarde_book
|
||||
itcavantgarde=avantgarde_book
|
||||
itcavantgarde_demi=avantgarde_demi
|
||||
itcavantgarde_oblique=avantgarde_book_oblique
|
||||
itcavantgarde_demi_oblique=avantgarde_demi_oblique
|
||||
#
|
||||
bookman=bookman_light
|
||||
bookman_light=bookman_light
|
||||
bookman_demi=bookman_demi
|
||||
bookman_light_italic=bookman_light_italic
|
||||
bookman_demi_italic=bookman_demi_italic
|
||||
#
|
||||
# Exclude "helvetica" on its own as that's a legacy name for a logical font
|
||||
helvetica_bold=helvetica_bold
|
||||
helvetica_oblique=helvetica_oblique
|
||||
helvetica_bold_oblique=helvetica_bold_oblique
|
||||
#
|
||||
itcbookman_light=bookman_light
|
||||
itcbookman_demi=bookman_demi
|
||||
itcbookman_light_italic=bookman_light_italic
|
||||
itcbookman_demi_italic=bookman_demi_italic
|
||||
#
|
||||
# Exclude "courier" on its own as that's a legacy name for a logical font
|
||||
courier_bold=courier_bold
|
||||
courier_oblique=courier_oblique
|
||||
courier_bold_oblique=courier_bold_oblique
|
||||
#
|
||||
courier_new=courier
|
||||
courier_new_bold=courier_bold
|
||||
#
|
||||
monotype_century_schoolbook=newcenturyschoolbook
|
||||
monotype_century_schoolbook_bold=newcenturyschoolbook_bold
|
||||
monotype_century_schoolbook_italic=newcenturyschoolbook_italic
|
||||
monotype_century_schoolbook_bold_italic=newcenturyschoolbook_bold_italic
|
||||
#
|
||||
newcenturyschoolbook=newcenturyschoolbook
|
||||
newcenturyschoolbook_bold=newcenturyschoolbook_bold
|
||||
newcenturyschoolbook_italic=newcenturyschoolbook_italic
|
||||
newcenturyschoolbook_bold_italic=newcenturyschoolbook_bold_italic
|
||||
#
|
||||
palatino=palatino
|
||||
palatino_bold=palatino_bold
|
||||
palatino_italic=palatino_italic
|
||||
palatino_bold_italic=palatino_bold_italic
|
||||
#
|
||||
# Exclude "times" on its own as that's a legacy name for a logical font
|
||||
times_bold=times_roman_bold
|
||||
times_italic=times_roman_italic
|
||||
times_bold_italic=times_roman_bold_italic
|
||||
#
|
||||
times_roman=times_roman
|
||||
times_roman_bold=times_roman_bold
|
||||
times_roman_italic=times_roman_italic
|
||||
times_roman_bold_italic=times_roman_bold_italic
|
||||
#
|
||||
times_new_roman=times_roman
|
||||
times_new_roman_bold=times_roman_bold
|
||||
times_new_roman_italic=times_roman_italic
|
||||
times_new_roman_bold_italic=times_roman_bold_italic
|
||||
#
|
||||
zapfchancery_italic=zapfchancery_italic
|
||||
itczapfchancery_italic=zapfchancery_italic
|
||||
#
|
||||
# Next the mapping of the font name + charset + style to Postscript font name
|
||||
# for the logical fonts.
|
||||
#
|
||||
serif.latin1.plain=Times-Roman
|
||||
serif.latin1.bold=Times-Bold
|
||||
serif.latin1.italic=Times-Italic
|
||||
serif.latin1.bolditalic=Times-BoldItalic
|
||||
serif.symbol.plain=Symbol
|
||||
serif.dingbats.plain=ZapfDingbats
|
||||
serif.symbol.bold=Symbol
|
||||
serif.dingbats.bold=ZapfDingbats
|
||||
serif.symbol.italic=Symbol
|
||||
serif.dingbats.italic=ZapfDingbats
|
||||
serif.symbol.bolditalic=Symbol
|
||||
serif.dingbats.bolditalic=ZapfDingbats
|
||||
#
|
||||
sansserif.latin1.plain=Helvetica
|
||||
sansserif.latin1.bold=Helvetica-Bold
|
||||
sansserif.latin1.italic=Helvetica-Oblique
|
||||
sansserif.latin1.bolditalic=Helvetica-BoldOblique
|
||||
sansserif.symbol.plain=Symbol
|
||||
sansserif.dingbats.plain=ZapfDingbats
|
||||
sansserif.symbol.bold=Symbol
|
||||
sansserif.dingbats.bold=ZapfDingbats
|
||||
sansserif.symbol.italic=Symbol
|
||||
sansserif.dingbats.italic=ZapfDingbats
|
||||
sansserif.symbol.bolditalic=Symbol
|
||||
sansserif.dingbats.bolditalic=ZapfDingbats
|
||||
#
|
||||
monospaced.latin1.plain=Courier
|
||||
monospaced.latin1.bold=Courier-Bold
|
||||
monospaced.latin1.italic=Courier-Oblique
|
||||
monospaced.latin1.bolditalic=Courier-BoldOblique
|
||||
monospaced.symbol.plain=Symbol
|
||||
monospaced.dingbats.plain=ZapfDingbats
|
||||
monospaced.symbol.bold=Symbol
|
||||
monospaced.dingbats.bold=ZapfDingbats
|
||||
monospaced.symbol.italic=Symbol
|
||||
monospaced.dingbats.italic=ZapfDingbats
|
||||
monospaced.symbol.bolditalic=Symbol
|
||||
monospaced.dingbats.bolditalic=ZapfDingbats
|
||||
#
|
||||
# Next the mapping of the font name + charset + style to Postscript font name
|
||||
# for the physical fonts. Since these always report style as plain, the
|
||||
# style key is always plain. So we map using the face name to the correct
|
||||
# style for the postscript font. This is possible since the face names can
|
||||
# be replied upon to be different for each style.
|
||||
# However an application may try to create a Font applying a style to an
|
||||
# physical name. We want to map to the correct Postscript font there too
|
||||
# if possible but we do not map cases where the application tries to
|
||||
# augment a style (eg ask for a bold version of a bold font)
|
||||
# Defer to the 2D package to attempt create an artificially styled version
|
||||
#
|
||||
avantgarde_book.latin1.plain=AvantGarde-Book
|
||||
avantgarde_demi.latin1.plain=AvantGarde-Demi
|
||||
avantgarde_book_oblique.latin1.plain=AvantGarde-BookOblique
|
||||
avantgarde_demi_oblique.latin1.plain=AvantGarde-DemiOblique
|
||||
#
|
||||
avantgarde_book.latin1.bold=AvantGarde-Demi
|
||||
avantgarde_book.latin1.italic=AvantGarde-BookOblique
|
||||
avantgarde_book.latin1.bolditalic=AvantGarde-DemiOblique
|
||||
avantgarde_demi.latin1.italic=AvantGarde-DemiOblique
|
||||
avantgarde_book_oblique.latin1.bold=AvantGarde-DemiOblique
|
||||
#
|
||||
bookman_light.latin1.plain=Bookman-Light
|
||||
bookman_demi.latin1.plain=Bookman-Demi
|
||||
bookman_light_italic.latin1.plain=Bookman-LightItalic
|
||||
bookman_demi_italic.latin1.plain=Bookman-DemiItalic
|
||||
#
|
||||
bookman_light.latin1.bold=Bookman-Demi
|
||||
bookman_light.latin1.italic=Bookman-LightItalic
|
||||
bookman_light.latin1.bolditalic=Bookman-DemiItalic
|
||||
bookman_light_bold.latin1.italic=Bookman-DemiItalic
|
||||
bookman_light_italic.latin1.bold=Bookman-DemiItalic
|
||||
#
|
||||
courier.latin1.plain=Courier
|
||||
courier_bold.latin1.plain=Courier-Bold
|
||||
courier_oblique.latin1.plain=Courier-Oblique
|
||||
courier_bold_oblique.latin1.plain=Courier-BoldOblique
|
||||
courier.latin1.bold=Courier-Bold
|
||||
courier.latin1.italic=Courier-Oblique
|
||||
courier.latin1.bolditalic=Courier-BoldOblique
|
||||
courier_bold.latin1.italic=Courier-BoldOblique
|
||||
courier_italic.latin1.bold=Courier-BoldOblique
|
||||
#
|
||||
helvetica_bold.latin1.plain=Helvetica-Bold
|
||||
helvetica_oblique.latin1.plain=Helvetica-Oblique
|
||||
helvetica_bold_oblique.latin1.plain=Helvetica-BoldOblique
|
||||
helvetica.latin1.bold=Helvetica-Bold
|
||||
helvetica.latin1.italic=Helvetica-Oblique
|
||||
helvetica.latin1.bolditalic=Helvetica-BoldOblique
|
||||
helvetica_bold.latin1.italic=Helvetica-BoldOblique
|
||||
helvetica_italic.latin1.bold=Helvetica-BoldOblique
|
||||
#
|
||||
newcenturyschoolbook.latin1.plain=NewCenturySchlbk-Roman
|
||||
newcenturyschoolbook_bold.latin1.plain=NewCenturySchlbk-Bold
|
||||
newcenturyschoolbook_italic.latin1.plain=NewCenturySchlbk-Italic
|
||||
newcenturyschoolbook_bold_italic.latin1.plain=NewCenturySchlbk-BoldItalic
|
||||
newcenturyschoolbook.latin1.bold=NewCenturySchlbk-Bold
|
||||
newcenturyschoolbook.latin1.italic=NewCenturySchlbk-Italic
|
||||
newcenturyschoolbook.latin1.bolditalic=NewCenturySchlbk-BoldItalic
|
||||
newcenturyschoolbook_bold.latin1.italic=NewCenturySchlbk-BoldItalic
|
||||
newcenturyschoolbook_italic.latin1.bold=NewCenturySchlbk-BoldItalic
|
||||
#
|
||||
palatino.latin1.plain=Palatino-Roman
|
||||
palatino_bold.latin1.plain=Palatino-Bold
|
||||
palatino_italic.latin1.plain=Palatino-Italic
|
||||
palatino_bold_italic.latin1.plain=Palatino-BoldItalic
|
||||
palatino.latin1.bold=Palatino-Bold
|
||||
palatino.latin1.italic=Palatino-Italic
|
||||
palatino.latin1.bolditalic=Palatino-BoldItalic
|
||||
palatino_bold.latin1.italic=Palatino-BoldItalic
|
||||
palatino_italic.latin1.bold=Palatino-BoldItalic
|
||||
#
|
||||
times_roman.latin1.plain=Times-Roman
|
||||
times_roman_bold.latin1.plain=Times-Bold
|
||||
times_roman_italic.latin1.plain=Times-Italic
|
||||
times_roman_bold_italic.latin1.plain=Times-BoldItalic
|
||||
times_roman.latin1.bold=Times-Bold
|
||||
times_roman.latin1.italic=Times-Italic
|
||||
times_roman.latin1.bolditalic=Times-BoldItalic
|
||||
times_roman_bold.latin1.italic=Times-BoldItalic
|
||||
times_roman_italic.latin1.bold=Times-BoldItalic
|
||||
#
|
||||
zapfchancery_italic.latin1.plain=ZapfChancery-MediumItalic
|
||||
#
|
||||
# Finally the mappings of PS font names to indexes.
|
||||
#
|
||||
AvantGarde-Book=0
|
||||
AvantGarde-BookOblique=1
|
||||
AvantGarde-Demi=2
|
||||
AvantGarde-DemiOblique=3
|
||||
Bookman-Demi=4
|
||||
Bookman-DemiItalic=5
|
||||
Bookman-Light=6
|
||||
Bookman-LightItalic=7
|
||||
Courier=8
|
||||
Courier-Bold=9
|
||||
Courier-BoldOblique=10
|
||||
Courier-Oblique=11
|
||||
Helvetica=12
|
||||
Helvetica-Bold=13
|
||||
Helvetica-BoldOblique=14
|
||||
Helvetica-Narrow=15
|
||||
Helvetica-Narrow-Bold=16
|
||||
Helvetica-Narrow-BoldOblique=17
|
||||
Helvetica-Narrow-Oblique=18
|
||||
Helvetica-Oblique=19
|
||||
NewCenturySchlbk-Bold=20
|
||||
NewCenturySchlbk-BoldItalic=21
|
||||
NewCenturySchlbk-Italic=22
|
||||
NewCenturySchlbk-Roman=23
|
||||
Palatino-Bold=24
|
||||
Palatino-BoldItalic=25
|
||||
Palatino-Italic=26
|
||||
Palatino-Roman=27
|
||||
Symbol=28
|
||||
Times-Bold=29
|
||||
Times-BoldItalic=30
|
||||
Times-Italic=31
|
||||
Times-Roman=32
|
||||
ZapfDingbats=33
|
||||
ZapfChancery-MediumItalic=34
|
||||
#
|
||||
font.0=AvantGarde-Book ISOF
|
||||
font.1=AvantGarde-BookOblique ISOF
|
||||
font.2=AvantGarde-Demi ISOF
|
||||
font.3=AvantGarde-DemiOblique ISOF
|
||||
font.4=Bookman-Demi ISOF
|
||||
font.5=Bookman-DemiItalic ISOF
|
||||
font.6=Bookman-Light ISOF
|
||||
font.7=Bookman-LightItalic ISOF
|
||||
font.8=Courier ISOF
|
||||
font.9=Courier-Bold ISOF
|
||||
font.10=Courier-BoldOblique ISOF
|
||||
font.11=Courier-Oblique ISOF
|
||||
font.12=Helvetica ISOF
|
||||
font.13=Helvetica-Bold ISOF
|
||||
font.14=Helvetica-BoldOblique ISOF
|
||||
font.15=Helvetica-Narrow ISOF
|
||||
font.16=Helvetica-Narrow-Bold ISOF
|
||||
font.17=Helvetica-Narrow-BoldOblique ISOF
|
||||
font.18=Helvetica-Narrow-Oblique ISOF
|
||||
font.19=Helvetica-Oblique ISOF
|
||||
font.20=NewCenturySchlbk-Bold ISOF
|
||||
font.21=NewCenturySchlbk-BoldItalic ISOF
|
||||
font.22=NewCenturySchlbk-Italic ISOF
|
||||
font.23=NewCenturySchlbk-Roman ISOF
|
||||
font.24=Palatino-Bold ISOF
|
||||
font.25=Palatino-BoldItalic ISOF
|
||||
font.26=Palatino-Italic ISOF
|
||||
font.27=Palatino-Roman ISOF
|
||||
font.28=Symbol findfont
|
||||
font.29=Times-Bold ISOF
|
||||
font.30=Times-BoldItalic ISOF
|
||||
font.31=Times-Italic ISOF
|
||||
font.32=Times-Roman ISOF
|
||||
font.33=ZapfDingbats findfont
|
||||
font.34=ZapfChancery-MediumItalic ISOF
|
||||
#
|
|
@ -1,20 +0,0 @@
|
|||
Algorithm=SHA-256
|
||||
14E6D2764A4B06701C6CBC376A253775F79C782FBCB6C0EE6F99DE4BA1024ADD
|
||||
31C8FD37DB9B56E708B03D1F01848B068C6DA66F36FB5D82C008C6040FA3E133
|
||||
3946901F46B0071E90D78279E82FABABCA177231A704BE72C5B0E8918566EA66
|
||||
450F1B421BB05C8609854884559C323319619E8B06B001EA2DCBB74A23AA3BE2
|
||||
4CBBF8256BC9888A8007B2F386940A2E394378B0D903CBB3863C5A6394B889CE
|
||||
4FEE0163686ECBD65DB968E7494F55D84B25486D438E9DE558D629D28CD4D176
|
||||
5E83124D68D24E8E177E306DF643D5EA99C5A94D6FC34B072F7544A1CABB7C7B
|
||||
76A45A496031E4DD2D7ED23E8F6FF97DBDEA980BAAC8B0BA94D7EDB551348645
|
||||
8A1BD21661C60015065212CC98B1ABB50DFD14C872A208E66BAE890F25C448AF
|
||||
9ED8F9B0E8E42A1656B8E1DD18F42BA42DC06FE52686173BA2FC70E756F207DC
|
||||
A686FEE577C88AB664D0787ECDFFF035F4806F3DE418DC9E4D516324FFF02083
|
||||
B8686723E415534BC0DBD16326F9486F85B0B0799BF6639334E61DAAE67F36CD
|
||||
D24566BF315F4E597D6E381C87119FB4198F5E9E2607F5F4AB362EF7E2E7672F
|
||||
D3A936E1A7775A45217C8296A1F22AC5631DCDEC45594099E78EEEBBEDCBA967
|
||||
DF21016B00FC54F9FE3BC8B039911BB216E9162FAD2FD14D990AB96E951B49BE
|
||||
EC30C9C3065A06BB07DC5B1C6B497F370C1CA65C0F30C08E042BA6BCECC78F2C
|
||||
F5B6F88F75D391A4B1EB336F9E201239FB6B1377DB8CFA7B84736216E5AFFFD7
|
||||
FC02FD48DB92D4DCE6F11679D38354CF750CFC7F584A520EB90BDE80E241F2BD
|
||||
FDEDB5BDFCB67411513A61AEE5CB5B5D7C52AF06028EFC996CC1B05B1D6CEA2B
|
Binary file not shown.
|
@ -1,239 +0,0 @@
|
|||
//
|
||||
// Permissions required by modules stored in a run-time image and loaded
|
||||
// by the platform class loader.
|
||||
//
|
||||
// NOTE that this file is not intended to be modified. If additional
|
||||
// permissions need to be granted to the modules in this file, it is
|
||||
// recommended that they be configured in a separate policy file or
|
||||
// ${java.home}/conf/security/java.policy.
|
||||
//
|
||||
|
||||
|
||||
grant codeBase "jrt:/java.compiler" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
|
||||
grant codeBase "jrt:/java.net.http" {
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.sun.net";
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.sun.net.util";
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.sun.net.www";
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.jdk.internal.misc";
|
||||
permission java.net.SocketPermission "*","connect,resolve";
|
||||
permission java.net.URLPermission "http:*","*:*";
|
||||
permission java.net.URLPermission "https:*","*:*";
|
||||
permission java.net.URLPermission "ws:*","*:*";
|
||||
permission java.net.URLPermission "wss:*","*:*";
|
||||
permission java.net.URLPermission "socket:*","CONNECT"; // proxy
|
||||
// For request/response body processors, fromFile, asFile
|
||||
permission java.io.FilePermission "<<ALL FILES>>","read,write,delete";
|
||||
permission java.util.PropertyPermission "*","read";
|
||||
permission java.net.NetPermission "getProxySelector";
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/java.scripting" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/java.security.jgss" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/java.smartcardio" {
|
||||
permission javax.smartcardio.CardPermission "*", "*";
|
||||
permission java.lang.RuntimePermission "loadLibrary.j2pcsc";
|
||||
permission java.lang.RuntimePermission
|
||||
"accessClassInPackage.sun.security.jca";
|
||||
permission java.lang.RuntimePermission
|
||||
"accessClassInPackage.sun.security.util";
|
||||
permission java.util.PropertyPermission
|
||||
"javax.smartcardio.TerminalFactory.DefaultType", "read";
|
||||
permission java.util.PropertyPermission "os.name", "read";
|
||||
permission java.util.PropertyPermission "os.arch", "read";
|
||||
permission java.util.PropertyPermission "sun.arch.data.model", "read";
|
||||
permission java.util.PropertyPermission
|
||||
"sun.security.smartcardio.library", "read";
|
||||
permission java.util.PropertyPermission
|
||||
"sun.security.smartcardio.t0GetResponse", "read";
|
||||
permission java.util.PropertyPermission
|
||||
"sun.security.smartcardio.t1GetResponse", "read";
|
||||
permission java.util.PropertyPermission
|
||||
"sun.security.smartcardio.t1StripLe", "read";
|
||||
// needed for looking up native PC/SC library
|
||||
permission java.io.FilePermission "<<ALL FILES>>","read";
|
||||
permission java.security.SecurityPermission "putProviderProperty.SunPCSC";
|
||||
permission java.security.SecurityPermission
|
||||
"clearProviderProperties.SunPCSC";
|
||||
permission java.security.SecurityPermission
|
||||
"removeProviderProperty.SunPCSC";
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/java.sql" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/java.sql.rowset" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
|
||||
grant codeBase "jrt:/java.xml.crypto" {
|
||||
permission java.lang.RuntimePermission
|
||||
"accessClassInPackage.sun.security.util";
|
||||
permission java.util.PropertyPermission "*", "read";
|
||||
permission java.security.SecurityPermission "putProviderProperty.XMLDSig";
|
||||
permission java.security.SecurityPermission
|
||||
"clearProviderProperties.XMLDSig";
|
||||
permission java.security.SecurityPermission
|
||||
"removeProviderProperty.XMLDSig";
|
||||
permission java.security.SecurityPermission
|
||||
"com.sun.org.apache.xml.internal.security.register";
|
||||
permission java.security.SecurityPermission
|
||||
"getProperty.jdk.xml.dsig.secureValidationPolicy";
|
||||
permission java.lang.RuntimePermission
|
||||
"accessClassInPackage.com.sun.org.apache.xml.internal.*";
|
||||
permission java.lang.RuntimePermission
|
||||
"accessClassInPackage.com.sun.org.apache.xpath.internal";
|
||||
permission java.lang.RuntimePermission
|
||||
"accessClassInPackage.com.sun.org.apache.xpath.internal.*";
|
||||
};
|
||||
|
||||
|
||||
grant codeBase "jrt:/jdk.accessibility" {
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.sun.awt";
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.attach" {
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.com.ibm.oti.util";
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.openj9.internal.tools.attach.target";
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.openj9.internal.tools.attach.diagnostics.base";
|
||||
permission java.util.PropertyPermission "com.ibm.tools.attach.*", "read";
|
||||
// required by com.ibm.tools.attach.attacher.OpenJ9AttachProvider.listVirtualMachinesImp():commonDir.exists(),
|
||||
// openj9.internal.tools.attach.target.Reply.writeReply():new RandomAccessFile(replyFile, "rw"),
|
||||
// and openj9.internal.tools.attach.target.Reply.deleteReply():replyFile.delete()
|
||||
permission java.io.FilePermission "<<ALL FILES>>", "read,write,delete";
|
||||
// required by com.ibm.tools.attach.attacher.OpenJ9VirtualMachine.tryAttachTarget():targetServer.accept()
|
||||
permission java.net.SocketPermission "localhost:1024-", "accept,resolve";
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.charsets" {
|
||||
permission java.util.PropertyPermission "os.name", "read";
|
||||
permission java.util.PropertyPermission "sun.nio.cs.map", "read";
|
||||
permission java.lang.RuntimePermission "charsetProvider";
|
||||
permission java.lang.RuntimePermission
|
||||
"accessClassInPackage.jdk.internal.misc";
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.sun.nio.cs";
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.crypto.ec" {
|
||||
permission java.lang.RuntimePermission
|
||||
"accessClassInPackage.sun.security.*";
|
||||
permission java.lang.RuntimePermission "loadLibrary.sunec";
|
||||
permission java.security.SecurityPermission "putProviderProperty.SunEC";
|
||||
permission java.security.SecurityPermission "clearProviderProperties.SunEC";
|
||||
permission java.security.SecurityPermission "removeProviderProperty.SunEC";
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.crypto.cryptoki" {
|
||||
permission java.lang.RuntimePermission
|
||||
"accessClassInPackage.sun.security.*";
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.sun.nio.ch";
|
||||
permission java.lang.RuntimePermission "loadLibrary.j2pkcs11";
|
||||
permission java.util.PropertyPermission "sun.security.pkcs11.allowSingleThreadedModules", "read";
|
||||
permission java.util.PropertyPermission "sun.security.pkcs11.disableKeyExtraction", "read";
|
||||
permission java.util.PropertyPermission "os.name", "read";
|
||||
permission java.util.PropertyPermission "os.arch", "read";
|
||||
permission java.util.PropertyPermission "jdk.crypto.KeyAgreement.legacyKDF", "read";
|
||||
permission java.security.SecurityPermission "putProviderProperty.*";
|
||||
permission java.security.SecurityPermission "clearProviderProperties.*";
|
||||
permission java.security.SecurityPermission "removeProviderProperty.*";
|
||||
permission java.security.SecurityPermission
|
||||
"getProperty.auth.login.defaultCallbackHandler";
|
||||
permission java.security.SecurityPermission "authProvider.*";
|
||||
// Needed for reading PKCS11 config file and NSS library check
|
||||
permission java.io.FilePermission "<<ALL FILES>>", "read";
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.desktop" {
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.com.sun.awt";
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.dynalink" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.httpserver" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.internal.le" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.internal.vm.compiler" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.internal.vm.compiler.management" {
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.org.graalvm.compiler.hotspot";
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.jdk.vm.ci.runtime";
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.sun.management.spi";
|
||||
permission java.lang.RuntimePermission "sun.management.spi.PlatformMBeanProvider.subclass";
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.jsobject" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.localedata" {
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.sun.text.*";
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.sun.util.*";
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.naming.dns" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.scripting.nashorn" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.scripting.nashorn.shell" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.security.auth" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.security.jgss" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.zipfs" {
|
||||
permission java.io.FilePermission "<<ALL FILES>>", "read,write,delete";
|
||||
permission java.lang.RuntimePermission "fileSystemProvider";
|
||||
permission java.util.PropertyPermission "os.name", "read";
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/openj9.cuda" {
|
||||
permission java.util.PropertyPermission "com.ibm.oti.vm.library.version", "read";
|
||||
permission java.lang.RuntimePermission "loadLibrary.cuda4j29";
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/openj9.gpu" {
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.com.ibm.gpu.spi";
|
||||
permission com.ibm.gpu.GPUPermission "access";
|
||||
permission java.util.PropertyPermission "com.ibm.gpu.verbose", "read";
|
||||
permission java.util.PropertyPermission "com.ibm.gpu.enforce", "read";
|
||||
permission java.util.PropertyPermission "com.ibm.gpu.enable", "read";
|
||||
permission java.util.PropertyPermission "com.ibm.gpu.disable", "read";
|
||||
};
|
||||
|
||||
// permissions needed by applications using java.desktop module
|
||||
grant {
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.com.sun.beans";
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.com.sun.beans.*";
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.com.sun.java.swing.plaf.*";
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.com.apple.*";
|
||||
};
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,2 +0,0 @@
|
|||
JAVA_VERSION="11.0.5"
|
||||
MODULES="java.base java.datatransfer java.xml java.prefs java.desktop java.logging java.management java.security.sasl java.naming java.net.http java.scripting java.transaction.xa java.sql jdk.crypto.ec jdk.unsupported jdk.zipfs openj9.sharedclasses"
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -22,7 +22,7 @@ settings:
|
|||
moved-too-quickly-multiplier: 10.0
|
||||
timeout-time: 60
|
||||
restart-on-crash: true
|
||||
restart-script: script/stop
|
||||
restart-script: script/stop.sh
|
||||
netty-threads: 32
|
||||
debug: false
|
||||
attribute:
|
||||
|
|
BIN
tmux/bin/tmux
BIN
tmux/bin/tmux
Binary file not shown.
Loading…
Reference in a new issue