[Git][java-team/jboss-logging][upstream] New upstream version 3.4.0
Markus Koschany
gitlab at salsa.debian.org
Sat Jul 20 02:45:19 BST 2019
Markus Koschany pushed to branch upstream at Debian Java Maintainers / jboss-logging
Commits:
8f4dcf7f by Markus Koschany at 2019-07-20T01:20:59Z
New upstream version 3.4.0
- - - - -
13 changed files:
- pom.xml
- − src/main/java/org/jboss/logging/Cause.java
- − src/main/java/org/jboss/logging/Field.java
- − src/main/java/org/jboss/logging/FormatWith.java
- − src/main/java/org/jboss/logging/LogMessage.java
- − src/main/java/org/jboss/logging/LoggingClass.java
- − src/main/java/org/jboss/logging/Message.java
- − src/main/java/org/jboss/logging/MessageBundle.java
- − src/main/java/org/jboss/logging/MessageLogger.java
- − src/main/java/org/jboss/logging/Param.java
- src/main/java/org/jboss/logging/ParameterConverter.java
- − src/main/java/org/jboss/logging/Property.java
- src/main/java/org/jboss/logging/Slf4jLoggerProvider.java
Changes:
=====================================
pom.xml
=====================================
@@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.jboss.logging</groupId>
<artifactId>jboss-logging</artifactId>
- <version>3.3.2.Final</version>
+ <version>3.4.0.Final</version>
<packaging>jar</packaging>
<name>JBoss Logging 3</name>
<url>http://www.jboss.org</url>
@@ -18,7 +18,7 @@
<parent>
<groupId>org.jboss</groupId>
<artifactId>jboss-parent</artifactId>
- <version>15</version>
+ <version>34</version>
</parent>
<licenses>
@@ -32,16 +32,9 @@
<properties>
<!-- Dependency versions -->
<version.org.apache.log4j>1.2.16</version.org.apache.log4j>
- <version.org.apache.logging.log4j>2.0</version.org.apache.logging.log4j>
- <version.org.jboss.logmanager>1.5.2.Final</version.org.jboss.logmanager>
- <version.org.sfl4j>1.7.2</version.org.sfl4j>
-
- <!-- Plugin versions -->
- <version.org.jboss.apiviz.apiviz>1.3.2.GA</version.org.jboss.apiviz.apiviz>
-
- <!-- maven-compiler-plugin -->
- <maven.compiler.target>1.6</maven.compiler.target>
- <maven.compiler.source>1.6</maven.compiler.source>
+ <version.org.apache.logging.log4j>2.11.2</version.org.apache.logging.log4j>
+ <version.org.jboss.logmanager>2.1.9.Final</version.org.jboss.logmanager>
+ <version.org.sfl4j>1.7.25</version.org.sfl4j>
</properties>
<dependencies>
@@ -89,26 +82,6 @@
<plugin>
<artifactId>maven-source-plugin</artifactId>
</plugin>
- <plugin>
- <artifactId>maven-javadoc-plugin</artifactId>
- <configuration>
- <detectJavaApiLink>false</detectJavaApiLink>
- <detectLinks>false</detectLinks>
- <doclet>net.gleamynode.apiviz.APIviz</doclet>
- <docletArtifact>
- <groupId>org.jboss.apiviz</groupId>
- <artifactId>apiviz</artifactId>
- <version>${version.org.jboss.apiviz.apiviz}</version>
- </docletArtifact>
- <doctitle><![CDATA[JBoss Logging ]]>${project.version}</doctitle>
- <header><![CDATA[JBoss Logging ]]>${project.version}</header>
- <footer><![CDATA[JBoss Logging ]]>${project.version}</footer>
- <bottom><![CDATA[<i>Copyright © 2015 Red Hat, Inc.</i>]]></bottom>
- <links>
- <link>http://java.sun.com/javase/6/docs/api/</link>
- </links>
- </configuration>
- </plugin>
<!-- Adding OSGI metadata to the JAR without changing the packaging type. -->
<plugin>
<artifactId>maven-jar-plugin</artifactId>
=====================================
src/main/java/org/jboss/logging/Cause.java deleted
=====================================
@@ -1,41 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- *
- * Copyright 2010 Red Hat, Inc., and individual contributors
- * as indicated by the @author tags.
- *
- * Licensed 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.
- */
-
-package org.jboss.logging;
-
-import java.lang.annotation.Documented;
-import java.lang.annotation.Retention;
-import java.lang.annotation.Target;
-
-import static java.lang.annotation.ElementType.PARAMETER;
-import static java.lang.annotation.RetentionPolicy.CLASS;
-
-/**
- * Mark a parameter as being the "exception cause" parameter rather than a positional format parameter.
- *
- * @deprecated Use org.jboss.logging.annotations.Cause provided in module org.jboss.logging:jboss-logging-annotations
- *
- * @author <a href="mailto:david.lloyd at redhat.com">David M. Lloyd</a>
- */
- at Retention(CLASS)
- at Target(PARAMETER)
- at Documented
- at Deprecated
-public @interface Cause {
-}
=====================================
src/main/java/org/jboss/logging/Field.java deleted
=====================================
@@ -1,48 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- *
- * Copyright 2011 Red Hat, Inc., and individual contributors
- * as indicated by the @author tags.
- *
- * Licensed 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.
- */
-
-package org.jboss.logging;
-
-import java.lang.annotation.Documented;
-import java.lang.annotation.Retention;
-import java.lang.annotation.Target;
-
-import static java.lang.annotation.ElementType.PARAMETER;
-import static java.lang.annotation.RetentionPolicy.CLASS;
-
-/**
- * Indicate that a method parameter value should be applied to a field on the resultant exception object.
- *
- * @deprecated Use org.jboss.logging.annotations.Field provided in module org.jboss.logging:jboss-logging-annotations
- *
- * @author <a href="mailto:david.lloyd at redhat.com">David M. Lloyd</a>
- */
- at Retention(CLASS)
- at Target(PARAMETER)
- at Documented
- at Deprecated
-public @interface Field {
-
- /**
- * The field name. If not specified, the parameter name is assumed to be the field name.
- *
- * @return the field name
- */
- String name() default "";
-}
=====================================
src/main/java/org/jboss/logging/FormatWith.java deleted
=====================================
@@ -1,52 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- *
- * Copyright 2011 Red Hat, Inc., and individual contributors
- * as indicated by the @author tags.
- *
- * Licensed 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.
- */
-
-package org.jboss.logging;
-
-import java.lang.annotation.Documented;
-import java.lang.annotation.Retention;
-import java.lang.annotation.Target;
-
-import static java.lang.annotation.ElementType.PARAMETER;
-import static java.lang.annotation.RetentionPolicy.CLASS;
-
-/**
- * Indicate that the given parameter should be wrapped with a formatting object of the given class. The class
- * must have a one-argument constructor which unambiguously accepts a value of this parameter's type. The resultant
- * object will be passed in as a parameter to the underlying format type; thus its {@link Object#toString() toString()}
- * method will be invoked (or, if the format style is {@link org.jboss.logging.Message.Format#PRINTF PRINTF}, the
- * object may implement {@link java.util.Formattable Formattable} to get extra functionality).
- *
- * @deprecated Use org.jboss.logging.annotations.FormatWith provided in module org.jboss.logging:jboss-logging-annotations
- *
- * @author <a href="mailto:david.lloyd at redhat.com">David M. Lloyd</a>
- */
- at Target(PARAMETER)
- at Retention(CLASS)
- at Documented
- at Deprecated
-public @interface FormatWith {
-
- /**
- * The class of the formatting object to use.
- *
- * @return the class
- */
- Class<?> value();
-}
=====================================
src/main/java/org/jboss/logging/LogMessage.java deleted
=====================================
@@ -1,56 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- *
- * Copyright 2010 Red Hat, Inc., and individual contributors
- * as indicated by the @author tags.
- *
- * Licensed 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.
- */
-
-package org.jboss.logging;
-
-import java.lang.annotation.Documented;
-import java.lang.annotation.Retention;
-import java.lang.annotation.Target;
-
-import static java.lang.annotation.ElementType.METHOD;
-import static java.lang.annotation.RetentionPolicy.CLASS;
-
-/**
- * A typed logger method. Indicates that this method will log the associated {@link Message} to the logger system, as
- * opposed to being a simple message lookup.
- *
- * @deprecated Use org.jboss.logging.annotations.LogMessage provided in module org.jboss.logging:jboss-logging-annotations
- *
- * @author <a href="mailto:david.lloyd at redhat.com">David M. Lloyd</a>
- */
- at Retention(CLASS)
- at Target(METHOD)
- at Documented
- at Deprecated
-public @interface LogMessage {
-
- /**
- * The log level at which this message should be logged. Defaults to {@code INFO}.
- *
- * @return the log level
- */
- Logger.Level level() default Logger.Level.INFO;
-
- /**
- * The logging class name to use for this message, if any.
- *
- * @return the logging class name
- */
- Class<?> loggingClass() default Void.class;
-}
=====================================
src/main/java/org/jboss/logging/LoggingClass.java deleted
=====================================
@@ -1,42 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- *
- * Copyright 2010 Red Hat, Inc., and individual contributors
- * as indicated by the @author tags.
- *
- * Licensed 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.
- */
-
-package org.jboss.logging;
-
-import java.lang.annotation.Documented;
-import java.lang.annotation.Retention;
-import java.lang.annotation.Target;
-
-import static java.lang.annotation.ElementType.PARAMETER;
-import static java.lang.annotation.RetentionPolicy.CLASS;
-
-/**
- * Mark a parameter as specifying the name of the logging class to use. The parameter
- * may have a type of {@link String} or {@link Class}.
- *
- * @deprecated Use org.jboss.logging.annotations.LoggingClass provided in module org.jboss.logging:jboss-logging-annotations
- *
- * @author <a href="mailto:david.lloyd at redhat.com">David M. Lloyd</a>
- */
- at Retention(CLASS)
- at Target(PARAMETER)
- at Documented
- at Deprecated
-public @interface LoggingClass {
-}
=====================================
src/main/java/org/jboss/logging/Message.java deleted
=====================================
@@ -1,93 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- *
- * Copyright 2010 Red Hat, Inc., and individual contributors
- * as indicated by the @author tags.
- *
- * Licensed 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.
- */
-
-package org.jboss.logging;
-
-import java.lang.annotation.Documented;
-import java.lang.annotation.Retention;
-import java.lang.annotation.Target;
-
-import static java.lang.annotation.ElementType.METHOD;
-import static java.lang.annotation.RetentionPolicy.CLASS;
-
-/**
- * Assigns a message string to a resource method. The method arguments are used to supply the positional parameter
- * values for the method.
- *
- * @deprecated Use org.jboss.logging.annotations.Message provided in module org.jboss.logging:jboss-logging-annotations
- *
- * @author <a href="mailto:david.lloyd at redhat.com">David M. Lloyd</a>
- */
- at Target(METHOD)
- at Retention(CLASS)
- at Documented
- at Deprecated
-public @interface Message {
-
- /**
- * Indicates that this message has no ID.
- */
- int NONE = 0;
- /**
- * Indicates that this message should inherit the ID from another message with the same name.
- */
- int INHERIT = -1;
-
- /**
- * The message ID number. Only one message with a given name may specify an ID other than {@link #INHERIT}.
- *
- * @return the message ID number
- */
- int id() default INHERIT;
-
- /**
- * The default format string of this message.
- *
- * @return the format string
- */
- String value();
-
- /**
- * The format type of this method (defaults to {@link Format#PRINTF}).
- *
- * @return the format type
- */
- Format format() default Format.PRINTF;
-
- /**
- * The possible format types.
- */
- enum Format {
-
- /**
- * A {@link java.util.Formatter}-type format string.
- */
- PRINTF,
- /**
- * A {@link java.text.MessageFormat}-type format string.
- */
- MESSAGE_FORMAT,
-
- /**
- * Indicates the message should not be formatted.
- */
- NO_FORMAT,
- }
-
-}
=====================================
src/main/java/org/jboss/logging/MessageBundle.java deleted
=====================================
@@ -1,49 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- *
- * Copyright 2010 Red Hat, Inc., and individual contributors
- * as indicated by the @author tags.
- *
- * Licensed 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.
- */
-
-package org.jboss.logging;
-
-import java.lang.annotation.Documented;
-import java.lang.annotation.Retention;
-import java.lang.annotation.Target;
-
-import static java.lang.annotation.ElementType.TYPE;
-import static java.lang.annotation.RetentionPolicy.CLASS;
-
-/**
- * Signify that an interface is a message bundle interface.
- *
- * @deprecated Use org.jboss.logging.annotations.MessageBundle provided in module org.jboss.logging:jboss-logging-annotations
- *
- * @author <a href="mailto:david.lloyd at redhat.com">David M. Lloyd</a>
- */
- at Target(TYPE)
- at Retention(CLASS)
- at Documented
- at Deprecated
-public @interface MessageBundle {
-
- /**
- * Get the project code for messages that have an associated code. If no project code is associated
- * with this bundle, specify {@code ""} (the empty string).
- *
- * @return the project code
- */
- String projectCode();
-}
=====================================
src/main/java/org/jboss/logging/MessageLogger.java deleted
=====================================
@@ -1,50 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- *
- * Copyright 2010 Red Hat, Inc., and individual contributors
- * as indicated by the @author tags.
- *
- * Licensed 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.
- */
-
-package org.jboss.logging;
-
-import java.lang.annotation.Documented;
-import java.lang.annotation.Retention;
-import java.lang.annotation.Target;
-
-import static java.lang.annotation.ElementType.TYPE;
-import static java.lang.annotation.RetentionPolicy.CLASS;
-
-/**
- * Signify that an interface is a typed logger interface. A message logger interface may optionally extend other message logger
- * interfaces and message bundle interfaces (see {@link MessageBundle}, as well as the {@link org.jboss.logging.BasicLogger} interface.
- *
- * @deprecated Use org.jboss.logging.annotations.MessageLogger provided in module org.jboss.logging:jboss-logging-annotations
- *
- * @author <a href="mailto:david.lloyd at redhat.com">David M. Lloyd</a>
- */
- at Retention(CLASS)
- at Target(TYPE)
- at Documented
- at Deprecated
-public @interface MessageLogger {
-
- /**
- * Get the project code for messages that have an associated code. If no project code is associated
- * with this logger, specify {@code ""} (the empty string).
- *
- * @return the project code
- */
- String projectCode();
-}
=====================================
src/main/java/org/jboss/logging/Param.java deleted
=====================================
@@ -1,54 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- *
- * Copyright 2011 Red Hat, Inc., and individual contributors
- * as indicated by the @author tags.
- *
- * Licensed 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.
- */
-
-package org.jboss.logging;
-
-import java.lang.annotation.Documented;
-import java.lang.annotation.Retention;
-import java.lang.annotation.Target;
-
-import static java.lang.annotation.ElementType.PARAMETER;
-import static java.lang.annotation.RetentionPolicy.CLASS;
-
-/**
- * Identifies a parameter is to be used for constructing an exception and excluded from the formatting of the message.
- * <p/>
- * Parameters will be order-matched first, then type-matched to resolve ambiguity. If a match fails an error should
- * occur.
- * <p/>
- * The {@link #value()} option will allow an optional class to be specified which will have to match the exact type of
- * the parameter in question, to enable unambiguous resolution. The value must be the fully qualified class name.
- *
- * @deprecated Use org.jboss.logging.annotations.Param provided in module org.jboss.logging:jboss-logging-annotations
- *
- * @author <a href="mailto:jperkins at redhat.com">James R. Perkins</a>
- */
- at Target(PARAMETER)
- at Retention(CLASS)
- at Documented
- at Deprecated
-public @interface Param {
-
- /**
- * Defines an exact class the parameter must match for unambiguous resolution.
- *
- * @return the class the parameter must match.
- */
- Class<?> value() default Object.class;
-}
=====================================
src/main/java/org/jboss/logging/ParameterConverter.java
=====================================
@@ -2,7 +2,7 @@
* JBoss, Home of Professional Open Source.
*
* Copyright 2010 Red Hat, Inc., and individual contributors
- * as indicated by the @author tags.
+ * as indicated by the @author tags.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -26,13 +26,15 @@ import java.util.Locale;
*
* @author <a href="mailto:david.lloyd at redhat.com">David M. Lloyd</a>
* @param <I> the input type
+ * @deprecated this is not currently used anywhere and no replacement will be created
*/
+ at Deprecated
public interface ParameterConverter<I> {
/**
* Convert the parameter to its string or string-equivalent representation. The returned value will be passed in
* as a parameter to either a {@link java.text.MessageFormat} or {@link java.util.Formatter} instance, depending
- * on the setting of {@link Message#format()}.
+ * on the setting of {@code org.jboss.logging.annotation.Message.format}.
*
* @param locale the locale
* @param parameter the parameter
=====================================
src/main/java/org/jboss/logging/Property.java deleted
=====================================
@@ -1,49 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- *
- * Copyright 2011 Red Hat, Inc., and individual contributors
- * as indicated by the @author tags.
- *
- * Licensed 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.
- */
-
-
-package org.jboss.logging;
-
-import java.lang.annotation.Documented;
-import java.lang.annotation.Retention;
-import java.lang.annotation.Target;
-
-import static java.lang.annotation.ElementType.PARAMETER;
-import static java.lang.annotation.RetentionPolicy.CLASS;
-
-/**
- * Indicate that a method parameter value should be applied to a property (with a setter method) on the resultant exception object.
- *
- * @deprecated Use org.jboss.logging.annotations.Property provided in module org.jboss.logging:jboss-logging-annotations
- *
- * @author <a href="mailto:david.lloyd at redhat.com">David M. Lloyd</a>
- */
- at Retention(CLASS)
- at Target(PARAMETER)
- at Documented
- at Deprecated
-public @interface Property {
-
- /**
- * The property name. If not specified, the parameter name is assumed to be the property name.
- *
- * @return the property name
- */
- String name() default "";
-}
=====================================
src/main/java/org/jboss/logging/Slf4jLoggerProvider.java
=====================================
@@ -19,6 +19,7 @@
package org.jboss.logging;
import java.util.Collections;
+import java.util.LinkedHashMap;
import java.util.Map;
import org.slf4j.LoggerFactory;
@@ -60,9 +61,9 @@ final class Slf4jLoggerProvider extends AbstractLoggerProvider implements Logger
MDC.remove(key);
}
+ @SuppressWarnings("unchecked")
public Map<String, Object> getMdcMap() {
- @SuppressWarnings({"unchecked"})
- final Map<String, Object> map = MDC.getCopyOfContextMap();
- return map == null ? Collections.<String, Object>emptyMap() : map;
+ final Map copy = MDC.getCopyOfContextMap();
+ return copy == null ? Collections.emptyMap() : new LinkedHashMap<>(copy);
}
}
View it on GitLab: https://salsa.debian.org/java-team/jboss-logging/commit/8f4dcf7f88fade1c98a5eddcc6e086d7915c8e7d
--
View it on GitLab: https://salsa.debian.org/java-team/jboss-logging/commit/8f4dcf7f88fade1c98a5eddcc6e086d7915c8e7d
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-java-commits/attachments/20190720/92c1c1f9/attachment.html>
More information about the pkg-java-commits
mailing list