Skip to content

Commit

Permalink
merge develop, update README
Browse files Browse the repository at this point in the history
see #53
  • Loading branch information
jangalinski committed Apr 12, 2024
1 parent 7847943 commit ae21452
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 15 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ see [official plugins](https://maven.apache.org/plugins/index.html)
| [maven-deploy](https://maven.apache.org/plugins/maven-deploy-plugin/) | 3.1.1 | - |
| [maven-enforcer](https://maven.apache.org/enforcer/maven-enforcer-plugin/) | 3.4.1 | enforce project setup |
| [maven-failsafe](https://maven.apache.org/surefire/maven-failsafe-plugin/) | 3.2.5 | testing |
| [maven-gpg](https://maven.apache.org/plugins/maven-gpg-plugin/) | 3.2.1 | sign artifacts for release |
| [maven-gpg](https://maven.apache.org/plugins/maven-gpg-plugin/) | 3.2.3 | sign artifacts for release |
| [maven-install](https://maven.apache.org/plugins/maven-install-plugin/) | 3.1.1 | - |
| [maven-jar-plugin](https://maven.apache.org/plugins/maven-jar-plugin/) | 3.3.0 | - |
| [maven-resources](https://maven.apache.org/plugins/maven-resources-plugin/) | 3.3.1 | filter resources |
Expand Down
30 changes: 16 additions & 14 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@
<kp.compile.useIncrementalKotlinCompiler>false</kp.compile.useIncrementalKotlinCompiler>
<kp.patternClassITest>**/*ITest.*</kp.patternClassITest>
<kp.patternClassTCTest>**/*TCTest.*</kp.patternClassTCTest>
<kp.javaOpenModules>--add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/java.io=ALL-UNNAMED --add-opens=java.base/java.util=ALL-UNNAMED</kp.javaOpenModules>
<kp.javaOpenModules>--add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/java.io=ALL-UNNAMED --add-opens=java.base/java.util=ALL-UNNAMED
</kp.javaOpenModules>
<kp.skipITests>false</kp.skipITests>

<!-- LANGUAGE VERSIONS -->
Expand Down Expand Up @@ -468,25 +469,25 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.2.5</version>
<configuration>
<classesDirectory>${project.build.outputDirectory}</classesDirectory>
<skip>${kp.skipITests}</skip>
<includes>
<include>${kp.patternClassITest}</include>
<include>${kp.patternClassTCTest}</include>
</includes>
<!--suppress UnresolvedMavenProperty -->
<argLine>${failsafeArgLine} ${kp.javaOpenModules} -Djava.awt.headless=true -XX:+StartAttachListener</argLine>
<systemPropertyVariables>
<jgiven.report.dir>${project.build.directory}/jgiven-reports/json</jgiven.report.dir>
</systemPropertyVariables>
</configuration>
<executions>
<execution>
<id>integration-tests</id>
<goals>
<goal>integration-test</goal>
</goals>
<configuration>
<skip>${kp.skipITests}</skip>
<classesDirectory>${project.build.outputDirectory}</classesDirectory>
<includes>
<include>${kp.patternClassITest}</include>
<include>${kp.patternClassTCTest}</include>
</includes>
<!--suppress UnresolvedMavenProperty -->
<argLine>${failsafeArgLine} ${kp.javaOpenModules} -Djava.awt.headless=true -XX:+StartAttachListener</argLine>
<systemPropertyVariables>
<jgiven.report.dir>${project.build.directory}/jgiven-reports/json</jgiven.report.dir>
</systemPropertyVariables>
</configuration>
</execution>
</executions>
</plugin>
Expand Down Expand Up @@ -573,6 +574,7 @@
<goal>prepare-agent</goal>
</goals>
<configuration>
<!--suppress UnresolvedMavenProperty -->
<skip>${skipTests}</skip>
<destFile>${project.build.directory}/coverage-reports/jacoco-ut.exec</destFile>
<propertyName>surefireArgLine</propertyName>
Expand Down

0 comments on commit ae21452

Please sign in to comment.