Skip to content

Commit

Permalink
Merge pull request #173 from eliasnogueira/general-updates
Browse files Browse the repository at this point in the history
General updates
  • Loading branch information
eliasnogueira committed Aug 8, 2024
2 parents 0ff55d8 + e859aeb commit 2b7b38e
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/merge-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
run: mvn -q clean compile

- name: Test
run: mvn -q test
run: mvn test

- name: Publish artifact on GitHub Packages
run: mvn -q deploy -DskipTests
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/on-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
${{ runner.os }}-maven-
- name: Build
run: mvn clean compile
run: mvn clean -q compile

- name: Test
run: mvn -q test
run: mvn test
2 changes: 1 addition & 1 deletion .mvn/jvm.config
Original file line number Diff line number Diff line change
@@ -1 +1 @@
-Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn
-Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.3.8] - 08-08-2024

### Changed
- Updated the following libraries
- `junit -> 5.10.3`
- Added the `maven-surefire-junit5-tree-reporter` plugin to the `maven-surefire-plugin` execution
- Changed the GitHub actions workflow to not quite the output while running tests
- Updated the Maven Wrapper

## [1.3.7] - 24-07-2024

### Changed
Expand Down
23 changes: 23 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
<java.version>22</java.version>
<maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version>
<maven-surefire-plugin.version>3.2.5</maven-surefire-plugin.version>
<maven-surefire-junit5-tree-reporter.version>1.3.0</maven-surefire-junit5-tree-reporter.version>

<springdoc-openapi-starter-webmvc-ui.version>2.6.0</springdoc-openapi-starter-webmvc-ui.version>
<modelmapper.version>3.2.0</modelmapper.version>
Expand Down Expand Up @@ -217,6 +218,28 @@
</to>
</configuration>
</plugin>

<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
<dependencies>
<dependency>
<groupId>me.fabriciorby</groupId>
<artifactId>maven-surefire-junit5-tree-reporter</artifactId>
<version>${maven-surefire-junit5-tree-reporter.version}</version>
</dependency>
</dependencies>
<configuration>
<reportFormat>plain</reportFormat>
<consoleOutputReporter>
<disable>true</disable>
</consoleOutputReporter>
<statelessTestsetInfoReporter
implementation="org.apache.maven.plugin.surefire.extensions.junit5.JUnit5StatelessTestsetInfoTreeReporter">
<theme>UNICODE</theme>
</statelessTestsetInfoReporter>
</configuration>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit 2b7b38e

Please sign in to comment.