Skip to content

Commit 6add71f

Browse files
committed
URL PATH of Actions - Controller Methods Refactoring
1 parent f5f6bc0 commit 6add71f

File tree

2 files changed

+8
-11
lines changed

2 files changed

+8
-11
lines changed

pom.xml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@
112112
<docker-compose-maven-plugin.removeImages>true</docker-compose-maven-plugin.removeImages>
113113
<docker-compose-maven-plugin.removeVolumes>true</docker-compose-maven-plugin.removeVolumes>
114114

115-
<testing.skipTests>true</testing.skipTests>
115+
<skipTests>true</skipTests>
116116
</properties>
117117

118118
<dependencyManagement>
@@ -778,9 +778,6 @@
778778
<profiles>
779779
<profile>
780780
<id>default</id>
781-
<properties>
782-
<testing.skipTests>true</testing.skipTests>
783-
</properties>
784781
<activation>
785782
<activeByDefault>true</activeByDefault>
786783
<property>
@@ -808,7 +805,7 @@
808805
<goal>start</goal>
809806
</goals>
810807
<configuration>
811-
<skip>${testing.skipTests}</skip>
808+
<skip>${skipTests}</skip>
812809
</configuration>
813810
</execution>
814811
<execution>
@@ -817,7 +814,7 @@
817814
<goal>stop</goal>
818815
</goals>
819816
<configuration>
820-
<skip>${testing.skipTests}</skip>
817+
<skip>${skipTests}</skip>
821818
</configuration>
822819
</execution>
823820
<execution>
@@ -840,10 +837,10 @@
840837
<groupId>org.apache.maven.plugins</groupId>
841838
<artifactId>maven-surefire-plugin</artifactId>
842839
<configuration>
843-
<skipTests>${testing.skipTests}</skipTests>
840+
<skipTests>${skipTests}</skipTests>
844841
<systemPropertyVariables>
845842
<spring.profiles.active>default</spring.profiles.active>
846-
<skipIntegrationTests>${testing.skipTests}</skipIntegrationTests>
843+
<skipIntegrationTests>${skipTests}</skipIntegrationTests>
847844
</systemPropertyVariables>
848845
</configuration>
849846
</plugin>

run.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ function runDev() {
77
}
88

99
function runTest() {
10-
./mvnw -B clean dependency:list install --file pom.xml
10+
./mvnw -B -DskipTests=false clean dependency:list install --file pom.xml
1111
}
1212

1313
function runGithubTestBuild() {
@@ -33,11 +33,11 @@ function runHerokuLocal() {
3333
}
3434

3535
function main() {
36-
runGithubTestBuild
36+
#runGithubTestBuild
3737
#setupHeroku
3838
#runHerokuLocal
3939
#runDev
40-
#runTest
40+
runTest
4141
}
4242

4343
main

0 commit comments

Comments
 (0)