Skip to content

Commit

Permalink
Fix surefire usage (#184)
Browse files Browse the repository at this point in the history
* Fix surefire usage

* Correct changelog

---------

Co-authored-by: Michael Lieshoff <[email protected]>
  • Loading branch information
mlieshoff and Michael Lieshoff authored Feb 15, 2024
1 parent 7db66b0 commit f8a7b22
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 18 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## [Unreleased]

## [4.0.1] - 2024-05-15

### Fixed

- surefire now uses the build dependencies and no more inner ones.

## [4.0.0] - 2023-12-18

### Added
Expand Down Expand Up @@ -151,7 +157,8 @@

- Create a Release job (#152)

[unreleased]: https://github.com/mlieshoff/jcrapi2/compare/v4.0.0...HEAD
[unreleased]: https://github.com/mlieshoff/jcrapi2/compare/v4.0.1...HEAD
[4.0.1]: https://github.com/mlieshoff/jcrapi2/compare/v4.0.0...4.0.1
[4.0.0]: https://github.com/mlieshoff/jcrapi2/compare/v3.0.5...4.0.0
[3.0.5]: https://github.com/mlieshoff/jcrapi2/compare/v3.0.4...3.0.5
[3.0.4]: https://github.com/mlieshoff/jcrapi2/compare/v3.0.3...3.0.4
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[![](https://img.shields.io/badge/java-packagecloud.io-844fec.svg)](https://packagecloud.io/)
[![Nightlies](https://github.com/mlieshoff/jcrapi2/actions/workflows/nightlies.yml/badge.svg)](https://github.com/mlieshoff/jcrapi2/actions/workflows/nightlies.yml)

# jcrapi2 4.0.0
# jcrapi2 4.0.1
A Java Wrapper For Official Supercell Clash Royal Api

## Why we don't use the Swagger scheme?
Expand Down Expand Up @@ -454,15 +454,15 @@ All requests are returning *java.concurrent.Future*. The execution will be async

to Gradle:
```groovy
implementation group: 'jcrapi2', name: 'jcrapi2', version: '4.0.0'
implementation group: 'jcrapi2', name: 'jcrapi2', version: '4.0.1'
```

to Maven:
```xml
<dependency>
<groupId>jcrapi2</groupId>
<artifactId>jcrapi2</artifactId>
<version>4.0.0</version>
<version>4.0.1</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v4.0.0
v4.0.1
14 changes: 1 addition & 13 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>jcrapi2</artifactId>
<packaging>jar</packaging>
<version>4.0.0</version>
<version>4.0.1</version>
<groupId>jcrapi2</groupId>
<url>https://maven.apache.org</url>
<inceptionYear>2018</inceptionYear>
Expand Down Expand Up @@ -168,18 +168,6 @@
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>${version.maven.surfire}</version>
<dependencies>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-surefire-provider</artifactId>
<version>${version.maven.surfire.junit}</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${version.junit}</version>
</dependency>
</dependencies>
<configuration>
<includes>
<include>**/EndToEnd.java</include>
Expand Down

0 comments on commit f8a7b22

Please sign in to comment.