File tree Expand file tree Collapse file tree 2 files changed +8
-11
lines changed Expand file tree Collapse file tree 2 files changed +8
-11
lines changed Original file line number Diff line number Diff line change 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 >
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 >
808805 <goal >start</goal >
809806 </goals >
810807 <configuration >
811- <skip >${testing. skipTests} </skip >
808+ <skip >${skipTests} </skip >
812809 </configuration >
813810 </execution >
814811 <execution >
817814 <goal >stop</goal >
818815 </goals >
819816 <configuration >
820- <skip >${testing. skipTests} </skip >
817+ <skip >${skipTests} </skip >
821818 </configuration >
822819 </execution >
823820 <execution >
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 >
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ function runDev() {
77}
88
99function 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
1313function runGithubTestBuild() {
@@ -33,11 +33,11 @@ function runHerokuLocal() {
3333}
3434
3535function main() {
36- runGithubTestBuild
36+ # runGithubTestBuild
3737 # setupHeroku
3838 # runHerokuLocal
3939 # runDev
40- # runTest
40+ runTest
4141}
4242
4343main
You can’t perform that action at this time.
0 commit comments