Skip to content

Commit 26139ee

Browse files
committed
URL PATH of Actions - Controller Methods Refactoring
1 parent 187b88e commit 26139ee

File tree

2 files changed

+22
-18
lines changed

2 files changed

+22
-18
lines changed

pom.xml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -359,6 +359,12 @@
359359
<groupId>org.springframework.boot</groupId>
360360
<artifactId>spring-boot-starter-security</artifactId>
361361
</dependency>
362+
<dependency>
363+
<groupId>org.springframework.boot</groupId>
364+
<artifactId>spring-boot-devtools</artifactId>
365+
<scope>runtime</scope>
366+
<optional>true</optional>
367+
</dependency>
362368
<dependency>
363369
<groupId>org.springframework.boot</groupId>
364370
<artifactId>spring-boot-starter-test</artifactId>
@@ -792,6 +798,19 @@
792798
</configuration>
793799
<executions>
794800
<execution>
801+
<id>pre-integration-test</id>
802+
<goals>
803+
<goal>start</goal>
804+
</goals>
805+
</execution>
806+
<execution>
807+
<id>post-integration-test</id>
808+
<goals>
809+
<goal>stop</goal>
810+
</goals>
811+
</execution>
812+
<execution>
813+
<id>id-build-info</id>
795814
<goals>
796815
<goal>build-info</goal>
797816
</goals>
@@ -810,6 +829,9 @@
810829
<groupId>org.apache.maven.plugins</groupId>
811830
<artifactId>maven-surefire-plugin</artifactId>
812831
<configuration>
832+
<systemPropertyVariables>
833+
<spring.profiles.active>default</spring.profiles.active>
834+
</systemPropertyVariables>
813835
<skipTests>false</skipTests>
814836
</configuration>
815837
</plugin>

src/test/resources/test-context.xml

Lines changed: 0 additions & 18 deletions
This file was deleted.

0 commit comments

Comments
 (0)