Skip to content

Commit

Permalink
Merge pull request #91 from folio-org/release-7-1-0
Browse files Browse the repository at this point in the history
Release 7.1.0 NEWS, fix warnings from JDK 11 upgrade
  • Loading branch information
adamdickmeiss committed Oct 6, 2020
2 parents ed5dcd5 + 5a49df4 commit 5c35b5e
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
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
15 changes: 13 additions & 2 deletions pom.xml
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.folio</groupId>
<artifactId>mod-login</artifactId>
<version>7.1.0-SNAPSHOT</version>
<version>7.2.0-SNAPSHOT</version>
<packaging>jar</packaging>

<licenses>
Expand Down 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.

0 comments on commit 5c35b5e

Please sign in to comment.