mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-17 21:15:50 +00:00
Updated pom based on practices defined by Heroku's user guide.
This commit is contained in:
parent
79f7d1d41c
commit
6540184aee
1 changed files with 17 additions and 2 deletions
19
pom.xml
19
pom.xml
|
@ -41,7 +41,6 @@
|
|||
<url>http://localhost:8081/repository/maven-public/</url>
|
||||
</repository>
|
||||
</repositories>
|
||||
-->
|
||||
|
||||
<distributionManagement>
|
||||
<snapshotRepository>
|
||||
|
@ -53,6 +52,7 @@
|
|||
<url>http://localhost:8081/repository/maven-releases</url>
|
||||
</repository>
|
||||
</distributionManagement>
|
||||
-->
|
||||
|
||||
<dependencies>
|
||||
<!-- Spring and Spring Boot dependencies -->
|
||||
|
@ -198,7 +198,9 @@
|
|||
<plugin>
|
||||
<groupId>pl.project13.maven</groupId>
|
||||
<artifactId>git-commit-id-plugin</artifactId>
|
||||
<!--
|
||||
<version>2.2.1</version>
|
||||
-->
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
|
@ -265,7 +267,20 @@
|
|||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-dependency-plugin</artifactId>
|
||||
<version>2.4</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>copy-dependencies</id>
|
||||
<phase>package</phase>
|
||||
<goals><goal>copy-dependencies</goal></goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<reporting>
|
||||
<plugins>
|
||||
|
|
Loading…
Reference in a new issue