xref: /aosp_15_r20/external/jazzer-api/examples/junit-spring-web/pom.xml (revision 33edd6723662ea34453766bfdca85dbfdd5342b8)
1<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 Copyright 2023 Code Intelligence GmbH
4
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9     http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16-->
17
18<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
20	<modelVersion>4.0.0</modelVersion>
21	<parent>
22		<groupId>org.springframework.boot</groupId>
23		<artifactId>spring-boot-starter-parent</artifactId>
24		<version>3.0.5</version>
25		<relativePath/> <!-- lookup parent from repository -->
26	</parent>
27
28	<groupId>com.example</groupId>
29	<artifactId>junit-spring-web</artifactId>
30	<version>0.0.1-SNAPSHOT</version>
31	<name>junit-spring-web</name>
32	<description>Demo project for Spring Boot</description>
33	<properties>
34		<java.version>11</java.version>
35	</properties>
36	<dependencies>
37		<dependency>
38			<groupId>org.springframework.boot</groupId>
39			<artifactId>spring-boot-starter-web</artifactId>
40		</dependency>
41		<dependency>
42			<groupId>org.springframework.boot</groupId>
43			<artifactId>spring-boot-starter-actuator</artifactId>
44		</dependency>
45		<dependency>
46			<groupId>org.springframework.boot</groupId>
47			<artifactId>spring-boot-starter-test</artifactId>
48			<scope>test</scope>
49		</dependency>
50		<dependency>
51			<groupId>com.code-intelligence</groupId>
52			<artifactId>jazzer-junit</artifactId>
53			<version>0.16.1</version>
54			<scope>test</scope>
55		</dependency>
56		<dependency>
57			<groupId>org.junit.jupiter</groupId>
58			<artifactId>junit-jupiter</artifactId>
59			<version>5.9.2</version>
60			<scope>test</scope>
61		</dependency>
62	</dependencies>
63
64	<build>
65		<plugins>
66			<plugin>
67				<groupId>org.springframework.boot</groupId>
68				<artifactId>spring-boot-maven-plugin</artifactId>
69			</plugin>
70		</plugins>
71	</build>
72
73</project>
74