Skip to content

Commit 2572c5b

Browse files
committed
format
1 parent bbe3a50 commit 2572c5b

File tree

2 files changed

+32
-20
lines changed

2 files changed

+32
-20
lines changed

.vscode/settings.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,20 @@
1010
"javac-linter.javac": "javac -Dfile.encoding=UTF-8",
1111
"java.configuration.updateBuildConfiguration": "interactive",
1212
"cSpell.words": [
13+
"awssdk",
14+
"bcprov",
15+
"bouncycastle",
16+
"cognitoidentityprovider",
1317
"Dfile",
1418
"fiware",
19+
"jitpack",
1520
"libexec",
1621
"makeour",
1722
"ngsi",
1823
"Ngsiv",
19-
"vmargs"
24+
"springframework",
25+
"vmargs",
26+
"webmvc"
2027
],
2128
"java.compile.nullAnalysis.mode": "automatic"
2229
}

pom.xml

Lines changed: 24 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22

3-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
<project xmlns="http://maven.apache.org/POM/4.0.0"
4+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
45
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
56
<modelVersion>4.0.0</modelVersion>
6-
7+
78

89
<groupId>city.makeour</groupId>
910
<artifactId>moc</artifactId>
@@ -34,22 +35,22 @@
3435
<scope>test</scope>
3536
</dependency>
3637
<dependency>
37-
<groupId>org.junit.jupiter</groupId>
38-
<artifactId>junit-jupiter-api</artifactId>
39-
<version>5.10.1</version>
40-
<scope>test</scope>
38+
<groupId>org.junit.jupiter</groupId>
39+
<artifactId>junit-jupiter-api</artifactId>
40+
<version>5.10.1</version>
41+
<scope>test</scope>
4142
</dependency>
4243
<dependency>
43-
<groupId>org.junit.jupiter</groupId>
44-
<artifactId>junit-jupiter-engine</artifactId>
45-
<version>5.10.1</version>
46-
<scope>test</scope>
44+
<groupId>org.junit.jupiter</groupId>
45+
<artifactId>junit-jupiter-engine</artifactId>
46+
<version>5.10.1</version>
47+
<scope>test</scope>
4748
</dependency>
4849
<dependency>
49-
<groupId>org.mockito</groupId>
50-
<artifactId>mockito-junit-jupiter</artifactId>
51-
<version>5.3.1</version>
52-
<scope>test</scope>
50+
<groupId>org.mockito</groupId>
51+
<artifactId>mockito-junit-jupiter</artifactId>
52+
<version>5.3.1</version>
53+
<scope>test</scope>
5354
</dependency>
5455
<dependency>
5556
<groupId>software.amazon.awssdk</groupId>
@@ -64,7 +65,7 @@
6465
<dependency>
6566
<groupId>org.bouncycastle</groupId>
6667
<artifactId>bcprov-jdk15on</artifactId>
67-
<version>1.70</version>
68+
<version>1.70</version>
6869
</dependency>
6970
<dependency>
7071
<groupId>org.springframework</groupId>
@@ -74,14 +75,17 @@
7475
</dependencies>
7576

7677
<build>
77-
<pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
78+
<pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to
79+
parent pom) -->
7880
<plugins>
79-
<!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
81+
<!-- clean lifecycle, see
82+
https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
8083
<plugin>
8184
<artifactId>maven-clean-plugin</artifactId>
8285
<version>3.1.0</version>
8386
</plugin>
84-
<!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
87+
<!-- default lifecycle, jar packaging: see
88+
https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
8589
<plugin>
8690
<artifactId>maven-resources-plugin</artifactId>
8791
<version>3.0.2</version>
@@ -111,7 +115,8 @@
111115
<artifactId>maven-deploy-plugin</artifactId>
112116
<version>2.8.2</version>
113117
</plugin>
114-
<!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
118+
<!-- site lifecycle, see
119+
https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
115120
<plugin>
116121
<artifactId>maven-site-plugin</artifactId>
117122
<version>3.7.1</version>

0 commit comments

Comments
 (0)