Skip to content

Commit d77adf7

Browse files
committed
Address review comments
1 parent 5bf9d1a commit d77adf7

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

scripts/build/builders/android.py

+5
Original file line numberDiff line numberDiff line change
@@ -310,6 +310,11 @@ def generate(self):
310310
title="Setting up Android deps through Gradle",
311311
)
312312

313+
self._Execute(
314+
["third_party/java_deps/set_up_java_deps.sh"],
315+
title="Setting up Java deps",
316+
)
317+
313318
if not os.path.exists(self.output_dir):
314319
# NRF does a in-place update of SDK tools
315320
if not self._runner.dry_run:
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
#!/usr/bin/env bash
2+
3+
#
4+
# Copyright (c) 2022 Project CHIP Authors
5+
#
6+
# Licensed under the Apache License, Version 2.0 (the "License");
7+
# you may not use this file except in compliance with the License.
8+
# You may obtain a copy of the License at
9+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
# Unless required by applicable law or agreed to in writing, software
13+
# distributed under the License is distributed on an "AS IS" BASIS,
14+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
# See the License for the specific language governing permissions and
16+
# limitations under the License.
17+
#
18+
19+
mkdir third_party/java_deps/artifacts
20+
curl --fail --location --silent --show-error https://repo1.maven.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar -o third_party/java_deps/artifacts/jsr305-3.0.2.jar

0 commit comments

Comments
 (0)