* JAVA-5875: Upgrade Spring Boot to 2.5.1 * JAVA-5875: Leave jta module on Spring Boot 2.4.7 * JAVA-5875: Update spring-boot-persistence-mongodb to use embedded Mongo 3.0 * JAVA-5875: Leave spring-data-dynamodb on Spring Boot 2.4.7 * JAVA-5875: ErrorController#getErrorPath has been removed * JAVA-5875: Fix SQL Script DataSource Initialization * JAVA-5875: ErrorController#getErrorPath has been removed * JAVA-5875: Fix RepositoryRestConfigurer * JAVA-5875: Fix issues caused by rest-assured upgrade * JAVA-5875: Upgrade spring-cloud-dependencies to 2020.0.3 * JAVA-5875: Leave spring-boot-keycloak on Spring Boot 2.4.7 * JAVA-5875: Fix data.sql script initialization * JAVA-5875: Leave spring-security-legacy-oidc on Spring Boot 2.4.7 * JAVA-5875: Fix data.sql script initialization * JAVA-5875: Fix data.sql script initialization * JAVA-5875: Update de.flapdoodle.embed.mongo dependency * JAVA-5875: Upgrade spring-cloud-dependencies to 2020.0.3 * JAVA-5875: Update Spring Cloud dependencies * JAVA-5875: Update cloud dependencies * JAVA-5875: Defer datasource initialization * JAVA-5875: Fix rest assured version * JAVA-5875: Fix Spring Batch serialization issue * JAVA-5875: Update Spring Cloud Stream version * JAVA-5875: Update Spring Kafka version * JAVA-5875: Leave spring-zuul-rate-limiting on Spring Boot 2.4.7 Co-authored-by: Krzysztof Woyke <krzysztof.woyke.sp@lhsystems.com>
87 lines
3.2 KiB
XML
87 lines
3.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>spring-jenkins-pipeline</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<name>spring-jenkins-pipeline</name>
|
|
<packaging>jar</packaging>
|
|
<description>Intro to Jenkins 2 and the power of pipelines</description>
|
|
|
|
<parent>
|
|
<groupId>com.baeldung</groupId>
|
|
<artifactId>parent-boot-2</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<relativePath>../parent-boot-2</relativePath>
|
|
</parent>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-data-mongodb</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-data-rest</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>de.flapdoodle.embed</groupId>
|
|
<artifactId>de.flapdoodle.embed.mongo</artifactId>
|
|
<version>${de.flapdoodle.embed.mongo.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
<version>${checkstyle.version}</version>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>unit</id>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<configuration>
|
|
<excludes>
|
|
<exclude>**/*IntegrationTest.java</exclude>
|
|
<exclude>**/*IntTest.java</exclude>
|
|
</excludes>
|
|
<!-- Run only tests whose name end with "UnitTest" -->
|
|
<includes>
|
|
<include>**/*UnitTest.java</include>
|
|
</includes>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
|
|
<properties>
|
|
<checkstyle.version>2.17</checkstyle.version>
|
|
<de.flapdoodle.embed.mongo.version>3.0.0</de.flapdoodle.embed.mongo.version>
|
|
</properties>
|
|
|
|
</project> |