Skip to content

Commit 881953b

Browse files
authored
Merge branch 'master' into jsonPathJacksonProvider
2 parents 713ecf0 + 6e1c2be commit 881953b

File tree

7 files changed

+34
-21
lines changed

7 files changed

+34
-21
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<img width="135" height="120" alt="Zerocode" src="https://user-images.githubusercontent.com/12598420/51964581-e5a78e80-245e-11e9-9400-72c4c02ac555.png"> Zerocode
22
===
3-
Automated API, Kafka and Micro-services testing has never been so easy
3+
Kafka Data streams and Micro-services API automated regression testing via JSON or YAML
44

55

66
[![API](https://img.shields.io/badge/api-automation-blue)](https://github.com/authorjapps/zerocode/wiki/What-is-Zerocode-Testing)
@@ -22,8 +22,8 @@ It has the best of best ideas and practices from the community to keep it super
2222
Documentation
2323
===
2424
For a quick introduction to Zerocode and its features, visit the
25-
+ [Zerocode TDD Doc Site](https://zerocode-tdd-docs.pages.dev)
26-
+ [Wan to contribute or Improve](https://github.com/authorjapps/zerocode/wiki/Documentation-How-To-Fix-Steps)? Steps and guidelines are [here](https://github.com/authorjapps/zerocode/wiki/Documentation-How-To-Fix-Steps)
25+
+ [Zerocode TDD Documentation](https://zerocode-tdd-docs.pages.dev)
26+
+ [Want to contribute/amend the docs](https://github.com/authorjapps/zerocode/wiki/Documentation-How-To-Fix-Steps)? Steps and guidelines are [here](https://github.com/authorjapps/zerocode/wiki/Documentation-How-To-Fix-Steps)
2727

2828
IDE Support By
2929
===

core/pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>zerocode-tdd-parent</artifactId>
66
<groupId>org.jsmart</groupId>
7-
<version>1.3.38-SNAPSHOT</version>
7+
<version>1.3.43-SNAPSHOT</version>
88
</parent>
99

1010
<artifactId>zerocode-tdd</artifactId>
@@ -23,7 +23,8 @@
2323
<url>https://github.com/authorjapps/zerocode</url>
2424
<connection>scm:git:[email protected]:authorjapps/zerocode.git</connection>
2525
<developerConnection>scm:git:[email protected]:authorjapps/zerocode.git</developerConnection>
26-
</scm>
26+
<tag>HEAD</tag>
27+
</scm>
2728

2829
<developers>
2930
<developer>

http-testing/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>zerocode-tdd-parent</artifactId>
66
<groupId>org.jsmart</groupId>
7-
<version>1.3.38-SNAPSHOT</version>
7+
<version>1.3.43-SNAPSHOT</version>
88
</parent>
99

1010
<groupId>org.jsmart</groupId>

junit5-testing/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>zerocode-tdd-parent</artifactId>
66
<groupId>org.jsmart</groupId>
7-
<version>1.3.38-SNAPSHOT</version>
7+
<version>1.3.43-SNAPSHOT</version>
88
</parent>
99

1010
<artifactId>zerocode-tdd-jupiter</artifactId>

kafka-testing/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>zerocode-tdd-parent</artifactId>
66
<groupId>org.jsmart</groupId>
7-
<version>1.3.38-SNAPSHOT</version>
7+
<version>1.3.43-SNAPSHOT</version>
88
</parent>
99

1010
<artifactId>kafka-testing</artifactId>

pom.xml

Lines changed: 24 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<artifactId>zerocode-tdd-parent</artifactId>
1111
<groupId>org.jsmart</groupId>
12-
<version>1.3.38-SNAPSHOT</version>
12+
<version>1.3.43-SNAPSHOT</version>
1313

1414
<packaging>pom</packaging>
1515
<name>ZeroCode TDD Parent</name>
@@ -26,7 +26,8 @@
2626
<url>https://github.com/authorjapps/zerocode</url>
2727
<connection>scm:git:[email protected]:authorjapps/zerocode.git</connection>
2828
<developerConnection>scm:git:[email protected]:authorjapps/zerocode.git</developerConnection>
29-
</scm>
29+
<tag>HEAD</tag>
30+
</scm>
3031

3132
<modules>
3233
<module>core</module>
@@ -316,6 +317,17 @@
316317
</dependencies>
317318
</dependencyManagement>
318319

320+
<!--
321+
- Commented to avoid javadoc error during maven release to Nexus central.
322+
- Uncomment this only when needed or if any other module dependent on this section
323+
- Check, if the CI build is fine, no need to uncomment this section.
324+
-
325+
- How to check or reproduce this javadoc error?
326+
- From your local laptop
327+
- 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
328+
-
329+
- Note: or remove the specific plugins from the build section and try dry-run and prepare stages, if full "commenting out" has issues
330+
-->
319331

320332
<build>
321333
<pluginManagement>
@@ -329,31 +341,31 @@
329341
<target>${java-compiler-target.version}</target>
330342
</configuration>
331343
</plugin>
332-
<plugin>
344+
<!--<plugin>
333345
<groupId>org.apache.maven.plugins</groupId>
334346
<artifactId>maven-assembly-plugin</artifactId>
335347
<version>${maven-assembly-plugin.version}</version>
336-
</plugin>
348+
</plugin>-->
337349
<plugin>
338350
<groupId>org.apache.maven.plugins</groupId>
339351
<artifactId>maven-source-plugin</artifactId>
340352
<version>${maven-source-plugin.version}</version>
341353
</plugin>
342-
<plugin>
354+
<!--<plugin>
343355
<groupId>org.apache.maven.plugins</groupId>
344356
<artifactId>maven-javadoc-plugin</artifactId>
345357
<version>${maven-javadoc-plugin.version}</version>
346-
</plugin>
358+
</plugin>-->
347359
<plugin>
348360
<groupId>org.apache.maven.plugins</groupId>
349361
<artifactId>maven-gpg-plugin</artifactId>
350362
<version>${maven-gpg-plugin.version}</version>
351363
</plugin>
352-
<plugin>
364+
<!--<plugin>
353365
<groupId>org.apache.maven.plugins</groupId>
354366
<artifactId>maven-release-plugin</artifactId>
355367
<version>${maven-release-plugin.version}</version>
356-
</plugin>
368+
</plugin>-->
357369
<plugin>
358370
<groupId>org.apache.maven.plugins</groupId>
359371
<artifactId>maven-surefire-plugin</artifactId>
@@ -367,7 +379,8 @@
367379
</plugins>
368380
</pluginManagement>
369381

370-
<!-- Uncomment this for uber jar -->
382+
383+
<!-- Uncomment this for uber jar -->
371384
<!--
372385
<plugins>
373386
<plugin>
@@ -385,8 +398,7 @@
385398
</execution>
386399
</executions>
387400
</plugin>
388-
</plugins>
389-
-->
390-
401+
</plugins>
402+
-->
391403
</build>
392404
</project>

zerocode-maven-archetype/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.jsmart</groupId>
66
<artifactId>zerocode-tdd-parent</artifactId>
7-
<version>1.3.38-SNAPSHOT</version>
7+
<version>1.3.43-SNAPSHOT</version>
88
</parent>
99
<artifactId>zerocode-maven-archetype</artifactId>
1010

0 commit comments

Comments
 (0)