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