-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from mojohaus/updates
Updates of dependencies
- Loading branch information
Showing
7 changed files
with
77 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,18 @@ | ||
# Native2ascii Maven Plugin | ||
|
||
[![Apache License, Version 2.0, January 2004](https://img.shields.io/github/license/mojohaus/native2ascii.svg?label=License)](http://www.apache.org/licenses/) | ||
[![Maven Central](https://img.shields.io/maven-central/v/org.codehaus.mojo/native2ascii-maven-plugin.svg?label=Maven%20Central)](http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.codehaus.mojo%22%20AND%20a%3A%22native2ascii-maven-plugin%22) | ||
[![Build Status](https://travis-ci.org/mojohaus/native2ascii-maven-plugin.svg?branch=master)](https://travis-ci.org/mojohaus/native2ascii-maven-plugin) | ||
[![License: MIT](https://img.shields.io/github/license/mojohaus/native2ascii-maven-plugin)]( | ||
https://opensource.org/licenses/MIT) | ||
[![Maven Central](https://img.shields.io/maven-central/v/org.codehaus.mojo/native2ascii-maven-plugin.svg?label=Maven%20Central)]( | ||
http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.codehaus.mojo%22%20AND%20a%3A%22native2ascii-maven-plugin%22) | ||
[![JDK Compatibility](https://github.com/mojohaus/native2ascii-maven-plugin/actions/workflows/linux-jdks-with-current-maven-ci.yml/badge.svg)]( | ||
https://github.com/mojohaus/native2ascii-maven-plugin/actions/workflows/linux-jdks-with-current-maven-ci.yml) | ||
[![CodeQL Analysis](https://github.com/mojohaus/native2ascii-maven-plugin/actions/workflows/codeql-analysis.yml/badge.svg)]( | ||
https://github.com/mojohaus/native2ascii-maven-plugin/actions/workflows/codeql-analysis.yml) | ||
|
||
Target: Better version than 1.0-alpha-1 and 1.0-beta-1, both are incompatible and poorly documented | ||
|
||
# Howto | ||
|
||
Look here for the usage: https://github.com/mojohaus/native2ascii/wiki/_pages | ||
|
||
Also note this issue: https://bugs.openjdk.java.net/browse/JDK-8074431 - this plugin is not affected and works even with JDK9. | ||
Also note this issue: https://bugs.openjdk.java.net/browse/JDK-8074431 - this plugin is not affected and works even with JDK18. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>native2ascii-maven-plugin</artifactId> | ||
<version>2.0.2-SNAPSHOT</version> | ||
<version>2.1.0-SNAPSHOT</version> | ||
<packaging>maven-plugin</packaging> | ||
|
||
<name>Native2Ascii Maven Plugin</name> | ||
|
@@ -15,7 +15,7 @@ | |
<parent> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>mojo-parent</artifactId> | ||
<version>40</version> | ||
<version>69</version> | ||
</parent> | ||
|
||
<url>https://github.com/mojohaus/native2ascii-maven-plugin/wiki</url> | ||
|
@@ -32,7 +32,7 @@ | |
<developer> | ||
<id>dmatej</id> | ||
<name>David Matějček</name> | ||
<email>[email protected]</email> | ||
<email>[email protected]</email> | ||
<timezone>+1</timezone> | ||
<roles> | ||
<role>Developer</role> | ||
|
@@ -73,7 +73,7 @@ | |
<tag>HEAD</tag> | ||
</scm> | ||
<issueManagement> | ||
<system>JIRA</system> | ||
<system>GitHub</system> | ||
<url>https://github.com/mojohaus/native2ascii/issues</url> | ||
</issueManagement> | ||
<distributionManagement> | ||
|
@@ -87,46 +87,66 @@ | |
</snapshotRepository> | ||
</distributionManagement> | ||
<ciManagement> | ||
<system>TravisCI</system> | ||
<url>https://travis-ci.org/mojohaus/native2ascii-maven-plugin</url> | ||
<system>GitHub</system> | ||
<url>https://github.com/mojohaus/native2ascii-maven-plugin/actions</url> | ||
</ciManagement> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.apache.maven</groupId> | ||
<artifactId>maven-plugin-api</artifactId> | ||
<version>3.5.0</version> | ||
<version>3.8.6</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-plugin-plugin</artifactId> | ||
<version>3.5</version> | ||
<version>3.6.4</version> | ||
<scope>provided</scope> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>org.codehaus.plexus</groupId> | ||
<artifactId>*</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>org.apache.velocity</groupId> | ||
<artifactId>*</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.commons</groupId> | ||
<artifactId>commons-text</artifactId> | ||
<version>1.9</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.commons</groupId> | ||
<artifactId>commons-lang3</artifactId> | ||
<version>3.5</version> | ||
<version>3.12.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.junit.jupiter</groupId> | ||
<artifactId>junit-jupiter-api</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>4.13.1</version> | ||
<groupId>org.junit.jupiter</groupId> | ||
<artifactId>junit-jupiter-engine</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<maven.compiler.source>1.7</maven.compiler.source> | ||
<maven.compiler.target>1.7</maven.compiler.target> | ||
<maven.compiler.source>1.8</maven.compiler.source> | ||
<maven.compiler.target>1.8</maven.compiler.target> | ||
</properties> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-plugin-plugin</artifactId> | ||
<version>3.5</version> | ||
<configuration> | ||
<skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound> | ||
</configuration> | ||
|
@@ -143,7 +163,6 @@ | |
<!-- To run with different Maven versions use -Dinvoker.mavenHome --> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-invoker-plugin</artifactId> | ||
<version>3.0.1</version> | ||
<configuration> | ||
<debug>false</debug> | ||
<projectsDirectory>src/it</projectsDirectory> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
Introduction | ||
------ | ||
David Matejcek | ||
<[email protected]> | ||
<[email protected]> | ||
------ | ||
2017-12-23 | ||
------ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters