lepton
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.ranchordo</groupId> <artifactId>lepton</artifactId> <version>1.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>io.github.ranchordo</groupId> <artifactId>lepton</artifactId> <version>1.0.3</version> <name>com.github.ranchordo.lepton</name> <description>A low-level graphics and utility framework designed to make graphics and game development easier.</description> <url>https://github.com/ranchordo/lepton</url> <licenses> <license> <name>BSD 3-Clause License</name> <url>https://opensource.org/licenses/BSD-3-Clause</url> </license> </licenses> <developers> <developer> <name>Ray Anchordoquy</name> <email>ranchordo@gmail.com</email> </developer> </developers> <scm> <connection>scm:git:git://github.com/ranchordo/lepton.git</connection> <developerConnection>scm:git:ssh://github.com:ranchordo/lepton.git</developerConnection> <url>https://github.com/ranchordo/lepton/tree/master</url> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>11</maven.compiler.source> <maven.compiler.target>11</maven.compiler.target> <lwjgl.version>3.3.0</lwjgl.version> </properties> <profiles> <profile> <id>lwjgl-natives-linux-amd64</id> <activation> <os> <family>unix</family> <arch>amd64</arch> </os> </activation> <properties> <lwjgl.natives>natives-linux</lwjgl.natives> </properties> </profile> <profile> <id>lwjgl-natives-linux-aarch64</id> <activation> <os> <family>unix</family> <arch>aarch64</arch> </os> </activation> <properties> <lwjgl.natives>natives-linux-arm64</lwjgl.natives> </properties> </profile> <profile> <id>lwjgl-natives-linux-arm</id> <activation> <os> <family>unix</family> <arch>arm</arch> </os> </activation> <properties> <lwjgl.natives>natives-linux-arm32</lwjgl.natives> </properties> </profile> <profile> <id>lwjgl-natives-linux-arm32</id> <activation> <os> <family>unix</family> <arch>arm32</arch> </os> </activation> <properties> <lwjgl.natives>natives-linux-arm32</lwjgl.natives> </properties> </profile> <profile> <id>lwjgl-natives-macos-amd64</id> <activation> <os> <family>mac</family> <arch>amd64</arch> </os> </activation> <properties> <lwjgl.natives>natives-macos</lwjgl.natives> </properties> </profile> <profile> <id>lwjgl-natives-macos-aarch64</id> <activation> <os> <family>mac</family> <arch>aarch64</arch> </os> </activation> <properties> <lwjgl.natives>natives-macos-arm64</lwjgl.natives> </properties> </profile> <profile> <id>lwjgl-natives-windows-amd64</id> <activation> <os> <family>windows</family> <arch>amd64</arch> </os> </activation> <properties> <lwjgl.natives>natives-windows</lwjgl.natives> </properties> </profile> <profile> <id>lwjgl-natives-windows-x86</id> <activation> <os> <family>windows</family> <arch>x86</arch> </os> </activation> <properties> <lwjgl.natives>natives-windows-x86</lwjgl.natives> </properties> </profile> <profile> <id>lwjgl-natives-windows-aarch64</id> <activation> <os> <family>windows</family> <arch>aarch64</arch> </os> </activation> <properties> <lwjgl.natives>natives-windows-arm64</lwjgl.natives> </properties> </profile> </profiles> <dependencyManagement> <dependencies> <dependency> <groupId>org.lwjgl</groupId> <artifactId>lwjgl-bom</artifactId> <version>${lwjgl.version}</version> <scope>import</scope> <type>pom</type> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.lwjgl</groupId> <artifactId>lwjgl</artifactId> </dependency> <dependency> <groupId>org.lwjgl</groupId> <artifactId>lwjgl-glfw</artifactId> </dependency> <dependency> <groupId>org.lwjgl</groupId> <artifactId>lwjgl-openal</artifactId> </dependency> <dependency> <groupId>org.lwjgl</groupId> <artifactId>lwjgl-opengl</artifactId> </dependency> <dependency> <groupId>org.lwjgl</groupId> <artifactId>lwjgl-stb</artifactId> </dependency> <dependency> <groupId>org.lwjgl</groupId> <artifactId>lwjgl</artifactId> <classifier>${lwjgl.natives}</classifier> </dependency> <dependency> <groupId>org.lwjgl</groupId> <artifactId>lwjgl-glfw</artifactId> <classifier>${lwjgl.natives}</classifier> </dependency> <dependency> <groupId>org.lwjgl</groupId> <artifactId>lwjgl-openal</artifactId> <classifier>${lwjgl.natives}</classifier> </dependency> <dependency> <groupId>org.lwjgl</groupId> <artifactId>lwjgl-opengl</artifactId> <classifier>${lwjgl.natives}</classifier> </dependency> <dependency> <groupId>org.lwjgl</groupId> <artifactId>lwjgl-stb</artifactId> <classifier>${lwjgl.natives}</classifier> </dependency> <dependency> <groupId>cz.advel.jbullet</groupId> <artifactId>jbullet</artifactId> <version>20101010</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>5.3.1</version> <scope>test</scope> </dependency> </dependencies> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <notimestamp>true</notimestamp> <outputDirectory>${basedir}/docs</outputDirectory> <destDir>docs</destDir> <doctitle>Lepton documentation ${project.version}</doctitle> <reportOutputDirectory>${basedir}/docs</reportOutputDirectory> <show>public</show> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifest> <addClasspath>true</addClasspath> <mainClass>com.github.ranchordo.lepton.GenericRunConfiguration</mainClass> </manifest> </archive> </configuration> </plugin><plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>3.2.4</version> <configuration> <outputFile>${project.build.directory}/lepton-shaded-${project.version}.jar</outputFile> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>3.0.0</version> <executions> <execution> <id>add-resource</id> <phase>generate-resources</phase> <goals> <goal>add-resource</goal> </goals> <configuration> <resources> <resource> <directory>resources/</directory> </resource> </resources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.0</version> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.3.1</version> <configuration> <notimestamp>true</notimestamp> <outputDirectory>${basedir}/docs</outputDirectory> <destDir>docs</destDir> <doctitle>Lepton documentation ${project.version}</doctitle> <reportOutputDirectory>${basedir}/docs</reportOutputDirectory> <show>public</show> </configuration> </plugin> </plugins> </reporting> </project>