forked from google/copybara
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WORKSPACE
118 lines (103 loc) · 3.49 KB
/
WORKSPACE
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# Copyright 2016 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
workspace(name = "copybara")
# LICENSE: The Apache Software License, Version 2.0
maven_jar(
name = "guava",
artifact = "com.google.guava:guava:21.0",
sha1 = "3a3d111be1be1b745edfa7d91678a12d7ed38709",
)
# LICENSE: The Apache Software License, Version 2.0
maven_jar(
name = "guava_testlib",
artifact = "com.google.guava:guava-testlib:21.0",
sha1 = "1ec77c45666cf17da76cd80725194148a8ffc440",
)
# LICENSE: The Apache Software License, Version 2.0
maven_jar(
name = "autocommon",
artifact = "com.google.auto:auto-common:0.6",
sha1 = "cf7212b0f8bfef12657b942df8f4f2cf032d3f41",
)
# LICENSE: The Apache Software License, Version 2.0
maven_jar(
name = "autovalue",
artifact = "com.google.auto.value:auto-value:1.2",
sha1 = "6873fed014fe1de1051aae2af68ba266d2934471",
)
# LICENSE: The Apache Software License, Version 2.0
maven_jar(
name = "jcommander",
artifact = "com.beust:jcommander:1.48",
sha1 = "bfcb96281ea3b59d626704f74bc6d625ff51cbce",
)
# LICENSE: The Apache Software License, Version 2.0
maven_jar(
name = "truth",
artifact = "com.google.truth:truth:0.28",
sha1 = "0a388c7877c845ff4b8e19689dda5ac9d34622c4",
)
# LICENSE: The Apache Software License, Version 2.0
# Required by mockito
maven_jar(
name = "objenesis",
artifact = "org.objenesis:objenesis:1.0",
sha1 = "9b473564e792c2bdf1449da1f0b1b5bff9805704",
)
# LICENSE: The Apache Software License, Version 2.0
maven_jar(
name = "mockito",
artifact = "org.mockito:mockito-core:1.9.5",
sha1 = "c3264abeea62c4d2f367e21484fbb40c7e256393",
)
# LICENSE: The Apache Software License, Version 2.0
maven_jar(
name = "jimfs",
artifact = "com.google.jimfs:jimfs:1.0",
sha1 = "edd65a2b792755f58f11134e76485a928aab4c97",
)
# LICENSE: The Apache Software License, Version 2.0
maven_jar(
name = "jsr305",
artifact = "com.google.code.findbugs:jsr305:3.0.1",
sha1 = "f7be08ec23c21485b9b5a1cf1654c2ec8c58168d",
)
new_http_archive(
name = "cram",
build_file = "BUILD.cram",
sha256 = "7da7445af2ce15b90aad5ec4792f857cef5786d71f14377e9eb994d8b8337f2f",
strip_prefix = "cram-0.7/",
url = "https://pypi.python.org/packages/source/c/cram/cram-0.7.tar.gz",
)
# LICENSE: Common Public License 1.0
maven_jar(
name = "junit",
artifact = "junit:junit:4.11",
sha1 = "4e031bb61df09069aeb2bffb4019e7a5034a4ee0",
)
# LICENSE: The Apache Software License, Version 2.0
http_archive(
name = "io_bazel",
# TODO(copybara-team): Revisit to try to depend on a tag instead
# Currently we depend on a specific commit, otherwise the sha-256 would be changing all the
# times.
url = "https://github.com/bazelbuild/bazel/archive/b13457b1434d64ab187fb511e73f01d1f2321c1e.zip",
strip_prefix = "bazel-b13457b1434d64ab187fb511e73f01d1f2321c1e",
)
# LICENSE: New BSD
maven_jar(
name = "re2j",
artifact = "com.google.re2j:re2j:1.1",
sha1 = "d716952ab58aa4369ea15126505a36544d50a333",
)