Skip to content

Commit c61b869

Browse files
authored
[JAVA-40979] Fix missing plugin version (#17878)
1 parent 42ea8b8 commit c61b869

File tree

8 files changed

+8
-64
lines changed
  • core-java-modules/core-java-string-operations-9
  • libraries-server-2
  • microservices-modules/event-driven-microservice
  • persistence-modules
  • spring-ai
  • spring-reactive-modules/spring-reactive-3
  • xml-2

8 files changed

+8
-64
lines changed

core-java-modules/core-java-string-operations-9/pom.xml

-5
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,6 @@
4444
<artifactId>commons-collections4</artifactId>
4545
<version>${apache.commons.collection.version}</version>
4646
</dependency>
47-
<dependency>
48-
<groupId>org.apache.commons</groupId>
49-
<artifactId>commons-text</artifactId>
50-
<version>${commons-text.version}</version>
51-
</dependency>
5247
<dependency>
5348
<groupId>org.unbescape</groupId>
5449
<artifactId>unbescape</artifactId>

libraries-server-2/pom.xml

-5
Original file line numberDiff line numberDiff line change
@@ -82,11 +82,6 @@
8282
<artifactId>smack-java7</artifactId>
8383
<version>${smack.version}</version>
8484
</dependency>
85-
<dependency>
86-
<groupId>io.netty</groupId>
87-
<artifactId>netty-all</artifactId>
88-
<version>${netty.version}</version>
89-
</dependency>
9085
</dependencies>
9186

9287
<build>

microservices-modules/event-driven-microservice/pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@
6464
<plugin>
6565
<groupId>org.springframework.boot</groupId>
6666
<artifactId>spring-boot-maven-plugin</artifactId>
67+
<version>${spring-boot.version}</version>
6768
<configuration>
6869
<excludes>
6970
<exclude>

persistence-modules/hibernate-reactive/pom.xml

-14
Original file line numberDiff line numberDiff line change
@@ -111,13 +111,6 @@
111111
<version>${testcontainers.mysql.version}</version>
112112
<scope>test</scope>
113113
</dependency>
114-
<dependency>
115-
<groupId>org.springframework.boot</groupId>
116-
<artifactId>spring-boot-starter-test</artifactId>
117-
<version>3.2.5</version>
118-
<scope>test</scope>
119-
</dependency>
120-
121114
<dependency>
122115
<groupId>org.springframework.boot</groupId>
123116
<artifactId>spring-boot-starter-test</artifactId>
@@ -130,13 +123,6 @@
130123
</exclusion>
131124
</exclusions>
132125
</dependency>
133-
<dependency>
134-
<groupId>io.projectreactor</groupId>
135-
<artifactId>reactor-test</artifactId>
136-
<version>3.6.6</version>
137-
<scope>test</scope>
138-
</dependency>
139-
140126
</dependencies>
141127

142128
<build>

persistence-modules/spring-data-jpa-query-4/pom.xml

-5
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,6 @@
4646
<artifactId>postgresql</artifactId>
4747
<version>${postgresql.version}</version>
4848
</dependency>
49-
<dependency>
50-
<groupId>com.vladmihalcea</groupId>
51-
<artifactId>hibernate-types-52</artifactId>
52-
<version>${vladmihalcea.version}</version>
53-
</dependency>
5449
<dependency>
5550
<groupId>net.bytebuddy</groupId>
5651
<artifactId>byte-buddy</artifactId>

spring-ai/pom.xml

+5-29
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,6 @@
1414
<relativePath>../parent-boot-3</relativePath>
1515
</parent>
1616

17-
<properties>
18-
<spring-boot.version>3.3.2</spring-boot.version>
19-
<spring-ai.version>1.0.0-M1</spring-ai.version>
20-
</properties>
21-
2217
<repositories>
2318
<repository>
2419
<id>spring-snapshots</id>
@@ -87,34 +82,10 @@
8782
<groupId>org.springframework.ai</groupId>
8883
<artifactId>spring-ai-mongodb-atlas-store-spring-boot-starter</artifactId>
8984
</dependency>
90-
<dependency>
91-
<groupId>org.springframework.boot</groupId>
92-
<artifactId>spring-boot-starter-web</artifactId>
93-
</dependency>
94-
<dependency>
95-
<groupId>org.springframework.ai</groupId>
96-
<artifactId>spring-ai-openai-spring-boot-starter</artifactId>
97-
</dependency>
98-
<dependency>
99-
<groupId>org.springframework.ai</groupId>
100-
<artifactId>spring-ai-redis-store-spring-boot-starter</artifactId>
101-
</dependency>
102-
<dependency>
103-
<groupId>org.springframework.ai</groupId>
104-
<artifactId>spring-ai-transformers-spring-boot-starter</artifactId>
105-
</dependency>
106-
<dependency>
107-
<groupId>org.springframework.ai</groupId>
108-
<artifactId>spring-ai-pdf-document-reader</artifactId>
109-
</dependency>
11085
<dependency>
11186
<groupId>org.springframework.ai</groupId>
11287
<artifactId>spring-ai-ollama-spring-boot-starter</artifactId>
11388
</dependency>
114-
<dependency>
115-
<groupId>org.springframework.ai</groupId>
116-
<artifactId>spring-ai-mistral-ai-spring-boot-starter</artifactId>
117-
</dependency>
11889
</dependencies>
11990

12091
<build>
@@ -141,4 +112,9 @@
141112
</plugins>
142113
</build>
143114

115+
<properties>
116+
<spring-boot.version>3.3.2</spring-boot.version>
117+
<spring-ai.version>1.0.0-M1</spring-ai.version>
118+
</properties>
119+
144120
</project>

spring-reactive-modules/spring-reactive-3/pom.xml

+2
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@
9898
<plugin>
9999
<groupId>org.cyclonedx</groupId>
100100
<artifactId>cyclonedx-maven-plugin</artifactId>
101+
<version>${cyclonedx-maven-plugin.version}</version>
101102
<executions>
102103
<execution>
103104
<phase>generate-resources</phase>
@@ -134,6 +135,7 @@
134135
<spring-cloud.version>2021.0.4</spring-cloud.version>
135136
<mockwebserver.version>5.0.0-alpha.12</mockwebserver.version>
136137
<kotlin-stdlib.version>2.0.0-Beta4</kotlin-stdlib.version>
138+
<cyclonedx-maven-plugin.version>2.9.0</cyclonedx-maven-plugin.version>
137139
<start-class>com.baeldung.custom.deserialization.Application</start-class>
138140
</properties>
139141

xml-2/pom.xml

-6
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,6 @@
4141
<artifactId>xstream</artifactId>
4242
<version>${xstream.version}</version>
4343
</dependency>
44-
<dependency>
45-
<groupId>com.sun.xml.bind</groupId>
46-
<artifactId>jaxb-impl</artifactId>
47-
<version>${jaxb.version}</version>
48-
</dependency>
4944
<dependency>
5045
<groupId>org.apache.xmlgraphics</groupId>
5146
<artifactId>fop</artifactId>
@@ -368,7 +363,6 @@
368363
<dom4j.version>2.1.3</dom4j.version>
369364
<underscore.version>1.89</underscore.version>
370365
<xstream.version>1.4.18</xstream.version>
371-
<jaxb.version>2.3.3</jaxb.version>
372366
<fop.version>2.9</fop.version>
373367
<itextpdf.version>5.5.13.3</itextpdf.version>
374368
<jibx-version>1.2.4.5</jibx-version>

0 commit comments

Comments
 (0)