twiml-kotlin-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.iptiq</groupId> <artifactId>twiml-kotlin-parent</artifactId> <version>10.7.2</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> <artifactId>twiml-kotlin-parent</artifactId> <groupId>com.iptiq</groupId> <version>10.7.2</version> <packaging>pom</packaging> <name>TwiML Kotlin Parent</name> <description>Parent Project for Kotlin Extensions to Twilio Markup Language (TwiML)</description> <url>https://github.com/iptiq/iptiq-twiml-kotlin</url> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <scm> <connection>scm:git:git://github.com/iptiq/iptiq-twiml-kotlin.git</connection> <developerConnection>scm:git:ssh://github.com:iptiq/iptiq-twiml-kotlin.git</developerConnection> <url>https://github.com/iptiq/iptiq-twiml-kotlin/tree/main</url> <tag>10.7.2</tag> </scm> <developers> <developer> <name>Allan Todd</name> <organization>iptiQ</organization> <organizationUrl>https://www.iptiq.com</organizationUrl> </developer> </developers> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <kotlin.code.style>official</kotlin.code.style> <kotlin.version>2.0.0</kotlin.version> <kotlin.compiler.languageVersion>1.6</kotlin.compiler.languageVersion> <kotlin.compiler.apiVersion>1.6</kotlin.compiler.apiVersion> <kotlin.compiler.jvmTarget>1.8</kotlin.compiler.jvmTarget> <license.inceptionYear>2020</license.inceptionYear> <license.organizationName>iptiQ</license.organizationName> <license.licenseName>mit</license.licenseName> <twilio.version>10.7.2</twilio.version> <clean.plugin.version>3.4.0</clean.plugin.version> <dokka.plugin.version>1.9.20</dokka.plugin.version> <enforcer.plugin.version>3.5.0</enforcer.plugin.version> <exec.plugin.version>3.3.0</exec.plugin.version> <failsafe.plugin.version>3.3.0</failsafe.plugin.version> <gpg.plugin.version>3.2.4</gpg.plugin.version> <groovy.plugin.version>2.1.1</groovy.plugin.version> <jacoco.plugin.version>0.8.12</jacoco.plugin.version> <license.plugin.version>2.4.0</license.plugin.version> <nexus.staging.plugin.version>1.7.0</nexus.staging.plugin.version> <source.plugin.version>3.3.1</source.plugin.version> <surefire.plugin.version>3.3.0</surefire.plugin.version> <versions.plugin.version>2.17.0</versions.plugin.version> </properties> <modules> <module>twiml-kotlin-code-generation</module> <module>twiml-kotlin-extensions</module> </modules> <build> <sourceDirectory>src/main/kotlin</sourceDirectory> <testSourceDirectory>src/test/kotlin</testSourceDirectory> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${surefire.plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>${failsafe.plugin.version}</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> <version>${license.plugin.version}</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>${versions.plugin.version}</version> </plugin> </plugins> </pluginManagement> <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> </execution> <execution> <id>test-compile</id> <phase>test-compile</phase> <goals> <goal>test-compile</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> <executions> <execution> <goals> <goal>update-project-license</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${source.plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.jetbrains.dokka</groupId> <artifactId>dokka-maven-plugin</artifactId> <version>${dokka.plugin.version}</version> <executions> <execution> <phase>package</phase> <goals> <goal>javadocJar</goal> </goals> </execution> </executions> <configuration> <dokkaPlugins> <plugin> <groupId>org.jetbrains.dokka</groupId> <artifactId>kotlin-as-java-plugin</artifactId> <version>${dokka.plugin.version}</version> </plugin> </dokkaPlugins> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${gpg.plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <keyname>${gpg.keyname}</keyname> <passphraseServerId>${gpg.keyname}</passphraseServerId> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${nexus.staging.plugin.version}</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>false</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>${enforcer.plugin.version}</version> <executions> <execution> <id>enforce-maven</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <version>3.9.4</version> </requireMavenVersion> </rules> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>