Skip to content

Commit c1829f6

Browse files
author
Jonathan Cook
committed
Merge branch 'master' of https://github.com/eugenp/tutorials
2 parents 89ad087 + 8e5797e commit c1829f6

File tree

523 files changed

+5526
-5006
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

523 files changed

+5526
-5006
lines changed

.gitignore

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,4 +84,10 @@ software-security/sql-injection-samples/derby.log
8484
spring-soap/src/main/java/com/baeldung/springsoap/gen/
8585
/report-*.json
8686
transaction.log
87-
*-shell.log
87+
*-shell.log
88+
89+
apache-cxf/cxf-aegis/baeldung.xml
90+
apache-fop/src/test/resources/input.xml
91+
apache-fop/src/test/resources/output_herold.pdf
92+
apache-fop/src/test/resources/output_html2fo.pdf
93+
apache-fop/src/test/resources/output_jtidy.pdf

algorithms-miscellaneous-3/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,6 @@ This module contains articles about algorithms. Some classes of algorithms, e.g.
1616
- [Efficient Word Frequency Calculator in Java](https://www.baeldung.com/java-word-frequency)
1717
- [Interpolation Search in Java](https://www.baeldung.com/java-interpolation-search)
1818
- [The K-Means Clustering Algorithm in Java](https://www.baeldung.com/java-k-means-clustering-algorithm)
19+
- [Creating a Custom Annotation in Java](https://www.baeldung.com/java-custom-annotation)
20+
- [Breadth-First Search Algorithm in Java](https://www.baeldung.com/java-breadth-first-search)
1921
- More articles: [[<-- prev]](/algorithms-miscellaneous-2) [[next -->]](/algorithms-miscellaneous-4)

algorithms-miscellaneous-4/README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
## Algorithms - Miscellaneous
22

3-
This module contains articles about algorithms. Some classes of algorithms, e.g., [sorting](/../algorithms-sorting) and
4-
[genetic algorithms](/../algorithms-genetic), have their own dedicated modules.
3+
This module contains articles about algorithms. Some classes of algorithms, e.g., [sorting](https://github.com/eugenp/tutorials/blob/algorithms-sorting) and [genetic algorithms](https://github.com/eugenp/tutorials/blob/algorithms-genetic), have their own dedicated modules.
54

65
### Relevant articles:
76

@@ -12,4 +11,4 @@ This module contains articles about algorithms. Some classes of algorithms, e.g.
1211
- [Find Substrings That Are Palindromes in Java](https://www.baeldung.com/java-palindrome-substrings)
1312
- [Find the Longest Substring without Repeating Characters](https://www.baeldung.com/java-longest-substring-without-repeated-characters)
1413
- [Permutations of an Array in Java](https://www.baeldung.com/java-array-permutations)
15-
- More articles: [[<-- prev]](/../algorithms-miscellaneous-3) [[next -->]](/../algorithms-miscellaneous-5)
14+
- More articles: [[<-- prev]](/algorithms-miscellaneous-3) [[next -->]](/algorithms-miscellaneous-5)

algorithms-miscellaneous-5/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ This module contains articles about algorithms. Some classes of algorithms, e.g.
88
- [Converting Between Byte Arrays and Hexadecimal Strings in Java](https://www.baeldung.com/java-byte-arrays-hex-strings)
99
- [Reversing a Binary Tree in Java](https://www.baeldung.com/java-reversing-a-binary-tree)
1010
- [Find If Two Numbers Are Relatively Prime in Java](https://www.baeldung.com/java-two-relatively-prime-numbers)
11+
- [Knapsack Problem Implementation in Java](https://www.baeldung.com/java-knapsack)
1112
- More articles: [[<-- prev]](/../algorithms-miscellaneous-4)

algorithms-sorting/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,4 @@ This module contains articles about sorting algorithms.
1717
- [Sorting Strings by Contained Numbers in Java](https://www.baeldung.com/java-sort-strings-contained-numbers)
1818
- [Radix Sort in Java](https://www.baeldung.com/java-radix-sort)
1919
- [Sorting a String Alphabetically in Java](https://www.baeldung.com/java-sort-string-alphabetically)
20+
- [Bucket Sort in Java](https://www.baeldung.com/java-bucket-sort)

apache-fop/src/test/resources/input.xml

Lines changed: 0 additions & 1674 deletions
This file was deleted.
-33.9 KB
Binary file not shown.
-14.3 KB
Binary file not shown.
-25.3 KB
Binary file not shown.

code-generation/pom.xml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,16 @@
1212
</parent>
1313

1414
<dependencies>
15+
<dependency>
16+
<groupId>com.google.auto.value</groupId>
17+
<artifactId>auto-value-annotations</artifactId>
18+
<version>${auto-value.version}</version>
19+
</dependency>
1520
<dependency>
1621
<groupId>com.google.auto.value</groupId>
1722
<artifactId>auto-value</artifactId>
1823
<version>${auto-value.version}</version>
24+
<scope>provided</scope>
1925
</dependency>
2026
<dependency>
2127
<groupId>com.google.auto.factory</groupId>
@@ -43,9 +49,9 @@
4349
</dependencies>
4450

4551
<properties>
46-
<auto-value.version>1.3</auto-value.version>
47-
<auto-factory.version>1.0-beta5</auto-factory.version>
48-
<auto-service.version>1.0-rc5</auto-service.version>
52+
<auto-value.version>1.6.6</auto-value.version>
53+
<auto-factory.version>1.0-beta6</auto-factory.version>
54+
<auto-service.version>1.0-rc6</auto-service.version>
4955
<guice.version>4.2.0</guice.version>
5056
</properties>
5157

0 commit comments

Comments
 (0)