2020-08-18 15:36:08 +00:00
|
|
|
<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>cz.tefek</groupId>
|
|
|
|
<artifactId>plutodb</artifactId>
|
|
|
|
<version>0.1</version>
|
|
|
|
<name>plutodb</name>
|
|
|
|
<properties>
|
2020-08-18 20:25:19 +00:00
|
|
|
<maven.compiler.release>11</maven.compiler.release>
|
2020-08-18 15:36:08 +00:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
<lwjgl.version>3.2.3</lwjgl.version>
|
|
|
|
</properties>
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.lwjgl</groupId>
|
|
|
|
<artifactId>lwjgl-bom</artifactId>
|
|
|
|
<version>${lwjgl.version}</version>
|
|
|
|
<scope>import</scope>
|
|
|
|
<type>pom</type>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
<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-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-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>
|
|
|
|
</profiles>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cz.tefek</groupId>
|
|
|
|
<artifactId>plutoio2</artifactId>
|
|
|
|
<version>0.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.lwjgl</groupId>
|
|
|
|
<artifactId>lwjgl-lmdb</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.lwjgl</groupId>
|
|
|
|
<artifactId>lwjgl</artifactId>
|
|
|
|
<classifier>${lwjgl.natives}</classifier>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.lwjgl</groupId>
|
|
|
|
<artifactId>lwjgl-lmdb</artifactId>
|
|
|
|
<classifier>${lwjgl.natives}</classifier>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2020-08-18 20:25:19 +00:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.8.0</version>
|
|
|
|
<configuration>
|
|
|
|
<release>11</release>
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2020-08-18 15:36:08 +00:00
|
|
|
</project>
|