Skip to content

Commit

Permalink
release 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
raydac committed Mar 27, 2020
1 parent 8a1aff8 commit f970baf
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 29 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__1.1.0 (SNAPSHOT)__
__1.1.0 (27-mar-2020)__
- improved processing of Gateway Timeout response
- reworked `ADOPT` provider to work through [AdoptOpenJdk API V3](https://api.adoptopenjdk.net/swagger-ui/)
- added `authorization` property which will be provided through `Authorization` header
Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

# Changelog

__1.1.0 (SNAPSHOT)__
__1.1.0 (27-mar-2020)__
- improved processing of Gateway Timeout response
- reworked `ADOPT` provider to work through [AdoptOpenJdk API V3](https://api.adoptopenjdk.net/swagger-ui/)
- added `authorization` property which will be provided through `Authorization` header
Expand All @@ -35,7 +35,7 @@ Functionality of the plugin is very easy, it just provides way to execute tools
At present the plug-in supports listed OpenJDK providers:
* __LOCAL__ - locally provided JDK will be used for operations
* __[BELLSOFT](https://www.bell-sw.com/java.html)__ - Prebuilt distributives of OpenJDK 'LIBERICA' for many platforms including embedded ones, __distributives include JavaFX module__
* __[ADOPT](https://adoptopenjdk.net/)__ - Prebuilt distributives of OpenJDK for many platforms, there are `hotspot` and `openj9`.
* __[ADOPT](https://adoptopenjdk.net/)__ - Prebuilt distributives of OpenJDK for many platforms. [It uses AdaptOpenJDK API V3](https://api.adoptopenjdk.net/swagger-ui/).
* __[ADOPTGIT](/~https://github.com/AdoptOpenJDK)__ - Prebuilt AdoptOpenJDK distributives for many platform hosted by GitHub.
* __[SAPMACHINE](/~https://github.com/SAP/SapMachine)__ - Prebuilt distributives of OpenJDK provided by SAP.
* __[GRAALVMCE](/~https://github.com/graalvm/graalvm-ce-builds)__ - Prebuilt JDK distributives of GraalVM Community Edition.
Expand All @@ -52,7 +52,7 @@ Code snippet below shows caching of GraalVM CE, the GraalVM distributive will be
<plugin>
<groupId>com.igormaznitsa</groupId>
<artifactId>mvn-jlink-wrapper</artifactId>
<version>1.0.7</version>
<version>1.1.0</version>
<executions>
<execution>
<id>cache-jdk11-graalvmce</id>
Expand All @@ -78,7 +78,7 @@ Code snippet below shows configuration to cache OpenJDK from ADOPT provider in p
<plugin>
<groupId>com.igormaznitsa</groupId>
<artifactId>mvn-jlink-wrapper</artifactId>
<version>1.0.7</version>
<version>1.1.0</version>
<executions>
<execution>
<id>cache-jdk-8</id>
Expand All @@ -91,10 +91,10 @@ Code snippet below shows configuration to cache OpenJDK from ADOPT provider in p

<provider>ADOPT</provider>
<providerConfig>
<release>jdk8u192-b12</release>
<release>jdk-14+36</release>
<arch>x64</arch>
<type>jdk</type>
<impl>hotspot</impl>
<project>jdk</project>
</providerConfig>

</configuration>
Expand All @@ -111,7 +111,7 @@ The example calls jdeps tool from provided JDK over project jar file and saves o
<plugin>
<groupId>com.igormaznitsa</groupId>
<artifactId>mvn-jlink-wrapper</artifactId>
<version>1.0.7</version>
<version>1.1.0</version>
<executions>
<execution>
<id>call-jdeps</id>
Expand All @@ -137,7 +137,7 @@ The example calls `jlink` from provided JDK and build JDK version based on repor
<plugin>
<groupId>com.igormaznitsa</groupId>
<artifactId>mvn-jlink-wrapper</artifactId>
<version>1.0.7</version>
<version>1.1.0</version>
<executions>
<execution>
<id>call-jlink</id>
Expand Down Expand Up @@ -172,7 +172,7 @@ The example calls jps tool from provided tool JDK with 5 seconds timeout and its
<plugin>
<groupId>com.igormaznitsa</groupId>
<artifactId>mvn-jlink-wrapper</artifactId>
<version>1.0.7</version>
<version>1.1.0</version>
<executions>
<execution>
<id>call-tool</id>
Expand Down
2 changes: 0 additions & 2 deletions mvn-jlink-tests/mvn-jlink-test-adopt-jdk13/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
<arch>x64</arch>
<impl>openj9</impl>
</providerConfig>
<disableSSLcheck>true</disableSSLcheck>
<jdkCachePath>${project.build.directory}${file.separator}jlinkCache</jdkCachePath>
<jdkPathProperty>jlink.jdk.path</jdkPathProperty>
</configuration>
Expand All @@ -73,7 +72,6 @@
<configuration>
<jdepsReportPath>${project.build.directory}${file.separator}jdeps.out</jdepsReportPath>
<output>${project.build.directory}${file.separator}preparedJDK</output>
<disableSSLcheck>true</disableSSLcheck>
<toolJdk>${jlink.jdk.path}</toolJdk>
<addModules>
<module>java.compiler</module>
Expand Down
2 changes: 0 additions & 2 deletions mvn-jlink-tests/mvn-jlink-test-adopt-jdk14/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@
<impl>hotspot</impl>
<project>jdk</project>
</providerConfig>
<disableSSLcheck>true</disableSSLcheck>
<jdkCachePath>${project.build.directory}${file.separator}jlinkCache</jdkCachePath>
<jdkPathProperty>jlink.jdk.path</jdkPathProperty>
</configuration>
Expand All @@ -74,7 +73,6 @@
<configuration>
<jdepsReportPath>${project.build.directory}${file.separator}jdeps.out</jdepsReportPath>
<output>${project.build.directory}${file.separator}preparedJDK</output>
<disableSSLcheck>true</disableSSLcheck>
<toolJdk>${jlink.jdk.path}</toolJdk>
<addModules>
<module>java.compiler</module>
Expand Down
2 changes: 0 additions & 2 deletions mvn-jlink-tests/mvn-jlink-test-adoptgit-jdk13/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@
<impl>hotspot</impl>
<releaseDate>2019-12-20-13-11</releaseDate>
</providerConfig>
<disableSSLcheck>true</disableSSLcheck>
<jdkCachePath>${project.build.directory}${file.separator}jlinkCache</jdkCachePath>
<jdkPathProperty>jlink.jdk.path</jdkPathProperty>
<pathAsProperty>
Expand Down Expand Up @@ -107,7 +106,6 @@
<configuration>
<jdepsReportPath>${project.build.directory}${file.separator}jdeps.out</jdepsReportPath>
<output>${project.build.directory}${file.separator}preparedJDK</output>
<disableSSLcheck>true</disableSSLcheck>
<toolJdk>${jlink.jdk.path}</toolJdk>
<addModules>
<module>java.compiler</module>
Expand Down
2 changes: 0 additions & 2 deletions mvn-jlink-tests/mvn-jlink-test-adoptgit-jdk15/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@
<impl>hotspot</impl>
<releaseDate>2020-03-21-03-31</releaseDate>
</providerConfig>
<disableSSLcheck>true</disableSSLcheck>
<jdkCachePath>${project.build.directory}${file.separator}jlinkCache</jdkCachePath>
<jdkPathProperty>jlink.jdk.path</jdkPathProperty>
<pathAsProperty>
Expand Down Expand Up @@ -106,7 +105,6 @@
<configuration>
<jdepsReportPath>${project.build.directory}${file.separator}jdeps.out</jdepsReportPath>
<output>${project.build.directory}${file.separator}preparedJDK</output>
<disableSSLcheck>true</disableSSLcheck>
<toolJdk>${jlink.jdk.path}</toolJdk>
<addModules>
<module>java.compiler</module>
Expand Down
1 change: 0 additions & 1 deletion mvn-jlink-tests/mvn-jlink-test-cache/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
<goal>cache-jdk</goal>
</goals>
<configuration>
<disableSSLcheck>true</disableSSLcheck>
<provider>ADOPT</provider>
<providerConfig>
<release>jdk8u192-b12</release>
Expand Down
2 changes: 0 additions & 2 deletions mvn-jlink-tests/mvn-jlink-test-graalvmce/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
<version>19.3.1</version>
<arch>amd64</arch>
</providerConfig>
<disableSSLcheck>true</disableSSLcheck>
<jdkCachePath>${project.build.directory}${file.separator}jlinkCache</jdkCachePath>
<jdkPathProperty>jlink.jdk.path</jdkPathProperty>
</configuration>
Expand All @@ -73,7 +72,6 @@
<configuration>
<jdepsReportPath>${project.build.directory}${file.separator}jdeps.out</jdepsReportPath>
<output>${project.build.directory}${file.separator}preparedJDK</output>
<disableSSLcheck>true</disableSSLcheck>
<toolJdk>${jlink.jdk.path}</toolJdk>
<addModules>
<module>java.compiler</module>
Expand Down
1 change: 0 additions & 1 deletion mvn-jlink-tests/mvn-jlink-test-liberica-jdk13/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@
<configuration>
<jdepsReportPath>${project.build.directory}${file.separator}jdeps.out</jdepsReportPath>
<output>${project.build.directory}${file.separator}preparedJDK</output>
<disableSSLcheck>true</disableSSLcheck>
<toolJdk>${jlink.jdk.path}</toolJdk>
<addModules>
<module>java.compiler</module>
Expand Down
1 change: 0 additions & 1 deletion mvn-jlink-tests/mvn-jlink-test-liberica-jdk14/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@
<configuration>
<jdepsReportPath>${project.build.directory}${file.separator}jdeps.out</jdepsReportPath>
<output>${project.build.directory}${file.separator}preparedJDK</output>
<disableSSLcheck>true</disableSSLcheck>
<toolJdk>${jlink.jdk.path}</toolJdk>
<addModules>
<module>java.compiler</module>
Expand Down
2 changes: 0 additions & 2 deletions mvn-jlink-tests/mvn-jlink-test-sapmachine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
<version>13.0.1</version>
<arch>x64</arch>
</providerConfig>
<disableSSLcheck>true</disableSSLcheck>
<jdkCachePath>${project.build.directory}${file.separator}jlinkCache</jdkCachePath>
<jdkPathProperty>jlink.jdk.path</jdkPathProperty>
</configuration>
Expand All @@ -73,7 +72,6 @@
<configuration>
<jdepsReportPath>${project.build.directory}${file.separator}jdeps.out</jdepsReportPath>
<output>${project.build.directory}${file.separator}preparedJDK</output>
<disableSSLcheck>true</disableSSLcheck>
<toolJdk>${jlink.jdk.path}</toolJdk>
<addModules>
<module>java.compiler</module>
Expand Down
2 changes: 1 addition & 1 deletion mvn-jlink-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.igormaznitsa</groupId>
<artifactId>mvn-jlink</artifactId>
<version>1.1.0-SNAPSHOT</version>
<version>1.1.0</version>
</parent>

<artifactId>mvn-jlink-tests</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion mvn-jlink-wrapper/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.igormaznitsa</groupId>
<artifactId>mvn-jlink</artifactId>
<version>1.1.0-SNAPSHOT</version>
<version>1.1.0</version>
</parent>

<artifactId>mvn-jlink-wrapper</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.igormaznitsa</groupId>
<artifactId>mvn-jlink</artifactId>
<version>1.1.0-SNAPSHOT</version>
<version>1.1.0</version>
<packaging>pom</packaging>

<name>Maven Jlink plugin</name>
Expand Down Expand Up @@ -57,7 +57,7 @@
</prerequisites>

<properties>
<mvnjlink.test.version>1.1.0-SNAPSHOT</mvnjlink.test.version>
<mvnjlink.test.version>1.1.0</mvnjlink.test.version>
<meta.version>1.1.3</meta.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
Expand Down

0 comments on commit f970baf

Please sign in to comment.