javaUnofficialOpenglSDK
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.java-graphics</groupId> <artifactId>javaUnofficialOpenglSDK</artifactId> <version>1.0.1</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.java-graphics</groupId> <artifactId>javaUnofficialOpenglSDK</artifactId> <version>1.0.1</version> <packaging>jar</packaging> <name>Java Unoffial OpenGL SDK</name> <description>This is a (simple) java porting of the Unofficial Opengl Software Development Kit</description> <url>https://github.com/java-graphics/java-unofficial-opengl-SDK</url> <organization> <name>Java Graphics Society</name> <url>https://github.com/java-graphics</url> </organization> <developers> <developer> <id>elect86</id> <name>Giuseppe Barbieri</name> </developer> <developer> <id>Sunny1337</id> <name>Florian Schäfers</name> </developer> <developer> <id>ecumene-software</id> <name>Mitchell Hynes</name> </developer> <developer> <id>alicanalbayrak</id> <name>Ali Can Albayrak</name> </developer> </developers> <scm> <url>https://github.com/java-graphics/java-unofficial-opengl-SDK</url> <connection>scm:git@github.com:java-graphics/java-unofficial-opengl-SDK.git</connection> <developerConnection>scm:git@github.com:java-graphics/java-unofficial-opengl-SDK.git</developerConnection> </scm> <licenses> <license> <name>BSD-3</name> <url>https://github.com/java-graphics/java-unofficial-opengl-SDK/blob/master/LICENSE.txt</url> </license> </licenses> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <compiler.source>1.8</compiler.source> <compiler.target>1.8</compiler.target> </properties> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <dependencies> <!-- 3rd part dependencies --> <dependency> <groupId>org.jogamp.jogl</groupId> <artifactId>jogl-all-main</artifactId> <version>2.3.2</version> </dependency> <dependency> <groupId>org.jogamp.gluegen</groupId> <artifactId>gluegen-rt-main</artifactId> <version>2.3.2</version> </dependency> <dependency> <groupId>one.util</groupId> <artifactId>streamex</artifactId> <version>0.6.2</version> </dependency> <!-- java-graphics dependencies --> <dependency> <groupId>io.github.java-graphics</groupId> <artifactId>glm</artifactId> <version>1.0.1</version> </dependency> <dependency> <groupId>io.github.java-graphics</groupId> <artifactId>openvr</artifactId> <version>1.0</version> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.3</version> <configuration> <source>${compiler.source}</source> <target>${compiler.target}</target> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.4</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <additionalparam>-Xdoclint:none</additionalparam> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.3</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>