Skip to content

Commit c189363

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents f373f37 + 17aa1b5 commit c189363

File tree

1,746 files changed

+25250
-5003
lines changed

Some content is hidden

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

1,746 files changed

+25250
-5003
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ out/
2929
# Mac
3030
.DS_Store
3131

32+
# Quarkus
33+
.quarkus/
34+
3235
# Maven
3336
log/*
3437
target/

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ Profile-based segregation
3636

3737
We use Maven build profiles to segregate the huge list of individual projects in our repository.
3838

39-
The projects are broadly divided into 4 lists: default, default-jdk17, default-jdk8 and default-heavy.
39+
The projects are broadly divided into 6 lists: default, default-jdk17, default-jdk22, default-jdk23, default-jdk8 and default-heavy.
4040

4141
Next, they are segregated further based on the tests that we want to execute.
4242

4343
We also have a parents profile to build only parent modules.
4444

45-
Therefore, we have a total of 9 profiles:
45+
Therefore, we have a total of 13 profiles:
4646

4747
| Profile | Includes | Type of test enabled |
4848
|-------------------|-----------------------------|----------------------|

akka-modules/akka-http/src/test/java/com/baeldung/akkahttp/UserServerUnitTest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ public class UserServerUnitTest extends JUnitRouteTest {
1919

2020
TestRoute appRoute = testRoute(new UserServer(userActorRef).routes());
2121

22-
@Ignore
2322
@Test
2423
public void whenRequest_thenActorResponds() {
2524

algorithms-modules/algorithms-miscellaneous-5/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
<version>0.0.1-SNAPSHOT</version>
88
<name>algorithms-miscellaneous-5</name>
99

10-
1110
<parent>
1211
<groupId>com.baeldung</groupId>
1312
<artifactId>algorithms-modules</artifactId>

algorithms-modules/algorithms-miscellaneous-8/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,5 @@
2020
<version>${commons-math3.version}</version>
2121
</dependency>
2222
</dependencies>
23+
2324
</project>

algorithms-modules/algorithms-numeric/pom.xml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,21 @@
1313
<version>1.0.0-SNAPSHOT</version>
1414
</parent>
1515

16-
<properties>
17-
<jmh.version>1.35</jmh.version>
18-
</properties>
19-
2016
<dependencies>
2117
<dependency>
2218
<groupId>org.openjdk.jmh</groupId>
2319
<artifactId>jmh-core</artifactId>
2420
<version>${jmh.version}</version>
2521
</dependency>
26-
2722
<dependency>
2823
<groupId>org.openjdk.jmh</groupId>
2924
<artifactId>jmh-generator-annprocess</artifactId>
3025
<version>${jmh.version}</version>
3126
</dependency>
3227
</dependencies>
3328

29+
<properties>
30+
<jmh.version>1.35</jmh.version>
31+
</properties>
32+
3433
</project>
Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66
<artifactId>algorithms-sorting-3</artifactId>
77
<version>0.0.1-SNAPSHOT</version>
@@ -13,7 +13,4 @@
1313
<version>1.0.0-SNAPSHOT</version>
1414
</parent>
1515

16-
<dependencies>
17-
</dependencies>
18-
1916
</project>

apache-cxf-modules/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
<packaging>pom</packaging>
99
<name>apache-cxf-modules</name>
1010

11-
1211
<parent>
1312
<groupId>com.baeldung</groupId>
1413
<artifactId>parent-modules</artifactId>

apache-httpclient-2/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@
6464
<configuration>
6565
<source>11</source>
6666
<target>11</target>
67+
<release>11</release>
6768
</configuration>
6869
</plugin>
6970
<plugin>

apache-httpclient/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@
8080
<configuration>
8181
<source>11</source>
8282
<target>11</target>
83+
<release>11</release>
8384
</configuration>
8485
</plugin>
8586
<plugin>

0 commit comments

Comments
 (0)