Adding Continent to V3 and Country Structure

This commit is contained in:
Alejandro Matos
2021-10-13 11:24:38 -05:00
parent fa833674bf
commit 513ea55f2f
4 changed files with 762 additions and 8 deletions
+1 -7
View File
@@ -5,20 +5,14 @@ variables:
image: adoptopenjdk/openjdk14:alpine-slim
stages:
- test
- package
- release
- run
test:
stage: test
script:
- ./mvnw test
maven-package:
stage: package
script:
- ./mvnw clean install -DskipTests -Dmaven.repo.local=$MAVEN_USER_HOME
- ./mvnw clean install -Dmaven.repo.local=$MAVEN_USER_HOME
artifacts:
paths:
- target/*.jar
@@ -34,6 +34,7 @@ public class ControllerHelper {
"gini",
"fifa",
"car",
"timezones"
"timezones",
"continents"
};
}
@@ -35,6 +35,7 @@ public class BaseCountry {
private String fifa;
private Car car;
private List<String> timezones;
private List<String> continents;
public Name getName() {
return name;
@@ -305,4 +306,12 @@ public class BaseCountry {
public void setTimezones(List<String> timezones) {
this.timezones = timezones;
}
public List<String> getContinents() {
return continents;
}
public void setContinents(List<String> continents) {
this.continents = continents;
}
}
File diff suppressed because it is too large Load Diff