- Remove unused timestamp task apps `docker/assembly.xml` - Resurrect the timestamp task/batch 2.0.x app - Add the resurrected apps to CI which publishes them to `/milestone`
7 lines
283 B
Bash
Executable File
7 lines
283 B
Bash
Executable File
#!/bin/bash
|
|
if [ "$TIMESTAMP_BATCH_TASK_VERSION" = "" ]; then
|
|
TIMESTAMP_BATCH_TASK_VERSION=2.0.2
|
|
fi
|
|
./mvnw -o clean install -DskipTests
|
|
./mvnw -o spring-boot:build-image -DskipTests -Dspring-boot.build-image.imageName=springcloud/timestamp-batch-task:$TIMESTAMP_BATCH_TASK_VERSION
|