We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94a33c5 commit dbef55aCopy full SHA for dbef55a
.circleci/config.yml
@@ -12,6 +12,8 @@ jobs:
12
13
- checkout
14
15
+ - run: mvn help:active-profiles
16
+
17
- restore_cache:
18
key: circleci-demo-java-spring-{{ checksum "pom.xml" }}
19
pom.xml
@@ -82,5 +82,19 @@
82
</plugins>
83
</build>
84
85
+ <profiles>
86
+ <profile>
87
+ <id>ci</id>
88
+ <activation>
89
+ <property>
90
+ <name>env.CIRCLECI</name>
91
+ <value>true</value>
92
+ </property>
93
+ </activation>
94
+ <properties>
95
+ </properties>
96
+ </profile>
97
+ </profiles>
98
99
100
</project>
0 commit comments