173 lines
		
	
	
		
			5.8 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			173 lines
		
	
	
		
			5.8 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?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>electrosphere</groupId>
 | |
|     <artifactId>Renderer</artifactId>
 | |
|     <version>0.1</version>
 | |
|     <packaging>jar</packaging>
 | |
|     <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.2.3</lwjgl.version>
 | |
|         <joml.version>1.9.19</joml.version>
 | |
|     </properties>
 | |
|     <dependencies>
 | |
|         <!-- https://mvnrepository.com/artifact/org.lwjgl/lwjgl -->
 | |
|         <dependency>
 | |
|             <groupId>org.lwjgl</groupId>
 | |
|             <artifactId>lwjgl</artifactId>
 | |
|             <version>${lwjgl.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.lwjgl</groupId>
 | |
|             <artifactId>lwjgl-assimp</artifactId>
 | |
|             <version>${lwjgl.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.lwjgl</groupId>
 | |
|             <artifactId>lwjgl-glfw</artifactId>
 | |
|             <version>${lwjgl.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.lwjgl</groupId>
 | |
|             <artifactId>lwjgl-opengl</artifactId>
 | |
|             <version>${lwjgl.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.lwjgl</groupId>
 | |
|             <artifactId>lwjgl-opengles</artifactId>
 | |
|             <version>${lwjgl.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.lwjgl</groupId>
 | |
|             <artifactId>lwjgl</artifactId>
 | |
|             <version>${lwjgl.version}</version>
 | |
|             <classifier>${lwjgl.natives}</classifier>
 | |
|             <scope>runtime</scope>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.lwjgl</groupId>
 | |
|             <artifactId>lwjgl-assimp</artifactId>
 | |
|             <version>${lwjgl.version}</version>
 | |
|             <classifier>${lwjgl.natives}</classifier>
 | |
|             <scope>runtime</scope>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.lwjgl</groupId>
 | |
|             <artifactId>lwjgl-glfw</artifactId>
 | |
|             <version>${lwjgl.version}</version>
 | |
|             <classifier>${lwjgl.natives}</classifier>
 | |
|             <scope>runtime</scope>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.lwjgl</groupId>
 | |
|             <artifactId>lwjgl-opengl</artifactId>
 | |
|             <version>${lwjgl.version}</version>
 | |
|             <classifier>${lwjgl.natives}</classifier>
 | |
|             <scope>runtime</scope>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.lwjgl</groupId>
 | |
|             <artifactId>lwjgl-opengles</artifactId>
 | |
|             <version>${lwjgl.version}</version>
 | |
|             <classifier>${lwjgl.natives}</classifier>
 | |
|             <scope>runtime</scope>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.joml</groupId>
 | |
|             <artifactId>joml</artifactId>
 | |
|             <version>${joml.version}</version>
 | |
|         </dependency>
 | |
|         
 | |
|         
 | |
|         <dependency>
 | |
|             <groupId>com.google.code.gson</groupId>
 | |
|             <artifactId>gson</artifactId>
 | |
|             <version>2.8.6</version>
 | |
|         </dependency>
 | |
|         
 | |
|         
 | |
|         <dependency>
 | |
|             <groupId>cz.advel.jbullet</groupId>
 | |
|             <artifactId>jbullet</artifactId>
 | |
|             <version>20101010-1</version>
 | |
|         </dependency>
 | |
|         
 | |
|         <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-crypto -->
 | |
|         <dependency>
 | |
|             <groupId>org.apache.commons</groupId>
 | |
|             <artifactId>commons-crypto</artifactId>
 | |
|             <version>1.1.0</version>
 | |
|         </dependency>
 | |
| 
 | |
|         
 | |
|         
 | |
|         <dependency>
 | |
|             <groupId>electrosphere</groupId>
 | |
|             <artifactId>TerrainGen</artifactId>
 | |
|             <version>0.1</version>
 | |
|         </dependency>
 | |
|     </dependencies>
 | |
|     
 | |
|     <profiles>
 | |
|         <profile>
 | |
|             <id>lwjgl-natives-linux</id>
 | |
|             <activation>
 | |
|                 <os>
 | |
|                     <family>unix</family>
 | |
|                 </os>
 | |
|             </activation>
 | |
|             <properties>
 | |
|                 <lwjgl.natives>natives-linux</lwjgl.natives>
 | |
|             </properties>
 | |
|         </profile>
 | |
|         <profile>
 | |
|             <id>lwjgl-natives-macos</id>
 | |
|             <activation>
 | |
|                 <os>
 | |
|                     <family>mac</family>
 | |
|                 </os>
 | |
|             </activation>
 | |
|             <properties>
 | |
|                 <lwjgl.natives>natives-macos</lwjgl.natives>
 | |
|             </properties>
 | |
|         </profile>
 | |
|         <profile>
 | |
|             <id>lwjgl-natives-windows</id>
 | |
|             <activation>
 | |
|                 <os>
 | |
|                     <family>windows</family>
 | |
|                 </os>
 | |
|             </activation>
 | |
|             <properties>
 | |
|                 <lwjgl.natives>natives-windows</lwjgl.natives>
 | |
|             </properties>
 | |
|         </profile>
 | |
|     </profiles>
 | |
|     <build>
 | |
|         <resources>
 | |
|             <resource>
 | |
|                 <directory>${basedir}/src/main/resources</directory>
 | |
|                 <includes>
 | |
|                     <include>**/*</include>
 | |
|                 </includes>
 | |
|             </resource>
 | |
|         </resources>
 | |
|         <plugins>
 | |
|             <plugin>
 | |
|                 <artifactId>maven-assembly-plugin</artifactId>
 | |
|                 <configuration>
 | |
|                     <archive>
 | |
|                         <manifest>
 | |
|                             <mainClass>main.Main</mainClass>
 | |
|                         </manifest>
 | |
|                     </archive>
 | |
|                     <descriptorRefs>
 | |
|                         <descriptorRef>jar-with-dependencies</descriptorRef>
 | |
|                     </descriptorRefs>
 | |
|                 </configuration>
 | |
|             </plugin>
 | |
|         </plugins>
 | |
|     </build>
 | |
| </project> |