1<?xml version="1.0" encoding="utf-8"?>
2<!--
3  ~ Copyright (C) 2019 The Android Open Source Project
4  ~
5  ~ Licensed under the Apache License, Version 2.0 (the "License");
6  ~ you may not use this file except in compliance with the License.
7  ~ You may obtain a copy of the License at
8  ~
9  ~      http://www.apache.org/licenses/LICENSE-2.0
10  ~
11  ~ Unless required by applicable law or agreed to in writing, software
12  ~ distributed under the License is distributed on an "AS IS" BASIS,
13  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  ~ See the License for the specific language governing permissions and
15  ~ limitations under the License
16  -->
17
18<!-- JRE version of libs, in particular guava -->
19<project>
20    <modelVersion>4.0.0</modelVersion>
21    <groupId>com.android.tv</groupId>
22    <artifactId>jre-libs</artifactId>
23    <version>1</version>
24
25    <repositories>
26        <repository>
27            <id>google</id>
28            <name>Google Maven Repository</name>
29            <url>https://maven.google.com</url>
30            <layout>default</layout>
31            <snapshots>
32                <enabled>false</enabled>
33            </snapshots>
34        </repository>
35    </repositories>
36
37    <dependencies>
38
39
40        <dependency>
41            <groupId>com.google.guava</groupId>
42            <artifactId>guava</artifactId>
43            <version>28.0-jre</version>
44        </dependency>
45
46    </dependencies>
47</project>