Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 7.1.0 NEWS, fix warnings from JDK 11 upgrade #91

Merged
merged 6 commits into from Oct 6, 2020
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions NEWS.md
@@ -1,3 +1,7 @@
## 2020-10-06 v7.1.0

* [MODLOGIN-137](https://issues.folio.org/browse/MODLOGIN-137) Upgrade to RMB 31.x and JDK 11

## 2020-08-28 v7.0.1
* [MODLOGIN-135](https://issues.folio.org/browse/MODLOGIN-135) Upgrade raml-module-builder (RMB) from 30.0.0 to 30.2.6

Expand Down
13 changes: 12 additions & 1 deletion pom.xml
Expand Up @@ -392,7 +392,17 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.3</version>
<version>3.2.4</version>
<configuration>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>**/Log4j2Plugins.dat</exclude>
</excludes>
</filter>
</filters>
</configuration>
<executions>
<execution>
<phase>package</phase>
Expand All @@ -405,6 +415,7 @@
<manifestEntries>
<Main-Class>org.folio.rest.RestLauncher</Main-Class>
<Main-Verticle>org.folio.rest.RestVerticle</Main-Verticle>
<Multi-Release>true</Multi-Release>
</manifestEntries>
</transformer>
</transformers>
Expand Down
1 change: 0 additions & 1 deletion src/main/java/org/folio/rest/.gitignore

This file was deleted.