ktool-web-status
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>cl.kanopus.tool</groupId>
<artifactId>ktool-web-status</artifactId>
<version>1.0.5</version>
</dependency><?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>cl.kanopus</groupId>
<artifactId>kanopus-boot-parent</artifactId>
<version>4.04.0</version>
</parent>
<groupId>cl.kanopus.tool</groupId>
<artifactId>ktool-web-status</artifactId>
<version>1.0.5</version>
<packaging>jar</packaging>
<name>ktool-web-status</name>
<description>URL Health Monitor — multi-tab, async URL checking with H2 persistence</description>
<scm>
<connection>scm:git:https://github.com/godheaven/ktool-web-status.git</connection>
<developerConnection>scm:git:https://github.com/godheaven/ktool-web-status.git</developerConnection>
<url>https://github.com/godheaven/ktool-web-status</url>
<tag>HEAD</tag>
</scm>
<properties>
<start-class>cl.kanopus.tool.webstatus.Application</start-class>
<maven.test.skip>false</maven.test.skip>
<license.skip>false</license.skip>
<!-- Docker: Skip running the application during the build by default -->
<spring.boot.repackage.skip>true</spring.boot.repackage.skip>
</properties>
<profiles>
<profile>
<id>local</id>
<properties>
<spring.boot.repackage.skip>true</spring.boot.repackage.skip>
</properties>
</profile>
<profile>
<id>release</id>
<properties>
<spring.boot.repackage.skip>true</spring.boot.repackage.skip>
</properties>
</profile>
</profiles>
<dependencies>
<!-- Spring Boot Starters -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
</dependency>
<!-- H2 Embedded Database -->
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>runtime</scope>
</dependency>
<!-- Apache Commons CSV for import/export -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-csv</artifactId>
<version>1.10.0</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<mainClass>${start-class}</mainClass>
</configuration>
<executions>
<execution>
<id>repackage</id>
<goals>
<goal>repackage</goal>
</goals>
<configuration>
<skip>${spring.boot.repackage.skip}</skip>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>