volodya-lombrozo / jtcop

Maven Plugin for checking tests in Java projects
MIT License
18 stars 2 forks source link

`skip` option is missing #414

Closed yegor256 closed 2 months ago

yegor256 commented 2 months ago

I'm trying to do this:

          <plugin>
            <groupId>com.github.volodya-lombrozo</groupId>
            <artifactId>jtcop-maven-plugin</artifactId>
            <version>1.2.4</version>
            <executions>
              <execution>
                <phase>verify</phase>
                <goals>
                  <goal>check</goal>
                </goals>
                <configuration>
                  <skip>true</skip>
                </configuration>
              </execution>
            </executions>
          </plugin>

However, it doesn't work. The skip parameter is a good practice for Maven plugins.

yegor256 commented 2 months ago

@volodya-lombrozo please, pay attention to this

volodya-lombrozo commented 2 months ago

@yegor256 Could you try it one more time with 1.3.1 version please? I added skip option.

yegor256 commented 2 months ago

@volodya-lombrozo still not there: https://repo1.maven.org/maven2/com/github/volodya-lombrozo/jtcop-maven-plugin/

yegor256 commented 2 months ago

@volodya-lombrozo still nothing. are you sure it's released?

volodya-lombrozo commented 2 months ago

@yegor256 Thank you! Actually I had some problems with authetification in Nexus. So, I fixed the problem and released the 1.3.1 version properly and It has already appear at https://repo1.maven.org/maven2/com/github/volodya-lombrozo/jtcop-maven-plugin/. Could you try one more time, please?

yegor256 commented 2 months ago

@volodya-lombrozo now it works, thanks!