xref: /aosp_15_r20/external/jazzer-api/examples/junit/pom.xml (revision 33edd6723662ea34453766bfdca85dbfdd5342b8)
1*33edd672SMark<?xml version="1.0" encoding="UTF-8"?>
2*33edd672SMark<!--
3*33edd672SMark Copyright 2022 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"
19*33edd672SMark         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20*33edd672SMark         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
21*33edd672SMark    <modelVersion>4.0.0</modelVersion>
22*33edd672SMark
23*33edd672SMark    <groupId>org.example</groupId>
24*33edd672SMark    <artifactId>jazzer-junit-example</artifactId>
25*33edd672SMark    <version>1.0-SNAPSHOT</version>
26*33edd672SMark
27*33edd672SMark    <properties>
28*33edd672SMark        <maven.compiler.source>11</maven.compiler.source>
29*33edd672SMark        <maven.compiler.target>11</maven.compiler.target>
30*33edd672SMark    </properties>
31*33edd672SMark    <dependencies>
32*33edd672SMark        <dependency>
33*33edd672SMark            <groupId>org.junit.jupiter</groupId>
34*33edd672SMark            <artifactId>junit-jupiter</artifactId>
35*33edd672SMark            <version>5.9.2</version>
36*33edd672SMark            <scope>test</scope>
37*33edd672SMark        </dependency>
38*33edd672SMark        <dependency>
39*33edd672SMark            <groupId>com.code-intelligence</groupId>
40*33edd672SMark            <artifactId>jazzer-junit</artifactId>
41*33edd672SMark            <version>0.16.1</version>
42*33edd672SMark            <scope>test</scope>
43*33edd672SMark        </dependency>
44*33edd672SMark        <dependency>
45*33edd672SMark            <groupId>org.mockito</groupId>
46*33edd672SMark            <artifactId>mockito-core</artifactId>
47*33edd672SMark            <version>5.2.0</version>
48*33edd672SMark            <scope>test</scope>
49*33edd672SMark        </dependency>
50*33edd672SMark    </dependencies>
51*33edd672SMark
52*33edd672SMark    <build>
53*33edd672SMark        <plugins>
54*33edd672SMark            <plugin>
55*33edd672SMark                <artifactId>maven-surefire-plugin</artifactId>
56*33edd672SMark                <version>2.22.2</version>
57*33edd672SMark            </plugin>
58*33edd672SMark        </plugins>
59*33edd672SMark        <testResources>
60*33edd672SMark            <testResource>
61*33edd672SMark                <directory>${project.basedir}/src/test/resources</directory>
62*33edd672SMark            </testResource>
63*33edd672SMark        </testResources>
64*33edd672SMark    </build>
65*33edd672SMark
66*33edd672SMark</project>
67