Skip to content

Commit

Permalink
integrate m-api 3.2.3
Browse files Browse the repository at this point in the history
Signed-off-by: Lukas Jungmann <[email protected]>
  • Loading branch information
lukasj committed May 7, 2020
1 parent ebe0fce commit 4cc3537
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 9 deletions.
4 changes: 2 additions & 2 deletions api-only/src/main/java/module-info.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2019 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0, which is available at
Expand All @@ -10,7 +10,7 @@

module gmbal {
requires java.logging;
requires transitive java.management;
requires transitive org.glassfish.external.management.api;

exports org.glassfish.gmbal;
exports org.glassfish.pfl.tf.timer.spi;
Expand Down
27 changes: 26 additions & 1 deletion impl/pom.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2019 Oracle and/or its affiliates. All rights reserved.
Copyright (c) 2019, 2020 Oracle and/or its affiliates. All rights reserved.
This program and the accompanying materials are made available under the
terms of the Eclipse Distribution License v. 1.0, which is available at
Expand Down Expand Up @@ -108,6 +108,22 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<executions>
<execution>
<id>default-compile</id>
<configuration>
<compilerArgs>
<arg>-Xlint:all</arg>
<arg>--add-reads</arg>
<arg>gmbal=ALL-UNNAMED</arg>
</compilerArgs>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
Expand Down Expand Up @@ -135,6 +151,15 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<excludes>
<exclude>META-INF/jpms.args</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</project>
4 changes: 2 additions & 2 deletions impl/src/main/java/module-info.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2019 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0, which is available at
Expand All @@ -10,7 +10,7 @@

module gmbal {
requires java.logging;
requires transitive java.management;
requires transitive org.glassfish.external.management.api;

exports org.glassfish.gmbal;
exports org.glassfish.gmbal.impl.trace;
Expand Down
6 changes: 2 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2018, 2019 Oracle and/or its affiliates. All rights reserved.
Copyright (c) 2018, 2020 Oracle and/or its affiliates. All rights reserved.
This program and the accompanying materials are made available under the
terms of the Eclipse Distribution License v. 1.0, which is available at
Expand Down Expand Up @@ -84,7 +84,7 @@
<properties>
<jdkVersion>8</jdkVersion>
<pfl.version>4.1.0</pfl.version>
<gmbal.commons.version>3.2.2</gmbal.commons.version>
<gmbal.commons.version>3.2.3</gmbal.commons.version>
<legal.doc.source>${project.basedir}/..</legal.doc.source>
</properties>

Expand Down Expand Up @@ -214,8 +214,6 @@
<configuration>
<compilerArgs>
<arg>-Xlint:all</arg>
<arg>--add-reads</arg>
<arg>gmbal=ALL-UNNAMED</arg>
</compilerArgs>
</configuration>
</execution>
Expand Down

0 comments on commit 4cc3537

Please sign in to comment.