This will be the replacement for the timestamp-task from Spring-Cloud-Task-Starters Co-authored-by: bono007 <chris.bono@gmail.com>
115 lines
3.1 KiB
XML
115 lines
3.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>2.6.1</version>
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|
</parent>
|
|
<groupId>io.spring</groupId>
|
|
<artifactId>timestamp-task</artifactId>
|
|
<version>1.0.0</version>
|
|
<name>timestamp-task</name>
|
|
<description>Simple Timestamp sample.</description>
|
|
|
|
<properties>
|
|
<java.version>8</java.version>
|
|
<spring-cloud.version>2021.0.0</spring-cloud.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-jdbc</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-task</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.postgresql</groupId>
|
|
<artifactId>postgresql</artifactId>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mariadb.jdbc</groupId>
|
|
<artifactId>mariadb-java-client</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.h2database</groupId>
|
|
<artifactId>h2</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-dependencies</artifactId>
|
|
<version>${spring-cloud.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>io.fabric8</groupId>
|
|
<artifactId>docker-maven-plugin</artifactId>
|
|
<version>0.21.0</version>
|
|
<configuration>
|
|
<images>
|
|
<image>
|
|
<name>springcloudtask/${project.artifactId}</name>
|
|
<build>
|
|
<tags>
|
|
<tag>${project.version}</tag>
|
|
</tags>
|
|
<from>springcloud/openjdk:2.0.0.RELEASE</from>
|
|
<volumes>
|
|
<volume>/tmp</volume>
|
|
</volumes>
|
|
<env>
|
|
<LANG>C.UTF-8</LANG>
|
|
</env>
|
|
<entryPoint>
|
|
<exec>
|
|
<arg>java</arg>
|
|
<arg>-jar</arg>
|
|
<arg>/maven/timestamp-task.jar</arg>
|
|
</exec>
|
|
</entryPoint>
|
|
<assembly>
|
|
<name>maven</name>
|
|
<descriptor>assembly.xml</descriptor>
|
|
<targetDir>/</targetDir>
|
|
</assembly>
|
|
</build>
|
|
</image>
|
|
</images>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|