Skip to content

Commit

Permalink
feat(#71): update version to 0.1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
volodya-lombrozo committed Mar 13, 2023
1 parent cd63f7d commit 0ef4a02
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# jtcop

[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.volodya-lombrozo/jtcop/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.github.volodya-lombrozo/jtcop)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.volodya-lombrozo/jtcop-maven-plugin/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.github.volodya-lombrozo/jtcop-maven-plugin)

Almost each project uses unit tests in its codebase. It is important to have a
common pattern of naming all that tests, because otherwise the project and tests
Expand Down Expand Up @@ -73,15 +73,15 @@ In order to use the plugin with the latest version just invoke the next command
in the root of your project:

```shell
mvn jtcop:check
mvn com.github.volodya-lombrozo:jtcop-maven-plugin:check
```

After that you will see the result of the plugin execution in the console. If
you want to use specific (older) version of the plugin, for example `0.1.8`,
you want to use specific (older) version of the plugin, for example `0.1.9`,
just run the next maven command with specified version:

```shell
mvn jtcop:0.1.8:check
mvn com.github.volodya-lombrozo:jtcop-maven-plugin:0.1.9:check
```

### Add the plugin to your `pom.xml`
Expand All @@ -96,7 +96,7 @@ In order to do that, just add the next snippet to your `pom.xml`:
<plugin>
<groupId>com.github.volodya-lombrozo</groupId>
<artifactId>jtcop-maven-plugin</artifactId>
<version>0.1.8</version>
<version>0.1.9</version>
<executions>
<execution>
<goals>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -206,8 +206,8 @@ SOFTWARE.
</plugin>
<plugin>
<groupId>com.github.volodya-lombrozo</groupId>
<artifactId>test-naming-conventions</artifactId>
<version>0.1.8</version>
<artifactId>jtcop-maven-plugin</artifactId>
<version>0.1.9</version>
<executions>
<execution>
<phase>verify</phase>
Expand Down

0 comments on commit 0ef4a02

Please sign in to comment.