blob: 29f384510ad9012043f8dc2c2e4f3c5c3e5843b6 [file] [log] [blame]
Fabian Meumertzheim5246e522021-01-29 16:20:19 +01001# Copyright 2021 Code Intelligence GmbH
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
Fabian Meumertzheim23301152021-12-13 15:22:36 +010015load("@rules_jvm_external//:specs.bzl", "maven")
16
Fabian Meumertzheim91e896f2021-10-21 15:43:11 +020017JAZZER_API_VERSION = "0.10.0"
Fabian Meumertzheim676eff32021-02-18 08:09:22 +010018JAZZER_API_COORDINATES = "com.code-intelligence:jazzer-api:%s" % JAZZER_API_VERSION
19
Fabian Meumertzheim6ae67842021-12-10 16:07:03 +010020# **WARNING**: These Maven dependencies have known vulnerabilities and are only used to test that
21# Jazzer finds these issues. DO NOT USE.
Fabian Meumertzheim5246e522021-01-29 16:20:19 +010022MAVEN_ARTIFACTS = [
Fabian Meumertzheim509441b2021-02-26 16:24:54 +010023 "junit:junit:4.12",
Fabian Meumertzheim5246e522021-01-29 16:20:19 +010024 "org.apache.commons:commons-imaging:1.0-alpha2",
25 "com.mikesamuel:json-sanitizer:1.2.1",
26 "com.google.code.gson:gson:2.8.6",
27 "com.fasterxml.jackson.core:jackson-core:2.12.1",
28 "com.fasterxml.jackson.core:jackson-databind:2.12.1",
29 "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:2.12.1",
30 "com.alibaba:fastjson:1.2.75",
Fabian Meumertzheime51010f2021-03-08 16:01:14 +010031 "com.beust:klaxon:5.5",
simonresch7aa82bc2021-10-19 10:17:16 +020032 "javax.validation:validation-api:2.0.1.Final",
33 "javax.xml.bind:jaxb-api:2.3.1",
34 "javax.el:javax.el-api:3.0.1-b06",
35 "org.hibernate:hibernate-validator:5.2.4.Final",
Fabian Meumertzheim23301152021-12-13 15:22:36 +010036 maven.artifact("org.apache.logging.log4j", "log4j-api", "2.14.1", testonly = True),
37 maven.artifact("org.apache.logging.log4j", "log4j-core", "2.14.1", testonly = True),
Fabian Meumertzheim5246e522021-01-29 16:20:19 +010038]