mirror of https://github.com/google/oss-fuzz.git
136 lines
3.9 KiB
XML
136 lines
3.9 KiB
XML
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>ossfuzz</groupId>
|
|
<artifactId>spring-cloud-netflix-fuzzer</artifactId>
|
|
<version>${fuzzedLibaryVersion}</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<properties>
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<fuzzedLibaryVersion>4.0.0-SNAPSHOT</fuzzedLibaryVersion>
|
|
<exec.mainClass>org.springframework.cloud.netflix.eureka.config.HostnameBasedUrlRandomizerFuzzer</exec.mainClass>
|
|
</properties>
|
|
|
|
<!-- This repositories list is copy pasted from the projects' main BOM -->
|
|
<repositories>
|
|
<repository>
|
|
<id>spring-snapshots</id>
|
|
<name>Spring Snapshots</name>
|
|
<url>https://repo.spring.io/libs-snapshot-local</url>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
<releases>
|
|
<enabled>false</enabled>
|
|
</releases>
|
|
</repository>
|
|
<repository>
|
|
<id>spring-milestones</id>
|
|
<name>Spring Milestones</name>
|
|
<url>https://repo.spring.io/libs-milestone-local</url>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
<repository>
|
|
<id>spring-releases</id>
|
|
<name>Spring Releases</name>
|
|
<url>https://repo.spring.io/release</url>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
<!-- FIXME: 4.0 -->
|
|
<repository>
|
|
<id>netflix-snapshots</id>
|
|
<name>Netflix Snapshots</name>
|
|
<url>https://artifactory-oss.prod.netflix.net/artifactory/maven-oss-snapshots</url>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
<repository>
|
|
<id>netflix-candidates</id>
|
|
<name>Netflix Candidates</name>
|
|
<url>https://artifactory-oss.prod.netflix.net/artifactory/maven-oss-candidates</url>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<!--
|
|
On the CI, install the jazzer file with
|
|
|
|
mvn install:install-file -Dfile=${JAZZER_API_PATH} \
|
|
-DgroupId="com.code-intelligence" \
|
|
-DartifactId="jazzer-api" \
|
|
-Dversion="0.12.0" \
|
|
-Dpackaging=jar
|
|
|
|
in order to avoid mismatching driver/api versions.
|
|
-->
|
|
<dependency>
|
|
<groupId>com.code-intelligence</groupId>
|
|
<artifactId>jazzer-api</artifactId>
|
|
<version>0.12.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-netflix-eureka-client</artifactId>
|
|
<version>${fuzzedLibaryVersion}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-netflix-eureka-server</artifactId>
|
|
<version>${fuzzedLibaryVersion}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
|
|
<version>${fuzzedLibaryVersion}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
|
|
<version>${fuzzedLibaryVersion}</version>
|
|
</dependency>
|
|
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>3.3.0</version>
|
|
<configuration>
|
|
<filters>
|
|
<filter>
|
|
<artifact>*:*</artifact>
|
|
<excludes>
|
|
<exclude>META-INF/*.SF</exclude>
|
|
<exclude>META-INF/*.DSA</exclude>
|
|
<exclude>META-INF/*.RSA</exclude>
|
|
</excludes>
|
|
</filter>
|
|
</filters>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project> |