|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | + |
| 3 | +<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"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
| 5 | + |
| 6 | + <groupId>com.stoopidgame</groupId> |
| 7 | + <artifactId>game</artifactId> |
| 8 | + <version>1.0-SNAPSHOT</version> |
| 9 | + |
| 10 | + <name>game</name> |
| 11 | + <!-- FIXME change it to the project's website --> |
| 12 | + <url>http://www.example.com</url> |
| 13 | + |
| 14 | + <properties> |
| 15 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 16 | + <maven.compiler.source>1.8</maven.compiler.source> |
| 17 | + <maven.compiler.target>1.8</maven.compiler.target> |
| 18 | + <lwjgl.version>3.2.3</lwjgl.version> |
| 19 | + <lwjgl.natives>natives-windows</lwjgl.natives> |
| 20 | + </properties> |
| 21 | + |
| 22 | + <dependencyManagement> |
| 23 | + <dependencies> |
| 24 | + <dependency> |
| 25 | + <groupId>org.lwjgl</groupId> |
| 26 | + <artifactId>lwjgl-bom</artifactId> |
| 27 | + <version>${lwjgl.version}</version> |
| 28 | + <scope>import</scope> |
| 29 | + <type>pom</type> |
| 30 | + </dependency> |
| 31 | + </dependencies> |
| 32 | + </dependencyManagement> |
| 33 | + |
| 34 | + <dependencies> |
| 35 | + <dependency> |
| 36 | + <groupId>junit</groupId> |
| 37 | + <artifactId>junit</artifactId> |
| 38 | + <version>4.11</version> |
| 39 | + <scope>test</scope> |
| 40 | + </dependency> |
| 41 | + <dependency> |
| 42 | + <groupId>org.joml</groupId> |
| 43 | + <artifactId>joml</artifactId> |
| 44 | + <version>1.10.1</version> |
| 45 | + </dependency> |
| 46 | + <dependency> |
| 47 | + <groupId>org.lwjgl</groupId> |
| 48 | + <artifactId>lwjgl</artifactId> |
| 49 | + </dependency> |
| 50 | + <dependency> |
| 51 | + <groupId>org.lwjgl</groupId> |
| 52 | + <artifactId>lwjgl-assimp</artifactId> |
| 53 | + </dependency> |
| 54 | + <dependency> |
| 55 | + <groupId>org.lwjgl</groupId> |
| 56 | + <artifactId>lwjgl-bgfx</artifactId> |
| 57 | + </dependency> |
| 58 | + <dependency> |
| 59 | + <groupId>org.lwjgl</groupId> |
| 60 | + <artifactId>lwjgl-glfw</artifactId> |
| 61 | + </dependency> |
| 62 | + <dependency> |
| 63 | + <groupId>org.lwjgl</groupId> |
| 64 | + <artifactId>lwjgl-nanovg</artifactId> |
| 65 | + </dependency> |
| 66 | + <dependency> |
| 67 | + <groupId>org.lwjgl</groupId> |
| 68 | + <artifactId>lwjgl-nuklear</artifactId> |
| 69 | + </dependency> |
| 70 | + <dependency> |
| 71 | + <groupId>org.lwjgl</groupId> |
| 72 | + <artifactId>lwjgl-openal</artifactId> |
| 73 | + </dependency> |
| 74 | + <dependency> |
| 75 | + <groupId>org.lwjgl</groupId> |
| 76 | + <artifactId>lwjgl-opengl</artifactId> |
| 77 | + </dependency> |
| 78 | + <dependency> |
| 79 | + <groupId>org.lwjgl</groupId> |
| 80 | + <artifactId>lwjgl-par</artifactId> |
| 81 | + </dependency> |
| 82 | + <dependency> |
| 83 | + <groupId>org.lwjgl</groupId> |
| 84 | + <artifactId>lwjgl-stb</artifactId> |
| 85 | + </dependency> |
| 86 | + <dependency> |
| 87 | + <groupId>org.lwjgl</groupId> |
| 88 | + <artifactId>lwjgl-vulkan</artifactId> |
| 89 | + </dependency> |
| 90 | + <dependency> |
| 91 | + <groupId>org.lwjgl</groupId> |
| 92 | + <artifactId>lwjgl</artifactId> |
| 93 | + <classifier>${lwjgl.natives}</classifier> |
| 94 | + </dependency> |
| 95 | + <dependency> |
| 96 | + <groupId>org.lwjgl</groupId> |
| 97 | + <artifactId>lwjgl-assimp</artifactId> |
| 98 | + <classifier>${lwjgl.natives}</classifier> |
| 99 | + </dependency> |
| 100 | + <dependency> |
| 101 | + <groupId>org.lwjgl</groupId> |
| 102 | + <artifactId>lwjgl-bgfx</artifactId> |
| 103 | + <classifier>${lwjgl.natives}</classifier> |
| 104 | + </dependency> |
| 105 | + <dependency> |
| 106 | + <groupId>org.lwjgl</groupId> |
| 107 | + <artifactId>lwjgl-glfw</artifactId> |
| 108 | + <classifier>${lwjgl.natives}</classifier> |
| 109 | + </dependency> |
| 110 | + <dependency> |
| 111 | + <groupId>org.lwjgl</groupId> |
| 112 | + <artifactId>lwjgl-nanovg</artifactId> |
| 113 | + <classifier>${lwjgl.natives}</classifier> |
| 114 | + </dependency> |
| 115 | + <dependency> |
| 116 | + <groupId>org.lwjgl</groupId> |
| 117 | + <artifactId>lwjgl-nuklear</artifactId> |
| 118 | + <classifier>${lwjgl.natives}</classifier> |
| 119 | + </dependency> |
| 120 | + <dependency> |
| 121 | + <groupId>org.lwjgl</groupId> |
| 122 | + <artifactId>lwjgl-openal</artifactId> |
| 123 | + <classifier>${lwjgl.natives}</classifier> |
| 124 | + </dependency> |
| 125 | + <dependency> |
| 126 | + <groupId>org.lwjgl</groupId> |
| 127 | + <artifactId>lwjgl-opengl</artifactId> |
| 128 | + <classifier>${lwjgl.natives}</classifier> |
| 129 | + </dependency> |
| 130 | + <dependency> |
| 131 | + <groupId>org.lwjgl</groupId> |
| 132 | + <artifactId>lwjgl-par</artifactId> |
| 133 | + <classifier>${lwjgl.natives}</classifier> |
| 134 | + </dependency> |
| 135 | + <dependency> |
| 136 | + <groupId>org.lwjgl</groupId> |
| 137 | + <artifactId>lwjgl-stb</artifactId> |
| 138 | + <classifier>${lwjgl.natives}</classifier> |
| 139 | + </dependency> |
| 140 | + </dependencies> |
| 141 | + |
| 142 | + <build> |
| 143 | + <pluginManagement> |
| 144 | + <!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) --> |
| 145 | + <plugins> |
| 146 | + <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle --> |
| 147 | + <plugin> |
| 148 | + <artifactId>maven-clean-plugin</artifactId> |
| 149 | + <version>3.1.0</version> |
| 150 | + </plugin> |
| 151 | + <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging --> |
| 152 | + <plugin> |
| 153 | + <artifactId>maven-resources-plugin</artifactId> |
| 154 | + <version>3.0.2</version> |
| 155 | + </plugin> |
| 156 | + <plugin> |
| 157 | + <artifactId>maven-compiler-plugin</artifactId> |
| 158 | + <version>3.8.0</version> |
| 159 | + </plugin> |
| 160 | + <plugin> |
| 161 | + <artifactId>maven-surefire-plugin</artifactId> |
| 162 | + <version>2.22.1</version> |
| 163 | + </plugin> |
| 164 | + <plugin> |
| 165 | + <artifactId>maven-jar-plugin</artifactId> |
| 166 | + <version>3.0.2</version> |
| 167 | + </plugin> |
| 168 | + <plugin> |
| 169 | + <artifactId>maven-install-plugin</artifactId> |
| 170 | + <version>2.5.2</version> |
| 171 | + </plugin> |
| 172 | + <plugin> |
| 173 | + <artifactId>maven-deploy-plugin</artifactId> |
| 174 | + <version>2.8.2</version> |
| 175 | + </plugin> |
| 176 | + <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle --> |
| 177 | + <plugin> |
| 178 | + <artifactId>maven-site-plugin</artifactId> |
| 179 | + <version>3.7.1</version> |
| 180 | + </plugin> |
| 181 | + <plugin> |
| 182 | + <artifactId>maven-project-info-reports-plugin</artifactId> |
| 183 | + <version>3.0.0</version> |
| 184 | + </plugin> |
| 185 | + </plugins> |
| 186 | + </pluginManagement> |
| 187 | + </build> |
| 188 | +</project> |
0 commit comments