Skip to content

Commit bc4053b

Browse files
author
Yvo Swillens
committed
added docker auth properties
1 parent b8d27a6 commit bc4053b

File tree

2 files changed

+29
-2
lines changed

2 files changed

+29
-2
lines changed

modules/flowable-app-rest/pom.xml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
<properties>
1818
<!--<swagger.host>localhost:8080</swagger.host> -->
1919
<swagger.generated.directory>target/generated-swagger</swagger.generated.directory>
20+
<docker.publisher.user>-</docker.publisher.user>
21+
<docker.publisher.password>-</docker.publisher.password>
2022
</properties>
2123

2224
<build>
@@ -617,7 +619,11 @@
617619
</from>
618620
<to>
619621
<!-- <image>flowable/flowable-rest</image> -->
620-
<image>yvoswillens/flowable-rest</image>
622+
<image>flowable-rest</image>
623+
<auth>
624+
<username>${docker.publisher.user}</username>
625+
<password>${docker.publisher.password}</password>
626+
</auth>
621627
</to>
622628
</configuration>
623629
<executions>
@@ -661,6 +667,10 @@
661667
<to>
662668
<!-- <image>flowable/flowable-rest:${project.version}</image> -->
663669
<image>yvoswillens/flowable-rest:${project.version}</image>
670+
<auth>
671+
<username>${docker.publisher.user}</username>
672+
<password>${docker.publisher.password}</password>
673+
</auth>
664674
</to>
665675
</configuration>
666676
<executions>
@@ -707,6 +717,10 @@
707717
<tags>
708718
<tag>latest</tag>
709719
</tags>
720+
<auth>
721+
<username>${docker.publisher.user}</username>
722+
<password>${docker.publisher.password}</password>
723+
</auth>
710724
</to>
711725
</configuration>
712726
<executions>

modules/flowable-ui/flowable-ui-app/pom.xml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@
1010
<artifactId>flowable-ui-app</artifactId>
1111
<packaging>war</packaging>
1212

13+
<properties>
14+
<docker.publisher.user>-</docker.publisher.user>
15+
<docker.publisher.password>-</docker.publisher.password>
16+
</properties>
17+
1318
<dependencies>
1419
<dependency>
1520
<groupId>org.flowable</groupId>
@@ -301,7 +306,7 @@
301306
</from>
302307
<to>
303308
<!-- <image>flowable/flowable-ui</image> -->
304-
<image>yvoswillens/flowable-ui</image>
309+
<image>flowable-ui</image>
305310
</to>
306311
</configuration>
307312
<executions>
@@ -345,6 +350,10 @@
345350
<to>
346351
<!-- <image>flowable/flowable-ui:${project.version}</image> -->
347352
<image>yvoswillens/flowable-ui</image>
353+
<auth>
354+
<username>${docker.publisher.user}</username>
355+
<password>${docker.publisher.password}</password>
356+
</auth>
348357
</to>
349358
</configuration>
350359
<executions>
@@ -391,6 +400,10 @@
391400
<tags>
392401
<tag>latest</tag>
393402
</tags>
403+
<auth>
404+
<username>${docker.publisher.user}</username>
405+
<password>${docker.publisher.password}</password>
406+
</auth>
394407
</to>
395408
</configuration>
396409
<executions>

0 commit comments

Comments
 (0)