blob: 80b790d03185e3031089864f4cf08fb15657a631 [file] [log] [blame]
y.busko442e1602021-04-14 16:19:08 +02001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright (C) 2021 Samsung Electronics
4 ~ Licensed under the Apache License, Version 2.0 (the "License");
5 ~ you may not use this file except in compliance with the License.
6 ~ You may obtain a copy of the License at
7 ~ http://www.apache.org/licenses/LICENSE-2.0
8 ~ Unless required by applicable law or agreed to in writing, software
9 ~ distributed under the License is distributed on an "AS IS" BASIS,
10 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 ~ See the License for the specific language governing permissions and
12 ~ limitations under the License
13 -->
14
15<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
16 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
17 <modelVersion>4.0.0</modelVersion>
18 <artifactId>sleepingcelldetector</artifactId>
19 <groupId>org.onap.rapp.sleepingcelldetector</groupId>
20 <version>0.0.1-SNAPSHOT</version>
21 <packaging>jar</packaging>
22
23 <parent>
24 <groupId>org.onap.rapp</groupId>
25 <artifactId>rapp</artifactId>
26 <version>0.0.1-SNAPSHOT</version>
27 </parent>
28
29 <properties>
30 <docker-image.name.prefix>org.onap.rapp.sleepingcelldetector</docker-image.name.prefix>
31 </properties>
32
33 <dependencies>
34 <dependency>
35 <groupId>org.springframework.boot</groupId>
36 <artifactId>spring-boot-starter-web</artifactId>
37 </dependency>
38 <dependency>
39 <groupId>org.springframework.boot</groupId>
40 <artifactId>spring-boot-starter-test</artifactId>
41 <scope>test</scope>
42 </dependency>
43 <dependency>
44 <groupId>org.json</groupId>
45 <artifactId>json</artifactId>
46 <version>20190722</version>
47 <scope>compile</scope>
48 </dependency>
49 <dependency>
50 <groupId>com.google.guava</groupId>
51 <artifactId>guava</artifactId>
52 <version>28.2-android</version>
53 </dependency>
54 </dependencies>
55</project>