-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathpom.xml
More file actions
52 lines (45 loc) · 1.98 KB
/
pom.xml
File metadata and controls
52 lines (45 loc) · 1.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?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>
<parent>
<groupId>org.zalando</groupId>
<artifactId>riptide-parent</artifactId>
<version>5.0.1-SNAPSHOT</version>
<relativePath>../riptide-parent</relativePath>
</parent>
<artifactId>riptide-example-basic</artifactId>
<name>Riptide: Example (Basic)</name>
<properties>
<!-- Example modules are not published to Maven Central -->
<maven.deploy.skip>true</maven.deploy.skip>
<!-- duplicate-finder fails on reactor builds because sibling target/classes don't exist at validate phase -->
<duplicate-finder.skip>true</duplicate-finder.skip>
</properties>
<description>Basic onboarding example: Spring Boot starter path, request routing, header extraction, and body deserialization</description>
<dependencies>
<!-- Primary onboarding dependency: bring in riptide-core + autoconfigure via the starter -->
<dependency>
<groupId>org.zalando</groupId>
<artifactId>riptide-spring-boot-starter</artifactId>
</dependency>
<!-- Test infrastructure -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>mockwebserver</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>