Skip to content

Commit

Permalink
Release 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalgn committed Apr 11, 2024
1 parent e2d20b4 commit e29d1fa
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ by adding the following `.mvn/extensions.xml` file to the project:
<extension>
<groupId>com.github.pascalgn</groupId>
<artifactId>properties-maven-extension</artifactId>
<version>0.4.0</version>
<version>0.5.0</version>
</extension>
</extensions>
```
Expand All @@ -47,7 +47,7 @@ so that the final project version will be `1.2.3.abcd123` (depending on the curr

You will need at least Maven 3.5.0 for this to work. See
[the release notes](https://maven.apache.org/docs/3.5.0/release-notes.html) for more information.
You also need to run your Maven build with at least Java 8 (due to the [JGit](https://eclipse.org/jgit) dependency).
You also need to run your Maven build with at least Java 11 (due to the [JGit](https://eclipse.org/jgit) dependency).

## Properties

Expand Down Expand Up @@ -76,6 +76,12 @@ or a [pull request](https://github.com/pascalgn/properties-maven-extension/pulls
[branch name is not set due to detached HEAD](https://stackoverflow.com/questions/39297783/detached-head-w-jenkins-git-plugin-and-branch-specifier)
* The versioning scheme of this project follows [semantic versioning](http://semver.org/)

## Changelog

### Version 0.5.0

- Changed required Java version from 1.8 to 11

## Related projects

* There are already plugins providing properties, like [maven-git-commit-id-plugin](https://github.com/ktoso/maven-git-commit-id-plugin).
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

<groupId>com.github.pascalgn</groupId>
<artifactId>properties-maven-extension</artifactId>
<version>0.4.0</version>
<version>0.5.0</version>
<packaging>jar</packaging>

<name>properties-maven-extension</name>
Expand Down Expand Up @@ -81,8 +81,8 @@
<configuration>
<rules>
<requireJavaVersion>
<version>[1.8.0,)</version>
<message>Wrong Java version. It should be 1.8.0 or higher!</message>
<version>[11.0,)</version>
<message>Wrong Java version. It should be 11.0 or higher!</message>
</requireJavaVersion>
<requireMavenVersion>
<version>[3.5.0,)</version>
Expand Down

0 comments on commit e29d1fa

Please sign in to comment.