File tree 3 files changed +383
-1
lines changed
3 files changed +383
-1
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ http_archive(
16
16
load ("@rules_jvm_external//:defs.bzl" , "maven_install" )
17
17
18
18
maven_install (
19
+ name = "maven" ,
19
20
artifacts = [
20
21
"org.apache.thrift:libthrift:0.12.0" ,
21
22
],
@@ -29,3 +30,21 @@ maven_install(
29
30
load ("@maven//:defs.bzl" , "pinned_maven_install" )
30
31
pinned_maven_install ()
31
32
33
+ maven_install (
34
+ name = "special" ,
35
+ artifacts = [
36
+ "junit:junit:4.12" ,
37
+ "com.google.guava:guava:28.0-jre" ,
38
+ "org.apache.commons:commons-compress:1.8.1" ,
39
+ "com.fasterxml.jackson.core:jackson-databind:2.3.3" ,
40
+ ],
41
+ fetch_sources = True ,
42
+ repositories = [
43
+ "https://jcenter.bintray.com/" ,
44
+ ],
45
+ maven_install_json = "//:special_install.json" ,
46
+ )
47
+
48
+ load ("@special//:defs.bzl" , special_pin = "pinned_maven_install" )
49
+ pinned_maven_install ()
50
+
Original file line number Diff line number Diff line change 175
175
"__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY" : 1897687777
176
176
}
177
177
}
178
-
You can’t perform that action at this time.
0 commit comments