This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-parent.git
The following commit(s) were added to refs/heads/master by this push: new 29fc386 Use GAV coordinates Maven Central coordinates to make sure to pick up the latest 29fc386 is described below commit 29fc38648da629def33389736edfc98d09923c39 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Thu Sep 1 10:40:24 2022 -0400 Use GAV coordinates Maven Central coordinates to make sure to pick up the latest --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 6c87b22..1532fdc 100644 --- a/README.md +++ b/README.md @@ -45,8 +45,9 @@ Apache Commons Parent [](https://travis-ci.org/apache/commons-commons-parent) [](https://github.com/apache/commons-commons-parent/actions) -[](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-parent/) -[](https://javadoc.io/doc/org.apache.commons/commons-parent/54) +[](https://coveralls.io/r/apache/commons-commons-parent) +[](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-parent/?gav=true) +[](https://javadoc.io/doc/org.apache.commons/commons-parent/54-SNAPSHOT) The Apache Commons Parent POM provides common settings for all Apache Commons components. @@ -67,7 +68,7 @@ Alternatively you can pull it from the central Maven repositories: <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-parent</artifactId> - <version>54</version> + <version>54-SNAPSHOT</version> </dependency> ``` @@ -79,7 +80,7 @@ There are some guidelines which will make applying PRs easier for us: + No tabs! Please use spaces for indentation. + Respect the code style. + Create minimal diffs - disable on save actions like reformat source code or organize imports. If you feel the source code should be reformatted create a separate PR for this change. -+ Provide JUnit tests for your changes and make sure your changes don't break any existing tests by running ```mvn```. ++ Provide JUnit tests for your changes and make sure your changes don't break any existing tests by running ```mvn clean test```. If you plan to contribute on a regular basis, please consider filing a [contributor license agreement](https://www.apache.org/licenses/#clas). You can learn more about contributing via GitHub in our [contribution guidelines](CONTRIBUTING.md).