tracery
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.almasb</groupId> <artifactId>tracery</artifactId> <version>0.0.1</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> <groupId>com.github.almasb</groupId> <artifactId>tracery</artifactId> <version>0.0.1</version> <packaging>jar</packaging> <name>${project.groupId}:${project.artifactId}</name> <description>A story-grammar generation library</description> <url>https://github.com/AlmasB/tracery</url> <licenses> <license> <name>Apache License, 2.0</name> <url>https://opensource.org/licenses/Apache-2.0</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>https://github.com/AlmasB/tracery</url> <connection>scm:git:git://github.com/AlmasB/tracery.git</connection> <developerConnection>scm:git:git@github.com:AlmasB/tracery.git</developerConnection> </scm> <developers> <developer> <email>almaslvl@gmail.com</email> <name>Almas Baimagambetov</name> <url>https://github.com/AlmasB</url> <id>almasb</id> </developer> </developers> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <issueManagement> <url>https://github.com/AlmasB/tracery/issues</url> <system>GitHub Issues</system> </issueManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <source.version>1.8</source.version> <!-- plugins --> <maven.gpg.version>1.6</maven.gpg.version> <sonatype.nexus.staging.version>1.6.7</sonatype.nexus.staging.version> <maven.compiler.version>3.7.0</maven.compiler.version> <maven.enforcer.version>3.0.0-M1</maven.enforcer.version> <maven.source.version>3.0.1</maven.source.version> <maven.javadoc.version>3.0.0-M1</maven.javadoc.version> <maven.shade.version>3.0.0</maven.shade.version> <jacoco.version>0.7.9</jacoco.version> <maven.surefire.version>2.19</maven.surefire.version> <!-- dependencies --> <kotlin.version>1.1.51</kotlin.version> <jackson.version>2.9.3</jackson.version> <!-- test dependencies --> <junit.jupiter.version>5.0.0</junit.jupiter.version> <junit.platform.version>1.0.0</junit.platform.version> <hamcrest.version>1.3</hamcrest.version> </properties> <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>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${jackson.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.module</groupId> <artifactId>jackson-module-kotlin</artifactId> <version>${jackson.version}</version> </dependency> <!-- test scope dependencies --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${junit.jupiter.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> <version>${hamcrest.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-test</artifactId> <version>${kotlin.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <!-- Compile java --> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>${maven.compiler.version}</version> <configuration> <source>${source.version}</source> <target>${source.version}</target> </configuration> </plugin> <!-- Compile kotlin --> <plugin> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-maven-plugin</artifactId> <version>${kotlin.version}</version> <executions> <execution> <id>compile</id> <phase>process-sources</phase> <goals> <goal>compile</goal> </goals> <configuration> <sourceDirs> <source>src/main/kotlin</source> <source>src/main/java</source> </sourceDirs> </configuration> </execution> <execution> <id>test-compile</id> <phase>process-test-sources</phase> <goals> <goal>test-compile</goal> </goals> <configuration> <sourceDirs> <source>src/test/kotlin</source> <source>src/test/java</source> </sourceDirs> </configuration> </execution> </executions> </plugin> <!-- Force check on compiler 1.8.0-101+ --> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <version>${maven.enforcer.version}</version> <executions> <execution> <id>enforce-all</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <DependencyConvergence/> <requireJavaVersion> <version>[1.8.0-101,)</version> </requireJavaVersion> </rules> </configuration> </execution> </executions> </plugin> <!-- Create sources.jar --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven.source.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- Create javadoc.jar --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven.javadoc.version}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <!-- add this to disable checking --> <additionalparam>-Xdoclint:none</additionalparam> <!-- leave only errors and warning --> <quiet>true</quiet> </configuration> </execution> </executions> </plugin> <!-- Sign artifact using gpg --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven.gpg.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <!-- Upload to sonatype nexus / maven central --> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${sonatype.nexus.staging.version}</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>${maven.surefire.version}</version> <dependencies> <dependency> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-surefire-provider</artifactId> <version>${junit.platform.version}</version> </dependency> </dependencies> </plugin> </plugins> </build> </project>