Skip to content

Commit

Permalink
java: Fix urls in project metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
mpkorstanje committed Feb 23, 2024
1 parent d12f7ea commit ae0b6f2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- [JavaScript] Fix test execution in Windows - Closes (cucumber/gherkin-utils#2)
- [Java] Fix docstring pretty formatting ([#58](https://github.com/cucumber/gherkin-utils/issues/58))
- Table formatting for full width characters ([#53](https://github.com/cucumber/gherkin-utils/pull/53))
- [Java] Fix urls in project metadata

## [8.0.5] - 2023-06-02
### Changed
Expand Down
7 changes: 3 additions & 4 deletions java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
<name>Gherkin Utils</name>
<description>Gherkin utils for doing things such as walking a Gherkin tree or pretty printing Gherkin files.
</description>
<url>https://github.com/cucumber/common</url>

<properties>
<project.Automatic-Module-Name>io.cucumber.gherkin.utils</project.Automatic-Module-Name>
Expand All @@ -24,9 +23,9 @@
</properties>

<scm>
<connection>scm:git:git://github.com/cucumber/common.git</connection>
<developerConnection>scm:git:git@github.com:cucumber/common.git</developerConnection>
<url>git://github.com/cucumber/common.git</url>
<connection>scm:git:git://github.com/cucumber/gherkin-utils.git</connection>
<developerConnection>scm:git:git@github.com:cucumber/gherkin-utils.git</developerConnection>
<url>git://github.com/cucumber/gherkin-utils.git</url>
<tag>HEAD</tag>
</scm>

Expand Down

0 comments on commit ae0b6f2

Please sign in to comment.