You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.9 KiB
XML
68 lines
1.9 KiB
XML
10 years ago
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
8 years ago
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
6 years ago
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
10 years ago
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<parent>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
5 years ago
|
<artifactId>spring-boot-smoke-tests</artifactId>
|
||
8 years ago
|
<version>${revision}</version>
|
||
10 years ago
|
</parent>
|
||
5 years ago
|
<artifactId>spring-boot-smoke-test-jersey</artifactId>
|
||
|
<name>Spring Boot Jersey Smoke Test</name>
|
||
|
<description>Spring Boot Jersey Smoke Test</description>
|
||
10 years ago
|
<properties>
|
||
5 years ago
|
<main.basedir>${basedir}/../../..</main.basedir>
|
||
10 years ago
|
</properties>
|
||
10 years ago
|
<dependencies>
|
||
8 years ago
|
<!-- Compile -->
|
||
10 years ago
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-jersey</artifactId>
|
||
|
</dependency>
|
||
7 years ago
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
||
|
</dependency>
|
||
10 years ago
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
||
|
</dependency>
|
||
8 years ago
|
<!-- Test -->
|
||
10 years ago
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-test</artifactId>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
7 years ago
|
<executions>
|
||
|
<execution>
|
||
|
<id>generate build info</id>
|
||
|
<goals>
|
||
|
<goal>build-info</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
10 years ago
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
7 years ago
|
<profiles>
|
||
|
<profile>
|
||
6 years ago
|
<id>java9+</id>
|
||
7 years ago
|
<activation>
|
||
7 years ago
|
<jdk>[9,)</jdk>
|
||
7 years ago
|
</activation>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
6 years ago
|
<groupId>jakarta.xml.bind</groupId>
|
||
|
<artifactId>jakarta.xml.bind-api</artifactId>
|
||
7 years ago
|
</dependency>
|
||
|
</dependencies>
|
||
|
</profile>
|
||
|
</profiles>
|
||
10 years ago
|
</project>
|