spring-boot-kotlin-starter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.stevenchoo</groupId> <artifactId>spring-boot-kotlin-starter</artifactId> <version>1.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright (C) 2025 Steven Choo <info@stevenchoo.nl> ~ ~ MIT License. See the LICENSE file in the root directory or <http://www.opensource.org/licenses/mit-license.php> --> <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> <groupId>io.github.stevenchoo</groupId> <artifactId>kotlin-starter</artifactId> <version>1.0.0</version> <relativePath/> </parent> <artifactId>spring-boot-kotlin-starter</artifactId> <version>1.0.0</version> <packaging>pom</packaging> <name>Spring Boot Kotlin Starter</name> <description>Parent POM for Spring Boot Kotlin projects</description> <properties> <springdoc.version>2.6.0</springdoc.version> <springdoc-kotlin.version>1.8.0</springdoc-kotlin.version> </properties> <!-- Default dependencies - Exclude in project if needed --> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-logging</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>${spring-boot.version}</version> <configuration> <mainClass>${spring-boot.run.main-class}</mainClass> <excludes> <exclude> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> </exclude> </excludes> </configuration> <executions> <execution> <id>repackage</id> <goals> <goal>repackage</goal> </goals> </execution> </executions> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-maven-plugin</artifactId> <configuration> <args> <arg>-Xjsr305=strict</arg> </args> <compilerPlugins> <!-- Or "spring" for the Spring support --> <plugin>spring</plugin> <plugin>all-open</plugin> <plugin>jpa</plugin> </compilerPlugins> </configuration> <dependencies> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-maven-allopen</artifactId> <version>${kotlin.version}</version> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-maven-noarg</artifactId> <version>${kotlin.version}</version> </dependency> </dependencies> </plugin> <!-- Add additional ignore rules for Spring Boot and Kotlin --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <configuration> <ignoredUsedUndeclaredDependencies> <ignoredUsedUndeclaredDependency>org.springframework.boot:*</ignoredUsedUndeclaredDependency> <ignoredUsedUndeclaredDependency>org.springframework:spring*</ignoredUsedUndeclaredDependency> </ignoredUsedUndeclaredDependencies> <ignoredUnusedDeclaredDependencies combine.children="append"> <ignoredUnusedDeclaredDependency>org.springframework.boot:spring-boot-starter-logging*</ignoredUnusedDeclaredDependency> <ignoredUnusedDeclaredDependency>org.springframework.boot:spring-boot-starter-web*</ignoredUnusedDeclaredDependency> <ignoredUnusedDeclaredDependency>org.springframework.boot:spring-boot-starter-test*</ignoredUnusedDeclaredDependency> </ignoredUnusedDeclaredDependencies> </configuration> </plugin> </plugins> </build> <url>https://github.com/StevenChoo/personal-starter-pom</url> <licenses> <license> <name>The MIT License</name> <url>http://opensource.org/licenses/MIT</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Steven Choo</name> <email>dev@stevenchoo.nl</email> </developer> </developers> <scm> <connection>scm:git:git://github.com/StevenChoo/personal-starter-pom.git</connection> <developerConnection>scm:git:git://github.com/StevenChoo/personal-starter-pom.git</developerConnection> <url>https://github.com/StevenChoo/personal-starter-pom</url> </scm> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/StevenChoo/personal-starter-pom/issues</url> </issueManagement> <ciManagement> <system>GitHub Actions</system> <url>https://github.com/StevenChoo/personal-starter-pom/actions</url> </ciManagement> </project>