caustic-lwjgl
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.flowpowered</groupId> <artifactId>caustic-lwjgl</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 LWJGL</name> <artifactId>caustic-lwjgl</artifactId> <packaging>jar</packaging> <description>LWJGL implementation of the Caustic rendering library API.</description> <!-- Parent information --> <parent> <groupId>com.flowpowered</groupId> <artifactId>caustic</artifactId> <version>1.0.0</version> </parent> <!-- Build properties --> <properties> <project.root>..</project.root> </properties> <!-- Project dependencies --> <dependencies> <!-- Transitive --> <dependency> <groupId>${project.groupId}</groupId> <artifactId>caustic-api</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.lwjgl.lwjgl</groupId> <artifactId>lwjgl</artifactId> <version>2.9.1</version> </dependency> <dependency> <groupId>org.lwjgl.lwjgl</groupId> <artifactId>lwjgl_util</artifactId> <version>2.9.1</version> </dependency> </dependencies> </project>