gabber
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.tommyettinger</groupId>
<artifactId>gabber</artifactId>
<version>0.3</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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.tommyettinger</groupId>
<artifactId>gabber</artifactId>
<version>0.3</version>
<modules>
</modules>
<name>gabber</name>
<description>Fictional language generation toolbox</description>
<url>https://github.com/tommyettinger/Gabber</url>
<developers>
<developer>
<name>Tommy Ettinger ( https://github.com/tommyettinger )</name>
<email>example@example.com</email>
</developer>
</developers>
<licenses>
<license>
<name>Apache Public License</name>
<url>
https://www.apache.org/licenses/LICENSE-2.0.html
</url>
<comments>LICENSE.txt</comments>
<distribution>repo</distribution>
</license>
</licenses>
<inceptionYear>2016</inceptionYear>
<distributionManagement>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>sonatype-nexus-staging</id>
<name>Nexus Release Repository</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.version>3.3</maven.compiler.version>
<maven.javadoc.version>2.10.3</maven.javadoc.version>
<maven.resources.version>2.7</maven.resources.version>
<maven.source.version>2.4</maven.source.version>
<maven.gpg.version>1.6</maven.gpg.version>
<jdk.version>1.6</jdk.version>
<junit.version>4.11</junit.version>
<regexodus.version>0.1.7</regexodus.version>
</properties>
<dependencies>
<dependency>
<groupId>com.github.tommyettinger</groupId>
<artifactId>regexodus</artifactId>
<version>${regexodus.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<prerequisites>
<maven>3.3.0</maven>
</prerequisites>
<issueManagement>
<url>https://github.com/tommyettinger/Gabber/issues</url>
<system>GitHub Issues</system>
</issueManagement>
<scm>
<connection>scm:git:git@github.com:tommyettinger/Gabber.git</connection>
<developerConnection>scm:git:git@github.com:tommyettinger/Gabber.git</developerConnection>
<url>git@github.com:tommyettinger/Gabber.git</url>
</scm>
<profiles>
<profile>
<id>doclint-java8-disable</id>
<activation>
<jdk>[1.8,)</jdk>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.compiler.version}</version>
<configuration>
<source>${jdk.version}</source>
<target>${jdk.version}</target>
</configuration>
</plugin>
<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>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>${maven.source.version}</version>
<executions>
<!--<execution>
<id>package-jars</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<includePom>true</includePom>
</configuration>
</execution>-->
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<includePom>true</includePom>
</configuration>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven.javadoc.version}</version>
<inherited>true</inherited>
<executions>
<!--<execution>
<id>package-jars</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
</configuration>
</execution>-->
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<debug>false</debug>
<minmemory>256m</minmemory>
<maxmemory>1024m</maxmemory>
<quiet>true</quiet>
<doctitle>${project.name} ${project.version}</doctitle>
<windowtitle>${project.name} ${project.version}</windowtitle>
<!--
<testDoctitle>${project.name} ${project.version} (TEST API)</testDoctitle>
<testWindowtitle>${project.name} ${project.version} (TEST API)</testWindowtitle>-->
<splitindex>true</splitindex>
<encoding>${project.build.sourceEncoding}</encoding>
<javadocVersion>${jdk.version}</javadocVersion>
<links>
<link>http://docs.oracle.com/javase/8/docs/api/</link>
<link>http://docs.oracle.com/javase/7/docs/api/</link>
<link>http://docs.oracle.com/javase/6/docs/api/</link>
<link>http://docs.oracle.com/javase/1.5.0/docs/api/</link>
</links>
<linksource>true</linksource>
<detectOfflineLinks>false</detectOfflineLinks>
<!--<additionalparam>-Xdoclint:none</additionalparam>-->
</configuration>
</plugin>
</plugins>
</build>
</project>