Skip to content

Commit

Permalink
Merge pull request #17 from helpdeveloper/gz-refactor-pom
Browse files Browse the repository at this point in the history
refactor pom
  • Loading branch information
gbzarelli committed Jul 18, 2023
2 parents 5a73d00 + f912ad3 commit 488c9eb
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
1 change: 0 additions & 1 deletion acceptance-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<mutation.skip>true</mutation.skip>
<maven-resources-plugin.version>3.1.0</maven-resources-plugin.version>
<mysql-connector-j.version>8.0.33</mysql-connector-j.version>
<docker-maven-plugin.version>0.38.1</docker-maven-plugin.version>
<mutation.skip>true</mutation.skip>
Expand Down
4 changes: 3 additions & 1 deletion adapter/input/jakarta-controller-v1/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@
<build>
<plugins>
<!-- https://github.com/swagger-api/swagger-core/blob/master/modules/swagger-maven-plugin/README.md -->
<!-- Generate the openapi file in resources -->
<plugin>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-maven-plugin-jakarta</artifactId>
Expand All @@ -107,9 +108,10 @@
</executions>
</plugin>
<plugin>
<!-- Copy the resources (specifically the openapi file) to target/class to make available in OpenApiController -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.3.1</version>
<version>${maven-resources-plugin.version}</version>
<executions>
<execution>
<id>copy-resources</id>
Expand Down
1 change: 1 addition & 0 deletions app/spring-app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${spring-boot.version}</version>
<configuration>
<mainClass>br.com.helpdev.SpringSampleApplication</mainClass>
<layers>
Expand Down
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@
<maven-failsafe-plugin.version>3.1.2</maven-failsafe-plugin.version>
<pitest-junit5-plugin.version>0.15</pitest-junit5-plugin.version>
<jacoco-maven-plugin.version>0.8.8</jacoco-maven-plugin.version>
<maven-resources-plugin.version>3.3.1</maven-resources-plugin.version>

<!-- Tests -->
<junit-jupiter.version>5.9.3</junit-jupiter.version>
Expand Down

0 comments on commit 488c9eb

Please sign in to comment.