assimp
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.java-graphics</groupId> <artifactId>assimp</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>assimp</artifactId> <version>1.0.1</version> <packaging>jar</packaging> <name>Assimp-Java</name> <description>Java porting of Open Asset Import Library</description> <url>https://github.com/java-graphics/assimp</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/assimp</url> <connection>scm:git@github.com:java-graphics/assimp.git</connection> <developerConnection>scm:git@github.com:java-graphics/assimp.git</developerConnection> </scm> <licenses> <license> <name>The MIT License</name> <url>https://github.com/java-graphics/assimp/blob/master/LICENSE.txt</url> </license> <license> <name>Fat Licence for 3rd Parties</name> <url>https://github.com/java-graphics/assimp/blob/master/LICENSE-3RD-PARTY.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>http://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <dependencies> <!-- 3rd party dependencies --> <!-- dependencies --> <dependency> <groupId>io.github.java-graphics</groupId> <artifactId>glm</artifactId> <version>1.0.1</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>