Stephan Wahlbrink | 96bda04 | 2019-10-09 10:56:05 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | #=============================================================================# |
Stephan Wahlbrink | b8eb44f | 2020-01-24 10:04:53 +0100 | [diff] [blame] | 4 | # Copyright (c) 2018, 2020 Stephan Wahlbrink and others. |
Stephan Wahlbrink | 96bda04 | 2019-10-09 10:56:05 +0200 | [diff] [blame] | 5 | # |
| 6 | # This program and the accompanying materials are made available under the |
| 7 | # terms of the Eclipse Public License 2.0 which is available at |
| 8 | # https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0 |
| 9 | # which is available at https://www.apache.org/licenses/LICENSE-2.0. |
| 10 | # |
| 11 | # SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 |
| 12 | # |
| 13 | # Contributors: |
| 14 | # Stephan Wahlbrink <sw@wahlbrink.eu> - initial API and implementation |
| 15 | #=============================================================================# |
| 16 | --> |
| 17 | |
| 18 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 19 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 20 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 21 | <modelVersion>4.0.0</modelVersion> |
| 22 | |
| 23 | <groupId>org.eclipse.statet-releng</groupId> |
| 24 | <artifactId>spring.boot-parent</artifactId> |
Stephan Wahlbrink | 3f70ff0 | 2020-12-31 11:40:19 +0100 | [diff] [blame] | 25 | <version>4.2.2.202012310600-r</version> |
Stephan Wahlbrink | 96bda04 | 2019-10-09 10:56:05 +0200 | [diff] [blame] | 26 | <packaging>pom</packaging> |
| 27 | |
Stephan Wahlbrink | 30df8d0 | 2020-02-19 16:31:15 +0100 | [diff] [blame] | 28 | <name>Eclipse StatET - Parent for Spring Boot based applications</name> |
| 29 | |
Stephan Wahlbrink | 96bda04 | 2019-10-09 10:56:05 +0200 | [diff] [blame] | 30 | <parent> |
| 31 | <groupId>org.springframework.boot</groupId> |
| 32 | <artifactId>spring-boot-starter-parent</artifactId> |
Stephan Wahlbrink | b6f8a94 | 2020-10-05 11:43:58 +0200 | [diff] [blame] | 33 | <version>2.1.18.RELEASE</version> |
Stephan Wahlbrink | 96bda04 | 2019-10-09 10:56:05 +0200 | [diff] [blame] | 34 | <relativePath/> |
| 35 | </parent> |
| 36 | |
Stephan Wahlbrink | b4b9dda | 2020-03-02 20:54:08 +0100 | [diff] [blame] | 37 | <prerequisites> |
| 38 | <maven>3.6.3</maven> |
| 39 | </prerequisites> |
| 40 | |
Stephan Wahlbrink | 96bda04 | 2019-10-09 10:56:05 +0200 | [diff] [blame] | 41 | <properties> |
| 42 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 43 | |
| 44 | <java.version>1.8</java.version> |
| 45 | |
Stephan Wahlbrink | 36a6f5a | 2020-11-05 08:39:05 +0100 | [diff] [blame] | 46 | <jetty.version>9.4.34.v20201102</jetty.version> |
Stephan Wahlbrink | 96bda04 | 2019-10-09 10:56:05 +0200 | [diff] [blame] | 47 | |
| 48 | <qualifier.format>yyyyMMddHHmm</qualifier.format> |
| 49 | <maven.build.timestamp.format>yyyyMMddHHmm</maven.build.timestamp.format> |
| 50 | |
Stephan Wahlbrink | 287b4cd | 2020-11-12 11:43:20 +0100 | [diff] [blame] | 51 | <statet.version>4.2.2</statet.version> |
Stephan Wahlbrink | 96bda04 | 2019-10-09 10:56:05 +0200 | [diff] [blame] | 52 | <statet.build.timestamp>${maven.build.timestamp}</statet.build.timestamp> |
| 53 | <statet.build.type></statet.build.type> |
| 54 | <statet.build.id>${statet.build.type}${statet.build.timestamp}</statet.build.id> |
| 55 | |
Stephan Wahlbrink | e8485f3 | 2020-07-08 10:10:53 +0200 | [diff] [blame] | 56 | <trimStackTrace>false</trimStackTrace> |
| 57 | |
Stephan Wahlbrink | 96bda04 | 2019-10-09 10:56:05 +0200 | [diff] [blame] | 58 | </properties> |
| 59 | |
| 60 | <dependencies> |
| 61 | <dependency> |
| 62 | <groupId>org.springframework.boot</groupId> |
| 63 | <artifactId>spring-boot-starter</artifactId> |
| 64 | <exclusions> |
| 65 | <exclusion> |
| 66 | <groupId>org.apache.logging.log4j</groupId> |
| 67 | <artifactId>log4j-to-slf4j</artifactId> |
| 68 | </exclusion> |
| 69 | </exclusions> |
| 70 | </dependency> |
| 71 | |
| 72 | <!-- dependency> // manually to minimize dependencies |
| 73 | <groupId>org.springframework.boot</groupId> |
| 74 | <artifactId>spring-boot-starter-web</artifactId> |
| 75 | <exclusions> |
| 76 | <exclusion> |
| 77 | <groupId>org.springframework.boot</groupId> |
| 78 | <artifactId>spring-boot-starter-tomcat</artifactId> |
| 79 | </exclusion> |
| 80 | </exclusions> |
| 81 | </dependency> |
| 82 | <dependency> |
| 83 | <groupId>org.springframework.boot</groupId> |
| 84 | <artifactId>spring-boot-starter-jetty</artifactId> |
| 85 | </dependency --> |
| 86 | <dependency> |
| 87 | <groupId>org.springframework</groupId> |
| 88 | <artifactId>spring-web</artifactId> |
| 89 | </dependency> |
| 90 | <dependency> |
| 91 | <groupId>org.eclipse.jetty</groupId> |
| 92 | <artifactId>jetty-servlets</artifactId> |
| 93 | </dependency> |
| 94 | <dependency> |
| 95 | <groupId>org.eclipse.jetty</groupId> |
| 96 | <artifactId>jetty-webapp</artifactId> |
| 97 | </dependency> |
| 98 | |
| 99 | <!-- dependency> |
| 100 | <groupId>org.springframework.boot</groupId> |
| 101 | <artifactId>spring-boot-starter-test</artifactId> |
| 102 | <scope>test</scope> |
| 103 | </dependency --> |
| 104 | <dependency> |
| 105 | <groupId>org.springframework.boot</groupId> |
| 106 | <artifactId>spring-boot-test</artifactId> |
| 107 | <scope>test</scope> |
| 108 | </dependency> |
| 109 | <dependency> |
| 110 | <groupId>org.springframework.boot</groupId> |
| 111 | <artifactId>spring-boot-test-autoconfigure</artifactId> |
| 112 | <scope>test</scope> |
| 113 | </dependency> |
| 114 | <dependency> |
| 115 | <groupId>org.springframework</groupId> |
| 116 | <artifactId>spring-test</artifactId> |
| 117 | <scope>test</scope> |
| 118 | </dependency> |
| 119 | <dependency> |
Stephan Wahlbrink | 30ad76f | 2020-01-21 10:55:18 +0100 | [diff] [blame] | 120 | <groupId>org.junit.jupiter</groupId> |
| 121 | <artifactId>junit-jupiter-api</artifactId> |
| 122 | <scope>test</scope> |
| 123 | </dependency> |
| 124 | <dependency> |
| 125 | <groupId>org.junit.jupiter</groupId> |
| 126 | <artifactId>junit-jupiter-engine</artifactId> |
Stephan Wahlbrink | 96bda04 | 2019-10-09 10:56:05 +0200 | [diff] [blame] | 127 | <scope>test</scope> |
| 128 | </dependency> |
| 129 | </dependencies> |
| 130 | |
Stephan Wahlbrink | 96bda04 | 2019-10-09 10:56:05 +0200 | [diff] [blame] | 131 | </project> |