fiks-arkiv
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>no.ks.fiks</groupId> <artifactId>fiks-arkiv</artifactId> <version>1.0.16</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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>no.ks.fiks.pom</groupId> <artifactId>fiks-ekstern-kotlin-superpom</artifactId> <version>1.2.9</version> </parent> <groupId>no.ks.fiks</groupId> <artifactId>fiks-arkiv</artifactId> <packaging>pom</packaging> <version>1.0.16</version> <name>Fiks arkiv klienter for java</name> <url>https://github.com/ks-no/fiks-arkiv-client-java</url> <modules> <module>fiks-arkiv-api</module> <module>fiks-arkiv-forenklet-arkivering</module> </modules> <properties> <maven.compiler.source>8</maven.compiler.source> <maven.compiler.target>8</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <jaxb2.version>3.1.0</jaxb2.version> <jaxb-impl.version>2.3.9</jaxb-impl.version> <jaxb-api.version>2.3.1</jaxb-api.version> <maven-enforcer-plugin.version>3.0.0</maven-enforcer-plugin.version> <junit.jupiter.version>5.8.2</junit.jupiter.version> <kotest.version>5.0.0</kotest.version> <logback.version>1.2.13</logback.version> <kotlin-logging.version>2.1.21</kotlin-logging.version> <connection>scm:git:git@github.com:ks-no/fiks-arkiv-client-java.git</connection> <developerConnection>scm:git:git@github.com:ks-no/fiks-arkiv-client-java.git</developerConnection> <url>https://github.com/ks-no/fiks-arkiv-client-java</url> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>no.ks.fiks</groupId> <artifactId>fiks-arkiv-api</artifactId> <version>${pom.version}</version> </dependency> <dependency> <groupId>no.ks.fiks</groupId> <artifactId>fiks-arkiv-forenklet-arkivering</artifactId> <version>${pom.version}</version> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-bom</artifactId> <version>${kotlin.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>javax.xml.bind</groupId> <artifactId>jaxb-api</artifactId> <version>${jaxb-api.version}</version> </dependency> <dependency> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-impl</artifactId> <version>${jaxb-impl.version}</version> </dependency> <dependency> <groupId>org.junit</groupId> <artifactId>junit-bom</artifactId> <version>${junit.jupiter.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>${logback.version}</version> </dependency> <dependency> <groupId>io.github.microutils</groupId> <artifactId>kotlin-logging-jvm</artifactId> <version>${kotlin-logging.version}</version> </dependency> <dependency> <groupId>io.kotest</groupId> <artifactId>kotest-core-jvm</artifactId> <version>${kotest.version}</version> </dependency> <dependency> <groupId>io.kotest</groupId> <artifactId>kotest-runner-junit5-jvm</artifactId> <version>${kotest.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.kotest</groupId> <artifactId>kotest-property-jvm</artifactId> <version>${kotest.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.kotest</groupId> <artifactId>kotest-assertions-core-jvm</artifactId> <version>${kotest.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.kotest</groupId> <artifactId>kotest-assertions-json-jvm</artifactId> <version>${kotest.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.kotest.extensions</groupId> <artifactId>kotest-extensions-testcontainers</artifactId> <version>${kotest.testcontainers.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.kotest.extensions</groupId> <artifactId>kotest-extensions-spring</artifactId> <version>${kotest.spring.version}</version> <scope>test</scope> </dependency> </dependencies> </dependencyManagement> <build> <pluginManagement> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>jaxb2-maven-plugin</artifactId> <version>${jaxb2.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>${maven-enforcer-plugin.version}</version> <inherited>true</inherited> <executions> <execution> <id>default-cli</id> <configuration> <rules> <requireReleaseVersion/> <requireReleaseDeps/> </rules> </configuration> </execution> <execution> <id>validate-snap</id> <configuration> <rules> <requireSnapshotVersion> <failWhenParentIsRelease>false</failWhenParentIsRelease> </requireSnapshotVersion> </rules> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.10.1</version> <configuration> <source>${maven.compiler.source}</source> <target>${maven.compiler.target}</target> </configuration> </plugin> <plugin> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-maven-plugin</artifactId> <version>${kotlin.version}</version> <executions> <execution> <id>compile</id> <goals> <goal>compile</goal> </goals> <configuration> <sourceDirs> <sourceDir>${project.basedir}/src/main/kotlin</sourceDir> <sourceDir>${project.basedir}/src/main/java</sourceDir> </sourceDirs> </configuration> </execution> <execution> <id>test-compile</id> <goals> <goal>test-compile</goal> </goals> <configuration> <sourceDirs> <sourceDir>${project.basedir}/src/test/kotlin</sourceDir> <sourceDir>${project.basedir}/src/test/java</sourceDir> </sourceDirs> </configuration> </execution> </executions> </plugin> </plugins> </pluginManagement> </build> </project>