Skip to content

Commit 922af33

Browse files
authored
[JAVA-45853] Fix missing plugin version (#18476)
1 parent a400c47 commit 922af33

File tree

4 files changed

+13
-15
lines changed

4 files changed

+13
-15
lines changed

aws-modules/amazon-athena/pom.xml

+3-2
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 https://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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66
<artifactId>amazon-athena</artifactId>
77
<version>0.0.1</version>
@@ -70,6 +70,7 @@
7070
<plugin>
7171
<groupId>org.springframework.boot</groupId>
7272
<artifactId>spring-boot-maven-plugin</artifactId>
73+
<version>${spring-boot.version}</version>
7374
<configuration>
7475
<excludes>
7576
<exclude>

aws-modules/aws-app-sync/pom.xml

+3-2
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 https://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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66
<artifactId>aws-app-sync</artifactId>
77
<name>aws-app-sync</name>
@@ -43,6 +43,7 @@
4343
<plugin>
4444
<groupId>org.springframework.boot</groupId>
4545
<artifactId>spring-boot-maven-plugin</artifactId>
46+
<version>${spring-boot.version}</version>
4647
</plugin>
4748
</plugins>
4849
</build>

core-java-modules/core-java-networking/pom.xml

+2-8
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>core-java-networking</artifactId>
77
<packaging>jar</packaging>
@@ -59,11 +59,6 @@
5959
<artifactId>jakarta.xml.bind-api</artifactId>
6060
<version>${jakarta.bind.version}</version>
6161
</dependency>
62-
<dependency>
63-
<groupId>org.apache.httpcomponents.client5</groupId>
64-
<artifactId>httpclient5</artifactId>
65-
<version>${apache.httpclient5.version}</version>
66-
</dependency>
6762
</dependencies>
6863

6964
<build>
@@ -74,7 +69,6 @@
7469
<springframework.spring-web.version>4.3.4.RELEASE</springframework.spring-web.version>
7570
<apache.httpclient.version>4.5.14</apache.httpclient.version>
7671
<greenmail.version>2.0.0-alpha-3</greenmail.version>
77-
<apache.httpclient5.version>5.3.1</apache.httpclient5.version>
7872
<async-http-client.version>2.4.5</async-http-client.version>
7973
<jakarta.bind.version>2.3.3</jakarta.bind.version>
8074
<apache.httpclient5.version>5.4.2</apache.httpclient5.version>

testing-modules/gatling-java/pom.xml

+5-3
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
<groupId>org.baeldung</groupId>
77
<artifactId>gatling-java</artifactId>
@@ -39,7 +39,7 @@
3939
<dependency>
4040
<groupId>io.micrometer</groupId>
4141
<artifactId>micrometer-registry-prometheus</artifactId>
42-
<version>1.12.2</version>
42+
<version>${micrometer-registry-prometheus.version}</version>
4343
</dependency>
4444
<dependency>
4545
<groupId>org.projectlombok</groupId>
@@ -87,6 +87,7 @@
8787
<plugin>
8888
<groupId>org.springframework.boot</groupId>
8989
<artifactId>spring-boot-maven-plugin</artifactId>
90+
<version>${spring.version}</version>
9091
<configuration>
9192
<mainClass>org.baeldung.Application</mainClass>
9293
<finalName>gatling-java</finalName>
@@ -114,6 +115,7 @@
114115
<gatling-maven-plugin.version>4.3.0</gatling-maven-plugin.version>
115116
<faker.version>1.0.2</faker.version>
116117
<spring.version>2.7.18</spring.version>
118+
<micrometer-registry-prometheus.version>1.12.2</micrometer-registry-prometheus.version>
117119
<logback-classic.version>1.3.10</logback-classic.version>
118120
</properties>
119121
</project>

0 commit comments

Comments
 (0)