java-migration-tool-spring-boot-starter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.yashchenkon</groupId> <artifactId>java-migration-tool-spring-boot-starter</artifactId> <version>0.0.8</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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <artifactId>java-migration-tool-parent</artifactId> <groupId>io.github.yashchenkon</groupId> <version>0.0.8</version> </parent> <artifactId>java-migration-tool-spring-boot-starter</artifactId> <packaging>jar</packaging> <name>Java Migration Tool Spring Boot Integration</name> <url>https://github.com/YashchenkoN/java-migration-tool</url> <description> This module integrates the Java Migration Tool library into Spring Boot and eases the usage. </description> <properties> <spring.boot.version>2.0.0.RELEASE</spring.boot.version> </properties> <dependencies> <dependency> <groupId>io.github.yashchenkon</groupId> <artifactId>java-migration-tool</artifactId> <version>${version}</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot</artifactId> <version>${spring.boot.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-autoconfigure</artifactId> <version>${spring.boot.version}</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <version>${spring.boot.version}</version> <optional>true</optional> </dependency> </dependencies> </project>