kotlin-service-parent-pom
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>dev.vality</groupId> <artifactId>kotlin-service-parent-pom</artifactId> <version>3.1.6</version> </dependency>
<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>dev.vality</groupId> <artifactId>service-parent-pom</artifactId> <version>3.1.6</version> </parent> <artifactId>kotlin-service-parent-pom</artifactId> <version>3.1.6</version> <packaging>pom</packaging> <properties> <kotlin.version>1.9.25</kotlin.version> <kotlin-logging-jvm.version>7.0.5</kotlin-logging-jvm.version> <ktlint.version>3.5.0</ktlint.version> <ktlint.skip>false</ktlint.skip> </properties> <name>kotlin-service-parent-pom</name> <description>kotlin-service-parent-pom</description> <url>https://github.com/valitydev/kotlin-service-parent-pom</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <organization>Vality.Dev</organization> <organizationUrl>https://vality.dev/</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git://github.com/valitydev/kotlin-service-parent-pom.git</connection> <developerConnection>scm:git:ssh://github.com/valitydev/kotlin-service-parent-pom.git</developerConnection> <url>https://github.com/valitydev/kotlin-service-parent-pom/tree/master</url> </scm> <dependencies> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> <version>${kotlin.version}</version> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-reflect</artifactId> <version>${kotlin.version}</version> </dependency> <dependency> <groupId>io.github.oshai</groupId> <artifactId>kotlin-logging-jvm</artifactId> <version>${kotlin-logging-jvm.version}</version> </dependency> <dependency> <groupId>org.mockito.kotlin</groupId> <artifactId>mockito-kotlin</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-maven-plugin</artifactId> <version>${kotlin.version}</version> <executions> <execution> <id>compile</id> <phase>compile</phase> <goals> <goal>compile</goal> </goals> <configuration> <sourceDirs> <source>src/main/kotlin</source> </sourceDirs> </configuration> </execution> <execution> <id>test-compile</id> <phase>test-compile</phase> <goals> <goal>test-compile</goal> </goals> </execution> </executions> <configuration> <args> <arg>-Xjsr305=strict</arg> </args> <compilerPlugins> <plugin>spring</plugin> </compilerPlugins> </configuration> <dependencies> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-maven-allopen</artifactId> <version>${kotlin.version}</version> </dependency> </dependencies> </plugin> <plugin> <groupId>com.github.gantsign.maven</groupId> <artifactId>ktlint-maven-plugin</artifactId> <version>${ktlint.version}</version> <configuration> <skip>${ktlint.skip}</skip> </configuration> <executions> <execution> <phase>validate</phase> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>