mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-18 13:35:50 +00:00
Modified Pom XML file for Heroku operation
This commit is contained in:
parent
5415303b42
commit
0f20c354d2
1 changed files with 18 additions and 4 deletions
22
pom.xml
22
pom.xml
|
@ -38,7 +38,7 @@
|
||||||
<sonar.sourceEncoding>UTF-8</sonar.sourceEncoding>
|
<sonar.sourceEncoding>UTF-8</sonar.sourceEncoding>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<!--
|
|
||||||
<repositories>
|
<repositories>
|
||||||
<repository>
|
<repository>
|
||||||
<id>nexus</id>
|
<id>nexus</id>
|
||||||
|
@ -56,7 +56,7 @@
|
||||||
<url>http://localhost:8081/repository/maven-releases</url>
|
<url>http://localhost:8081/repository/maven-releases</url>
|
||||||
</repository>
|
</repository>
|
||||||
</distributionManagement>
|
</distributionManagement>
|
||||||
-->
|
|
||||||
|
|
||||||
<scm>
|
<scm>
|
||||||
<connection>scm:git:https://github.com/Blackhound/spring-petclinic</connection>
|
<connection>scm:git:https://github.com/Blackhound/spring-petclinic</connection>
|
||||||
|
@ -238,7 +238,7 @@
|
||||||
|
|
||||||
<!-- Spring Boot Actuator displays build-related information if a git.properties
|
<!-- Spring Boot Actuator displays build-related information if a git.properties
|
||||||
file is present at the classpath -->
|
file is present at the classpath -->
|
||||||
<!--
|
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>pl.project13.maven</groupId>
|
<groupId>pl.project13.maven</groupId>
|
||||||
<artifactId>git-commit-id-plugin</artifactId>
|
<artifactId>git-commit-id-plugin</artifactId>
|
||||||
|
@ -257,7 +257,7 @@
|
||||||
<dotGitDirectory>${project.basedir}/.git</dotGitDirectory>
|
<dotGitDirectory>${project.basedir}/.git</dotGitDirectory>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
-->
|
|
||||||
|
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>ro.isdc.wro4j</groupId>
|
<groupId>ro.isdc.wro4j</groupId>
|
||||||
|
@ -343,6 +343,20 @@
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
||||||
|
<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>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
</project>
|
</project>
|
||||||
|
|
Loading…
Reference in a new issue