Fabian Meumertzheim | 5246e52 | 2021-01-29 16:20:19 +0100 | [diff] [blame] | 1 | # 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 Meumertzheim | 2330115 | 2021-12-13 15:22:36 +0100 | [diff] [blame] | 15 | load("@rules_jvm_external//:specs.bzl", "maven") |
| 16 | |
Fabian Meumertzheim | 91e896f | 2021-10-21 15:43:11 +0200 | [diff] [blame] | 17 | JAZZER_API_VERSION = "0.10.0" |
Fabian Meumertzheim | 676eff3 | 2021-02-18 08:09:22 +0100 | [diff] [blame] | 18 | JAZZER_API_COORDINATES = "com.code-intelligence:jazzer-api:%s" % JAZZER_API_VERSION |
| 19 | |
Fabian Meumertzheim | 6ae6784 | 2021-12-10 16:07:03 +0100 | [diff] [blame] | 20 | # **WARNING**: These Maven dependencies have known vulnerabilities and are only used to test that |
| 21 | # Jazzer finds these issues. DO NOT USE. |
Fabian Meumertzheim | 5246e52 | 2021-01-29 16:20:19 +0100 | [diff] [blame] | 22 | MAVEN_ARTIFACTS = [ |
Fabian Meumertzheim | 509441b | 2021-02-26 16:24:54 +0100 | [diff] [blame] | 23 | "junit:junit:4.12", |
Fabian Meumertzheim | 5246e52 | 2021-01-29 16:20:19 +0100 | [diff] [blame] | 24 | "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 Meumertzheim | e51010f | 2021-03-08 16:01:14 +0100 | [diff] [blame] | 31 | "com.beust:klaxon:5.5", |
simonresch | 7aa82bc | 2021-10-19 10:17:16 +0200 | [diff] [blame] | 32 | "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 Meumertzheim | 2330115 | 2021-12-13 15:22:36 +0100 | [diff] [blame] | 36 | 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 Meumertzheim | 5246e52 | 2021-01-29 16:20:19 +0100 | [diff] [blame] | 38 | ] |