This repository has been archived by the owner on Apr 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
pom.xml
125 lines (105 loc) · 3.99 KB
/
pom.xml
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
119
120
121
122
123
124
125
<!--
~ Copyright 2020, Verizon Media.
~ Licensed under the Apache License, Version 2.0
~ See LICENSE file in project root for terms.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>covid-19-api-parent-pom</artifactId>
<name>Parent pom for Covid 19 API</name>
<description>Covid 19 API Parent Pom</description>
<groupId>com.yahoo.covid19</groupId>
<packaging>pom</packaging>
<version>1.5-SNAPSHOT</version>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.2.RELEASE</version>
</parent>
<modules>
<module>db-builder</module>
<module>db</module>
<module>webservice</module>
</modules>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/yahoo/covid-19-api/issues</url>
</issueManagement>
<inceptionYear>2020</inceptionYear>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Yahoo Inc.</name>
<url>https://github.com/yahoo</url>
</developer>
</developers>
<distributionManagement>
<repository>
<id>bintray-yahoo-yk-datasets</id>
<url>https://api.bintray.com/maven/yahoo/yk-datasets/covid19-api/;publish=1</url>
</repository>
</distributionManagement>
<scm>
<developerConnection>scm:git:ssh://[email protected]/yahoo/covid-19-api.git</developerConnection>
<url>https://github.com/yahoo/covid-19-api.git</url>
<tag>HEAD</tag>
</scm>
<prerequisites>
<maven>3.0.0</maven>
</prerequisites>
<properties>
<spring.version>2.2.2.RELEASE</spring.version>
<junit.jupiter.version>5.5.2</junit.jupiter.version>
<timestamp>${maven.build.timestamp}</timestamp>
<maven.build.timestamp.format>yyyyMMddHHmmss</maven.build.timestamp.format>
</properties>
<dependencyManagement>
<dependencies>
<!-- Runtime -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.10</version>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.4.197</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>28.2-jre</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.30</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>${junit.jupiter.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
</project>