Skip to content

Commit f783a93

Browse files
committed
Fix CI profile activation
1 parent f0ecce9 commit f783a93

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

pom.xml

+1-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
limitations under the License.
1717
1818
-->
19-
2019
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2120
<modelVersion>4.0.0</modelVersion>
2221
<groupId>com.github.derjust</groupId>
@@ -592,7 +591,7 @@
592591
<id>ci</id>
593592
<activation>
594593
<property>
595-
<name>!TRAVIS_CI</name>
594+
<name>env.TRAVIS_CI</name>
596595
</property>
597596
</activation>
598597
</profile>

spring-data-dynamodb-examples/rest/pom.xml

+6
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,12 @@
6464
<configuration>
6565
<mainClass>com.github.derjust.spring_data_dynamodb_examples.rest.Application</mainClass>
6666
</configuration>
67+
<executions>
68+
<execution>
69+
<id>exec</id>
70+
<phase>none</phase>
71+
</execution>
72+
</executions>
6773
</plugin>
6874
</plugins>
6975
</build>

0 commit comments

Comments
 (0)