Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PR - Sonatype release 20240430 #663

Merged
merged 3 commits into from
Apr 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>zerocode-tdd-parent</artifactId>
<groupId>org.jsmart</groupId>
<version>1.3.43-SNAPSHOT</version>
<version>1.3.44-SNAPSHOT</version>
</parent>

<artifactId>zerocode-tdd</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
import static org.slf4j.LoggerFactory.getLogger;

/**
* <h3>External File Resolver</h3>
* <p>
* External File Resolver :
*
* Processes the Step definition and resolves any reference to the external file.
* <p>
*
* Given a Json Java map, it digs deep into the fields and finds the references to the external content
* in the classpath and replaces the value of this key with the content from the file.
*
Expand Down
2 changes: 1 addition & 1 deletion http-testing/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>zerocode-tdd-parent</artifactId>
<groupId>org.jsmart</groupId>
<version>1.3.43-SNAPSHOT</version>
<version>1.3.44-SNAPSHOT</version>
</parent>

<groupId>org.jsmart</groupId>
Expand Down
2 changes: 1 addition & 1 deletion junit5-testing/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>zerocode-tdd-parent</artifactId>
<groupId>org.jsmart</groupId>
<version>1.3.43-SNAPSHOT</version>
<version>1.3.44-SNAPSHOT</version>
</parent>

<artifactId>zerocode-tdd-jupiter</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion kafka-testing/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>zerocode-tdd-parent</artifactId>
<groupId>org.jsmart</groupId>
<version>1.3.43-SNAPSHOT</version>
<version>1.3.44-SNAPSHOT</version>
</parent>

<artifactId>kafka-testing</artifactId>
Expand Down
9 changes: 5 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<artifactId>zerocode-tdd-parent</artifactId>
<groupId>org.jsmart</groupId>
<version>1.3.43-SNAPSHOT</version>
<version>1.3.44-SNAPSHOT</version>

<packaging>pom</packaging>
<name>ZeroCode TDD Parent</name>
Expand Down Expand Up @@ -324,9 +324,7 @@
-
- How to check or reproduce this javadoc error?
- From your local laptop
- Option-1 : Run a maven "dry run" <- Results in error e.g. javadoc error due to JAVA_HOME not set - Option-2 : Run a maven "prepare" run <- Results in error e.g. javadoc error due to JAVA_HOME not set
-
- Note: or remove the specific plugins from the build section and try dry-run and prepare stages, if full "commenting out" has issues
- Option-1 : Run a maven "dry run" <- Results in error e.g. javadoc error due to JAVA_HOME not set - Option-2 : Run a maven "prepare" run <- Results in error e.g. javadoc error due to JAVA_HOME not set - - Note: or remove the specific plugins from the build section and try dry-run and prepare stages, if full "commenting out" has issues
-->

<build>
Expand All @@ -339,6 +337,9 @@
<configuration>
<source>${java-compiler-source.version}</source>
<target>${java-compiler-target.version}</target>
<compilerArgs>
<arg>-proc:none</arg>
</compilerArgs>
</configuration>
</plugin>
<!--<plugin>
Expand Down
2 changes: 1 addition & 1 deletion zerocode-maven-archetype/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.jsmart</groupId>
<artifactId>zerocode-tdd-parent</artifactId>
<version>1.3.43-SNAPSHOT</version>
<version>1.3.44-SNAPSHOT</version>
</parent>
<artifactId>zerocode-maven-archetype</artifactId>

Expand Down