Skip to content

Commit ddc2fc4

Browse files
committed
chore: fix artifact id
1 parent 2260ad4 commit ddc2fc4

File tree

2 files changed

+31
-27
lines changed

2 files changed

+31
-27
lines changed

README.md

Lines changed: 30 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,39 @@
1-
# unit5-tag-check-maven-plugin
1+
# junit5-tag-check-maven-plugin
22

33
A simple plugin to check the presence of JUnit5 test by tags.
44

55
[![Keep a Changelog v1.1.0 badge](https://img.shields.io/badge/changelog-Keep%20a%20Changelog%20v1.1.0-%23E05735)](CHANGELOG.md)
6-
[![Maven Central](https://img.shields.io/maven-central/v/org.fugerit.java/unit5-tag-check-maven-plugin.svg)](https://central.sonatype.com/artifact/org.fugerit.java/unit5-tag-check-maven-plugin)
6+
[![Maven Central](https://img.shields.io/maven-central/v/org.fugerit.java/junit5-tag-check-maven-plugin.svg)](https://central.sonatype.com/artifact/org.fugerit.java/junit5-tag-check-maven-plugin)
77
[![license](https://img.shields.io/badge/License-Apache%20License%202.0-teal.svg)](https://opensource.org/licenses/Apache-2.0)
8-
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=fugerit-org_unit5-tag-check-maven-plugin&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=fugerit-org_unit5-tag-check-maven-plugin)
9-
[![Coverage](https://sonarcloud.io/api/project_badges/measure?project=fugerit-org_unit5-tag-check-maven-plugin&metric=coverage)](https://sonarcloud.io/summary/new_code?id=fugerit-org_unit5-tag-check-maven-plugin)
8+
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=fugerit-org_junit5-tag-check-maven-plugin&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=fugerit-org_junit5-tag-check-maven-plugin)
9+
[![Coverage](https://sonarcloud.io/api/project_badges/measure?project=fugerit-org_junit5-tag-check-maven-plugin&metric=coverage)](https://sonarcloud.io/summary/new_code?id=fugerit-org_junit5-tag-check-maven-plugin)
1010

11-
Accepted config params are :
12-
* configPath
13-
* idCatalog
14-
15-
Here a sample configuration :
11+
Here a sample configuration
1612

1713
```
18-
<plugin>
19-
<groupId>org.fugerit.java</groupId>
20-
<artifactId>unit5-tag-check-maven-plugin</artifactId>
21-
<version>${openapi-doc-version}</version>
22-
<configuration>
23-
<configPath>src/config/openapi-doc-config.xml</configPath>
24-
<idCatalog>openapi</idCatalog>
25-
</configuration>
26-
<executions>
27-
<execution>
28-
<id>openapi</id>
29-
<goals>
30-
<goal>generate</goal>
31-
</goals>
32-
</execution>
33-
</executions>
34-
</plugin>
14+
<plugin>
15+
<groupId>org.fugerit.java</groupId>
16+
<artifactId>junit5-tag-check-maven-plugin</artifactId>
17+
<version>${junit5-tag-check-maven-plugin-version}</version>
18+
<executions>
19+
<execution>
20+
<id>report-executed-test-tags</id>
21+
<phase>verify</phase>
22+
<goals>
23+
<goal>report-executed-tags</goal>
24+
</goals>
25+
<configuration>
26+
<format>html</format>
27+
<outputFile>${project.build.directory}/executed-test-tag-report.html</outputFile>
28+
<requiredTags>
29+
<requiredTag>security</requiredTag>
30+
<requiredTag>authorized</requiredTag>
31+
<requiredTag>unauthorized</requiredTag>
32+
<requiredTag>forbidden</requiredTag>
33+
</requiredTags>
34+
<failOnMissingTag>true</failOnMissingTag>
35+
</configuration>
36+
</execution>
37+
</executions>
38+
</plugin>
3539
```

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44

5-
<artifactId>unit5-tag-check-maven-plugin</artifactId>
5+
<artifactId>junit5-tag-check-maven-plugin</artifactId>
66

77
<parent>
88
<groupId>org.fugerit.java</groupId>

0 commit comments

Comments
 (0)