Skip to content

Commit 20f7e55

Browse files
author
Guilherme Biff Zarelli
authored
Merge pull request #13 from helpdeveloper/upgrade-versions
feat: upgrade versions
2 parents 95f86ef + 0ebd71a commit 20f7e55

File tree

3 files changed

+17
-65
lines changed

3 files changed

+17
-65
lines changed

adapter/output/jpa-mysql-repository/pom.xml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,6 @@
3434
<groupId>${project.groupId}</groupId>
3535
<artifactId>domain</artifactId>
3636
</dependency>
37-
<dependency>
38-
<groupId>org.modelmapper</groupId>
39-
<artifactId>modelmapper</artifactId>
40-
</dependency>
4137
<dependency>
4238
<groupId>${project.groupId}</groupId>
4339
<artifactId>use-case</artifactId>

app/quarkus-app/pom.xml

Lines changed: 0 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -149,65 +149,7 @@
149149
</execution>
150150
</executions>
151151
</plugin>
152-
<plugin>
153-
<artifactId>maven-compiler-plugin</artifactId>
154-
<version>${maven-compiler-plugin.version}</version>
155-
<configuration>
156-
<compilerArgs>
157-
<arg>-parameters</arg>
158-
</compilerArgs>
159-
</configuration>
160-
</plugin>
161-
<plugin>
162-
<artifactId>maven-surefire-plugin</artifactId>
163-
<version>${maven-surefire-plugin.version}</version>
164-
<configuration>
165-
<systemPropertyVariables>
166-
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
167-
<maven.home>${maven.home}</maven.home>
168-
</systemPropertyVariables>
169-
</configuration>
170-
</plugin>
171152
</plugins>
172153
</build>
173-
<profiles>
174-
<profile>
175-
<id>native</id>
176-
<activation>
177-
<property>
178-
<name>native</name>
179-
</property>
180-
</activation>
181-
<build>
182-
<plugins>
183-
<plugin>
184-
<artifactId>maven-failsafe-plugin</artifactId>
185-
<version>${surefire-plugin.version}</version>
186-
<executions>
187-
<execution>
188-
<goals>
189-
<goal>integration-test</goal>
190-
<goal>verify</goal>
191-
</goals>
192-
<configuration>
193-
<systemPropertyVariables>
194-
<native.image.path>
195-
${project.build.directory}/${project.build.finalName}-runner
196-
</native.image.path>
197-
<java.util.logging.manager>org.jboss.logmanager.LogManager
198-
</java.util.logging.manager>
199-
<maven.home>${maven.home}</maven.home>
200-
</systemPropertyVariables>
201-
</configuration>
202-
</execution>
203-
</executions>
204-
</plugin>
205-
</plugins>
206-
</build>
207-
<properties>
208-
<quarkus.package.type>native</quarkus.package.type>
209-
</properties>
210-
</profile>
211-
</profiles>
212154

213155
</project>

pom.xml

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,8 @@
104104
<lombok.version>1.18.20</lombok.version>
105105
<slf4j.version>1.7.30</slf4j.version>
106106
<rest-assured.version>4.3.3</rest-assured.version>
107-
<jackson-databind.version>2.13.2.2</jackson-databind.version>
108-
<jackson-datatype.version>2.13.2</jackson-datatype.version>
109-
<microprofile-fault-tolerance.version>3.0</microprofile-fault-tolerance.version>
107+
<jackson-databind.version>2.13.4.2</jackson-databind.version>
108+
<jackson-datatype.version>2.14.1</jackson-datatype.version>
110109
<modelmapper.version>2.3.0</modelmapper.version>
111110
</properties>
112111

@@ -326,6 +325,7 @@
326325

327326
<build>
328327
<plugins>
328+
329329
<plugin>
330330
<groupId>org.eluder.coveralls</groupId>
331331
<artifactId>coveralls-maven-plugin</artifactId>
@@ -338,6 +338,7 @@
338338
</dependency>
339339
</dependencies>
340340
</plugin>
341+
341342
<plugin>
342343
<artifactId>maven-compiler-plugin</artifactId>
343344
<version>${maven-compiler-plugin.version}</version>
@@ -349,11 +350,22 @@
349350
</compilerArgs>
350351
</configuration>
351352
</plugin>
353+
352354
<plugin>
353355
<groupId>org.apache.maven.plugins</groupId>
354356
<artifactId>maven-surefire-plugin</artifactId>
355357
<version>${maven-surefire-plugin.version}</version>
358+
<configuration>
359+
<properties>
360+
<configurationParameters>
361+
junit.jupiter.execution.parallel.enabled=true
362+
junit.jupiter.execution.parallel.mode.default=same_thread
363+
junit.jupiter.execution.parallel.mode.classes.default=concurrent
364+
</configurationParameters>
365+
</properties>
366+
</configuration>
356367
</plugin>
368+
357369
<plugin>
358370
<groupId>org.apache.maven.plugins</groupId>
359371
<artifactId>maven-checkstyle-plugin</artifactId>
@@ -405,6 +417,7 @@
405417
</execution>
406418
</executions>
407419
</plugin>
420+
408421
<plugin>
409422
<groupId>org.jacoco</groupId>
410423
<artifactId>jacoco-maven-plugin</artifactId>
@@ -456,6 +469,7 @@
456469
</excludes>
457470
</configuration>
458471
</plugin>
472+
459473
<plugin>
460474
<groupId>org.pitest</groupId>
461475
<artifactId>pitest-maven</artifactId>

0 commit comments

Comments
 (0)