caustic
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.flowpowered</groupId>
<artifactId>caustic</artifactId>
<version>1.0.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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<!-- Project information -->
<name>Caustic</name>
<groupId>com.flowpowered</groupId>
<artifactId>caustic</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<inceptionYear>2013</inceptionYear>
<url>https://flowpowered.com/caustic</url>
<description>Parent Maven project for the Caustic OpenGL rendering library.</description>
<!-- Parent information -->
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>9</version>
</parent>
<!-- Modules -->
<modules>
<module>api</module>
<module>lwjgl</module>
<!--<module>software</module>-->
</modules>
<!-- Build properties -->
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.root>.</project.root>
<buildNumber>0</buildNumber>
<ciSystem>unknown</ciSystem>
<commit>unknown</commit>
<additionalparam>-Xdoclint:none</additionalparam>
</properties>
<!-- License information -->
<licenses>
<license>
<name>MIT License</name>
<url>https://tldrlegal.com/l/mit</url>
<distribution>repo</distribution>
</license>
</licenses>
<!-- Organization information -->
<organization>
<name>Flow Powered</name>
<url>https://flowpowered.com</url>
</organization>
<!-- Project developers -->
<developers>
<developer>
<id>DDoS</id>
<name>Aleksi Sapon</name>
<email>qctechs@gmail.com</email>
</developer>
<developer>
<id>kitskub</id>
<name>Jack Huey</name>
<email>kitskub@gmail.com</email>
</developer>
<developer>
<id>Wolf480pl</id>
<name>Wolf480pl</name>
<email>wolf480@interia.pl</email>
</developer>
<developer>
<id>Wulfspider</id>
<name>Luke Spragg</name>
<email>the@wulf.im</email>
</developer>
</developers>
<!-- Source code access -->
<scm>
<connection>scm:git:git://github.com/flow/caustic.git</connection>
<developerConnection>scm:git:git@github.com:flow/caustic.git</developerConnection>
<url>https://github.com/flow/caustic</url>
</scm>
<!-- Continuous integration -->
<ciManagement>
<system>travis</system>
<url>https://travis-ci.org/flow/caustic</url>
</ciManagement>
<!-- Issue management -->
<issueManagement>
<system>github</system>
<url>https://github.com/flow/caustic/issues</url>
</issueManagement>
<!-- Project dependencies -->
<dependencies>
<!-- Testing only -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
<!-- Build configuration -->
<build>
<defaultGoal>clean install</defaultGoal>
<!-- Resources to include -->
<resources>
<!-- Static resources -->
<resource>
<filtering>false</filtering>
<directory>.</directory>
<targetPath>.</targetPath>
<includes>
<include>${project.root}/LICENSE.txt</include>
</includes>
</resource>
<resource>
<filtering>false</filtering>
<directory>src/main/resources</directory>
<targetPath>.</targetPath>
<includes>
<include>**/*</include>
</includes>
</resource>
</resources>
<!-- Build plugins -->
<plugins>
<!-- License header plugin -->
<plugin>
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<version>1.10.b1</version>
<executions>
<execution>
<configuration>
<properties>
<project>${project.name}</project>
<year>${project.inceptionYear}</year>
<name>${project.organization.name}</name>
<url>${project.organization.url}</url>
</properties>
<quiet>true</quiet>
<encoding>UTF-8</encoding>
<strictCheck>true</strictCheck>
<header>${project.root}/HEADER.txt</header>
<mapping>
<java>SLASHSTAR_STYLE</java>
</mapping>
<keywords>
<keyword>${project.name}</keyword>
<keyword>license</keyword>
</keywords>
<includes>
<include>src/main/java/**</include>
<include>src/test/java/**</include>
</includes>
</configuration>
<phase>clean</phase>
<goals>
<goal>format</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Source compiler plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<compilerArguments>
<O>-Xlint:all</O>
<O>-Xlint:-path</O>
</compilerArguments>
<showWarnings>true</showWarnings>
<showDeprecation>true</showDeprecation>
</configuration>
</plugin>
<!-- JAR creation plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.5</version>
<configuration>
<archive>
<manifestEntries>
<Specification-Title>${project.name}</Specification-Title>
<Specification-Version>${project.version}+${ciSystem}-b${buildNumber}.git-${commit}</Specification-Version>
<Specification-Vendor>${project.organization.name}</Specification-Vendor>
</manifestEntries>
</archive>
</configuration>
</plugin>
<!-- Javadoc creation plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.1</version>
<configuration>
<author>false</author>
<version>false</version>
</configuration>
</plugin>
<!-- Coveralls reporting plugin -->
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>3.0.1</version>
</plugin>
<!-- Cobertura test coverage plugin -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.6</version>
<configuration>
<format>xml</format>
<maxmem>256m</maxmem>
</configuration>
</plugin>
</plugins>
</build>
</project>