From 7cfd820f5bbc03e8143ebec150fa0f75c5890d9f Mon Sep 17 00:00:00 2001 From: Asjad J <97493880+Asjad-J@users.noreply.github.com> Date: Sun, 23 Jan 2022 09:40:01 +0500 Subject: [PATCH 1/6] Update README.md added link back to article: Generating a Java String of N Repeated Characters --- core-java-modules/core-java-string-algorithms-3/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/core-java-modules/core-java-string-algorithms-3/README.md b/core-java-modules/core-java-string-algorithms-3/README.md index e6dbf3a489..ba8509306e 100644 --- a/core-java-modules/core-java-string-algorithms-3/README.md +++ b/core-java-modules/core-java-string-algorithms-3/README.md @@ -4,6 +4,7 @@ This module contains articles about string-related algorithms. ### Relevant Articles: +- [Generating a Java String of N Repeated Characters](https://www.baeldung.com/java-string-of-repeated-characters) - [Check if Two Strings are Anagrams in Java](https://www.baeldung.com/java-strings-anagrams) - [Email Validation in Java](https://www.baeldung.com/java-email-validation-regex) - [Check if the First Letter of a String is Uppercase](https://www.baeldung.com/java-check-first-letter-uppercase) From 4d0b7e68998904c6c747edbd619dbf4b811c607c Mon Sep 17 00:00:00 2001 From: Asjad J <97493880+Asjad-J@users.noreply.github.com> Date: Sun, 23 Jan 2022 09:57:22 +0500 Subject: [PATCH 2/6] Update README.md added link back to article --- core-java-modules/core-java-17/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/core-java-modules/core-java-17/README.md b/core-java-modules/core-java-17/README.md index 4d1d7a5c49..1f061bd7c1 100644 --- a/core-java-modules/core-java-17/README.md +++ b/core-java-modules/core-java-17/README.md @@ -1,5 +1,6 @@ ### Relevant articles: +- [An Introduction to InstantSource in Java 17](https://www.baeldung.com/java-instantsource) - [Pattern Matching for Switch](https://www.baeldung.com/java-switch-pattern-matching) - [Introduction to HexFormat in Java 17](https://www.baeldung.com/java-hexformat) - [New Features in Java 17](https://www.baeldung.com/java-17-new-features) From 21b2f0127aa7ac3a9f587a246b9c38f2ca36af14 Mon Sep 17 00:00:00 2001 From: Asjad J <97493880+Asjad-J@users.noreply.github.com> Date: Sun, 23 Jan 2022 10:08:00 +0500 Subject: [PATCH 3/6] Update README.md add link back to article: Hidden Classes in Java 15 --- core-java-modules/core-java-15/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/core-java-modules/core-java-15/README.md b/core-java-modules/core-java-15/README.md index de503fbb31..4b163fcfb5 100644 --- a/core-java-modules/core-java-15/README.md +++ b/core-java-modules/core-java-15/README.md @@ -4,4 +4,5 @@ This module contains articles about Java 15. ### Relevant articles +- [Hidden Classes in Java 15](https://www.baeldung.com/java-hidden-classes) - [Sealed Classes and Interfaces in Java 15](https://www.baeldung.com/java-sealed-classes-interfaces) From 118a96846cc38086c0672eb4b2bd2c4a36840771 Mon Sep 17 00:00:00 2001 From: Asjad J <97493880+Asjad-J@users.noreply.github.com> Date: Sun, 23 Jan 2022 10:17:43 +0500 Subject: [PATCH 4/6] Create README.md added link back to article: Convert a Maven Build to Gradle --- gradle/maven-to-gradle/README.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 gradle/maven-to-gradle/README.md diff --git a/gradle/maven-to-gradle/README.md b/gradle/maven-to-gradle/README.md new file mode 100644 index 0000000000..bd6e435c9a --- /dev/null +++ b/gradle/maven-to-gradle/README.md @@ -0,0 +1,3 @@ +## Relevant Articles: + +[Convert a Maven Build to Gradle](https://www.baeldung.com/maven-convert-to-gradle) From 4bebebad691d4ca2cfe886a9a0a2f08121ff8019 Mon Sep 17 00:00:00 2001 From: Asjad J <97493880+Asjad-J@users.noreply.github.com> Date: Sun, 23 Jan 2022 10:22:06 +0500 Subject: [PATCH 5/6] Update README.md added link back to article: Get the Name of the Currently Executing Test in JUnit --- testing-modules/junit-5-advanced/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/testing-modules/junit-5-advanced/README.md b/testing-modules/junit-5-advanced/README.md index 7790cb6770..e970ba8c96 100644 --- a/testing-modules/junit-5-advanced/README.md +++ b/testing-modules/junit-5-advanced/README.md @@ -1,5 +1,6 @@ ## Relevant Articles: +- [Get the Name of the Currently Executing Test in JUnit](https://www.baeldung.com/junit-get-name-of-currently-executing-test) - [JUnit 5 TestWatcher API](https://www.baeldung.com/junit-testwatcher) - [JUnit Custom Display Name Generator API](https://www.baeldung.com/junit-custom-display-name-generator) - [@TestInstance Annotation in JUnit 5](https://www.baeldung.com/junit-testinstance-annotation) From de6d285eef568a3095913ab0248dd9fb71b6e4c1 Mon Sep 17 00:00:00 2001 From: Asjad J <97493880+Asjad-J@users.noreply.github.com> Date: Sun, 23 Jan 2022 10:25:53 +0500 Subject: [PATCH 6/6] Update README.md added link back to article: Cassandra Batch in Cassandra Query Language and Java --- persistence-modules/java-cassandra/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/persistence-modules/java-cassandra/README.md b/persistence-modules/java-cassandra/README.md index 735aabdf62..792ef143ab 100644 --- a/persistence-modules/java-cassandra/README.md +++ b/persistence-modules/java-cassandra/README.md @@ -1,4 +1,6 @@ ### Relevant Articles: + +- [Cassandra Batch in Cassandra Query Language and Java](https://www.baeldung.com/java-cql-cassandra-batch) - [A Guide to Cassandra with Java](http://www.baeldung.com/cassandra-with-java) - [Intro to DataStax Java Driver for Apache Cassandra](https://www.baeldung.com/cassandra-datastax-java-driver) - [CQL Data Types](https://www.baeldung.com/cassandra-data-types)