Skip to content

Commit 3e1472b

Browse files
committed
fixed #388 make task.taskstate, task.duedate and taskstate workflow independent to each other
1 parent fc0ff4a commit 3e1472b

File tree

1 file changed

+20
-5
lines changed

1 file changed

+20
-5
lines changed

pom.xml

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1148,10 +1148,6 @@
11481148
</execution>
11491149
</executions>
11501150
</plugin>
1151-
<plugin>
1152-
<groupId>com.dkanejs.maven.plugins</groupId>
1153-
<artifactId>docker-compose-maven-plugin</artifactId>
1154-
</plugin>
11551151
<plugin>
11561152
<groupId>org.apache.maven.plugins</groupId>
11571153
<artifactId>maven-dependency-plugin</artifactId>
@@ -1455,10 +1451,29 @@
14551451
</properties>
14561452
<build>
14571453
<finalName>${project.artifactId}</finalName>
1458-
<defaultGoal>clean dependency:purge-local-repository install spring-boot:repackage</defaultGoal>
1454+
<defaultGoal>clean dependency:purge-local-repository install spring-boot:repackage</defaultGoal>
14591455
</build>
14601456
</profile>
14611457

1458+
<profile>
1459+
<id>docker</id>
1460+
<properties>
1461+
<skipTests>false</skipTests>
1462+
<skip.unit.tests>false</skip.unit.tests>
1463+
<skip.integration.tests>false</skip.integration.tests>
1464+
</properties>
1465+
<build>
1466+
<finalName>${project.artifactId}</finalName>
1467+
<defaultGoal>clean dependency:purge-local-repository install spring-boot:repackage</defaultGoal>
1468+
<plugins>
1469+
<plugin>
1470+
<groupId>com.dkanejs.maven.plugins</groupId>
1471+
<artifactId>docker-compose-maven-plugin</artifactId>
1472+
</plugin>
1473+
</plugins>
1474+
</build>
1475+
</profile>
1476+
14621477
<profile>
14631478
<id>cloud</id>
14641479
<properties>

0 commit comments

Comments
 (0)