Skip to content

Commit 3567cdb

Browse files
committed
Sync with upstream
2 parents ffd71f5 + 3140084 commit 3567cdb

File tree

4,123 files changed

+53241
-28528
lines changed

Some content is hidden

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

4,123 files changed

+53241
-28528
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ target/
3939
spring-openid/src/main/resources/application.properties
4040
.recommenders/
4141
/spring-hibernate4/nbproject/
42-
spring-security-openid/src/main/resources/application.properties
4342

4443
spring-all/*.log
4544

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
**UPDATE**: The price of "Learn Spring Security OAuth" will permanently change on the 11th of December, along with the upcoming OAuth2 material: http://bit.ly/github-lss
12

23
The Courses
34
==============================

akka-http/pom.xml

Lines changed: 41 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,46 @@
1-
<?xml version="1.0"?>
2-
<project
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4-
xmlns="http://maven.apache.org/POM/4.0.0"
5-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
3+
xmlns="http://maven.apache.org/POM/4.0.0"
4+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5+
<modelVersion>4.0.0</modelVersion>
6+
<artifactId>akka-http</artifactId>
7+
<name>akka-http</name>
68

7-
<modelVersion>4.0.0</modelVersion>
8-
<artifactId>akka-http</artifactId>
9-
<name>akka-http</name>
9+
<parent>
10+
<groupId>com.baeldung</groupId>
11+
<artifactId>parent-modules</artifactId>
12+
<version>1.0.0-SNAPSHOT</version>
13+
</parent>
1014

11-
<parent>
12-
<artifactId>parent-modules</artifactId>
13-
<groupId>com.baeldung</groupId>
14-
<version>1.0.0-SNAPSHOT</version>
15-
</parent>
15+
<dependencies>
16+
<dependency>
17+
<groupId>com.typesafe.akka</groupId>
18+
<artifactId>akka-http_2.12</artifactId>
19+
<version>${akka.http.version}</version>
20+
</dependency>
21+
<dependency>
22+
<groupId>com.typesafe.akka</groupId>
23+
<artifactId>akka-stream_2.12</artifactId>
24+
<version>${akka.stream.version}</version>
25+
</dependency>
26+
<dependency>
27+
<groupId>com.typesafe.akka</groupId>
28+
<artifactId>akka-http-jackson_2.12</artifactId>
29+
<version>${akka.http.version}</version>
30+
</dependency>
31+
<dependency>
32+
<groupId>com.typesafe.akka</groupId>
33+
<artifactId>akka-http-testkit_2.12</artifactId>
34+
<version>${akka.http.version}</version>
35+
<scope>test</scope>
36+
</dependency>
37+
</dependencies>
1638

17-
<dependencies>
18-
<dependency>
19-
<groupId>com.typesafe.akka</groupId>
20-
<artifactId>akka-http_2.12</artifactId>
21-
<version>${akka.http.version}</version>
22-
</dependency>
23-
<dependency>
24-
<groupId>com.typesafe.akka</groupId>
25-
<artifactId>akka-stream_2.12</artifactId>
26-
<version>${akka.stream.version}</version>
27-
</dependency>
28-
<dependency>
29-
<groupId>com.typesafe.akka</groupId>
30-
<artifactId>akka-http-jackson_2.12</artifactId>
31-
<version>${akka.http.version}</version>
32-
</dependency>
33-
<dependency>
34-
<groupId>com.typesafe.akka</groupId>
35-
<artifactId>akka-http-testkit_2.12</artifactId>
36-
<version>${akka.http.version}</version>
37-
<scope>test</scope>
38-
</dependency>
39-
</dependencies>
39+
<properties>
40+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
41+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
42+
<akka.http.version>10.0.11</akka.http.version>
43+
<akka.stream.version>2.5.11</akka.stream.version>
44+
</properties>
4045

41-
<properties>
42-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
43-
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
44-
<akka.http.version>10.0.11</akka.http.version>
45-
<akka.stream.version>2.5.11</akka.stream.version>
46-
</properties>
4746
</project>

akka-streams/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
55
<artifactId>akka-streams</artifactId>
66
<name>akka-streams</name>
77

88
<parent>
9-
<artifactId>parent-modules</artifactId>
109
<groupId>com.baeldung</groupId>
10+
<artifactId>parent-modules</artifactId>
1111
<version>1.0.0-SNAPSHOT</version>
1212
</parent>
1313

algorithms-genetic/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
12
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
34
<modelVersion>4.0.0</modelVersion>
45
<artifactId>algorithms-genetic</artifactId>
56
<version>0.0.1-SNAPSHOT</version>
67
<name>algorithms-genetic</name>
7-
8+
89
<parent>
910
<groupId>com.baeldung</groupId>
1011
<artifactId>parent-modules</artifactId>
@@ -60,5 +61,4 @@
6061
<commons-codec.version>1.11</commons-codec.version>
6162
</properties>
6263

63-
6464
</project>

algorithms-miscellaneous-1/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ This module contains articles about algorithms. Some classes of algorithms, e.g.
77

88
- [Validating Input With Finite Automata in Java](https://www.baeldung.com/java-finite-automata)
99
- [Example of Hill Climbing Algorithm](https://www.baeldung.com/java-hill-climbing-algorithm)
10-
- [Monte Carlo Tree Search for Tic-Tac-Toe Game](https://www.baeldung.com/java-monte-carlo-tree-search)
11-
- [Binary Search Algorithm in Java](https://www.baeldung.com/java-binary-search)
1210
- [Introduction to Minimax Algorithm](https://www.baeldung.com/java-minimax-algorithm)
1311
- [How to Calculate Levenshtein Distance in Java?](https://www.baeldung.com/java-levenshtein-distance)
1412
- [How to Find the Kth Largest Element in Java](https://www.baeldung.com/java-kth-largest-element)

algorithms-miscellaneous-1/pom.xml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
12
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
34
<modelVersion>4.0.0</modelVersion>
45
<artifactId>algorithms-miscellaneous-1</artifactId>
56
<version>0.0.1-SNAPSHOT</version>
67
<name>algorithms-miscellaneous-1</name>
7-
8+
89
<parent>
910
<groupId>com.baeldung</groupId>
1011
<artifactId>parent-modules</artifactId>
@@ -43,7 +44,7 @@
4344
<groupId>com.github.dpaukov</groupId>
4445
<artifactId>combinatoricslib3</artifactId>
4546
<version>${combinatoricslib3.version}</version>
46-
</dependency>
47+
</dependency>
4748
</dependencies>
4849

4950
<build>

algorithms-miscellaneous-2/pom.xml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
12
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
34
<modelVersion>4.0.0</modelVersion>
45
<artifactId>algorithms-miscellaneous-2</artifactId>
56
<version>0.0.1-SNAPSHOT</version>
@@ -34,9 +35,9 @@
3435
<version>${org.jgrapht.core.version}</version>
3536
</dependency>
3637
<dependency>
37-
<groupId>org.jgrapht</groupId>
38-
<artifactId>jgrapht-ext</artifactId>
39-
<version>${org.jgrapht.ext.version}</version>
38+
<groupId>org.jgrapht</groupId>
39+
<artifactId>jgrapht-ext</artifactId>
40+
<version>${org.jgrapht.ext.version}</version>
4041
</dependency>
4142
<dependency>
4243
<groupId>pl.allegro.finance</groupId>

algorithms-miscellaneous-3/README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,5 @@ This module contains articles about algorithms. Some classes of algorithms, e.g.
1414
- [A Guide to the Folding Technique in Java](https://www.baeldung.com/folding-hashing-technique)
1515
- [Creating a Triangle with for Loops in Java](https://www.baeldung.com/java-print-triangle)
1616
- [Efficient Word Frequency Calculator in Java](https://www.baeldung.com/java-word-frequency)
17-
- [Interpolation Search in Java](https://www.baeldung.com/java-interpolation-search)
1817
- [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)
2118
- More articles: [[<-- prev]](/algorithms-miscellaneous-2) [[next -->]](/algorithms-miscellaneous-4)

algorithms-miscellaneous-3/pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
12
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
34
<modelVersion>4.0.0</modelVersion>
@@ -91,4 +92,5 @@
9192
<jmh-core.version>1.19</jmh-core.version>
9293
<jmh-generator.version>1.19</jmh-generator.version>
9394
</properties>
95+
9496
</project>

0 commit comments

Comments
 (0)