cdm-kotlin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.finos.cdm</groupId>
<artifactId>cdm-kotlin</artifactId>
<version>6.18.0</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/maven-v4_0_0.xsd">
<parent>
<groupId>org.finos</groupId>
<artifactId>finos</artifactId>
<version>7</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.finos.cdm</groupId>
<artifactId>cdm-kotlin</artifactId>
<version>6.18.0</version>
<packaging>jar</packaging>
<name>cdm-kotlin</name>
<url>https://www.finos.org/common-domain-model</url>
<scm>
<developerConnection>scm:git:https://github.com/finos/common-domain-model</developerConnection>
<connection>scm:git:git://github.com/finos/common-domain-model.git</connection>
<tag>HEAD</tag>
<url>https://github.com/finos/common-domain-model</url>
</scm>
<description>The FINOS Common Domain Model (CDM) is a standardised, machine-readable and machine-executable blueprint for how financial products are traded and managed across the transaction lifecycle. It is represented as a domain model and distributed in open source.</description>
<organization>
<name>FINOS</name>
<url>https://finos.org</url>
</organization>
<licenses>
<license>
<name>Community Specification License 1.0</name>
<url>https://github.com/finos/common-domain-model/blob/master/LICENSE.md</url>
</license>
</licenses>
<developers>
<developer>
<id>minesh-s-patel</id>
<name>Minesh Patel</name>
<email>infra@regnosys.com</email>
<url>http://github.com/minesh-s-patel</url>
<organization>REGnosys</organization>
<organizationUrl>https://regnosys.com</organizationUrl>
<timezone>+1</timezone>
<roles>
<role>Maintainer</role>
<role>Developer</role>
</roles>
</developer>
<developer>
<id>hugohills-regnosys</id>
<name>Hugo Hills</name>
<email>infra@regnosys.com</email>
<url>http://github.com/hugohills-regnosys</url>
<organization>REGnosys</organization>
<organizationUrl>https://regnosys.com</organizationUrl>
<timezone>+1</timezone>
<roles>
<role>Maintainer</role>
<role>Developer</role>
</roles>
</developer>
</developers>
<properties>
<gpg.keyname>configured-by-release-profile</gpg.keyname>
<maven.compiler.release>11</maven.compiler.release>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<kotlin.version>1.9.25</kotlin.version>
<serialization.version>1.1.0</serialization.version>
<apache.commons.lang3.version>3.1</apache.commons.lang3.version>
<maven-javadoc-plugin.version>3.5.0</maven-javadoc-plugin.version>
</properties>
<build>
<sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory>
<testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory>
<plugins>
<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>
</execution>
<execution>
<id>test-compile</id>
<goals>
<goal>test-compile</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<phase>none</phase> <!-- Disable this execution -->
</execution>
<execution>
<id>default</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jetbrains.dokka</groupId>
<artifactId>dokka-maven-plugin</artifactId>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.jetbrains.dokka</groupId>
<artifactId>dokka-maven-plugin</artifactId>
<version>1.8.20</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>javadocJar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<passphraseServerId>${gpg.keyname}</passphraseServerId>
<passphraseEnvName>${gpg.passphrase}</passphraseEnvName>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk8</artifactId>
<version>${kotlin.version}</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-serialization-json</artifactId>
<version>${serialization.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${apache.commons.lang3.version}</version>
</dependency>
</dependencies>
</project>