Skip to content

Commit b9afd23

Browse files
committed
#176 - Polishing.
Remove all-dbs profile.
1 parent 5065d7b commit b9afd23

File tree

2 files changed

+1
-72
lines changed

2 files changed

+1
-72
lines changed

Jenkinsfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ pipeline {
3232
options { timeout(time: 30, unit: 'MINUTES') }
3333
steps {
3434
sh 'rm -rf ?'
35-
sh 'MAVEN_OPTS="-Duser.name=jenkins -Duser.home=/tmp/jenkins-home" ./mvnw -Pci,all-dbs clean dependency:list test -Dsort -Dbundlor.enabled=false -U -B'
35+
sh 'MAVEN_OPTS="-Duser.name=jenkins -Duser.home=/tmp/jenkins-home" ./mvnw -Pci clean dependency:list test -Dsort -Dbundlor.enabled=false -U -B'
3636
sh "chown -R 1001:1001 target"
3737
}
3838
}

pom.xml

-71
Original file line numberDiff line numberDiff line change
@@ -361,77 +361,6 @@
361361
</build>
362362

363363
</profile>
364-
365-
<profile>
366-
<id>all-dbs</id>
367-
<build>
368-
<plugins>
369-
<plugin>
370-
<groupId>org.apache.maven.plugins</groupId>
371-
<artifactId>maven-surefire-plugin</artifactId>
372-
<executions>
373-
<execution>
374-
<id>mysql-test</id>
375-
<phase>test</phase>
376-
<goals>
377-
<goal>test</goal>
378-
</goals>
379-
<configuration>
380-
<includes>
381-
<include>**/*IntegrationTests.java</include>
382-
</includes>
383-
<excludes>
384-
<exclude>**/*HsqlIntegrationTests.java</exclude>
385-
</excludes>
386-
<systemPropertyVariables>
387-
<spring.profiles.active>mysql
388-
</spring.profiles.active>
389-
</systemPropertyVariables>
390-
</configuration>
391-
</execution>
392-
<execution>
393-
<id>postgres-test</id>
394-
<phase>test</phase>
395-
<goals>
396-
<goal>test</goal>
397-
</goals>
398-
<configuration>
399-
<includes>
400-
<include>**/*IntegrationTests.java</include>
401-
</includes>
402-
<excludes>
403-
<exclude>**/*HsqlIntegrationTests.java</exclude>
404-
</excludes>
405-
<systemPropertyVariables>
406-
<spring.profiles.active>postgres
407-
</spring.profiles.active>
408-
</systemPropertyVariables>
409-
</configuration>
410-
</execution>
411-
<execution>
412-
<id>mariadb-test</id>
413-
<phase>test</phase>
414-
<goals>
415-
<goal>test</goal>
416-
</goals>
417-
<configuration>
418-
<includes>
419-
<include>**/*IntegrationTests.java</include>
420-
</includes>
421-
<excludes>
422-
<exclude>**/*HsqlIntegrationTests.java</exclude>
423-
</excludes>
424-
<systemPropertyVariables>
425-
<spring.profiles.active>mariadb
426-
</spring.profiles.active>
427-
</systemPropertyVariables>
428-
</configuration>
429-
</execution>
430-
</executions>
431-
</plugin>
432-
</plugins>
433-
</build>
434-
</profile>
435364
</profiles>
436365

437366
<repositories>

0 commit comments

Comments
 (0)