Skip to content

Commit 601116e

Browse files
committed
yay
0 parents  commit 601116e

File tree

20 files changed

+786
-0
lines changed

20 files changed

+786
-0
lines changed

.classpath

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" output="target/classes" path="src/main/java">
4+
<attributes>
5+
<attribute name="optional" value="true"/>
6+
<attribute name="maven.pomderived" value="true"/>
7+
</attributes>
8+
</classpathentry>
9+
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
10+
<attributes>
11+
<attribute name="optional" value="true"/>
12+
<attribute name="maven.pomderived" value="true"/>
13+
<attribute name="test" value="true"/>
14+
</attributes>
15+
</classpathentry>
16+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
17+
<attributes>
18+
<attribute name="maven.pomderived" value="true"/>
19+
</attributes>
20+
</classpathentry>
21+
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
22+
<attributes>
23+
<attribute name="maven.pomderived" value="true"/>
24+
</attributes>
25+
</classpathentry>
26+
<classpathentry kind="src" path="target/generated-sources/annotations">
27+
<attributes>
28+
<attribute name="optional" value="true"/>
29+
<attribute name="maven.pomderived" value="true"/>
30+
<attribute name="ignore_optional_problems" value="true"/>
31+
<attribute name="m2e-apt" value="true"/>
32+
</attributes>
33+
</classpathentry>
34+
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
35+
<attributes>
36+
<attribute name="maven.pomderived" value="true"/>
37+
</attributes>
38+
</classpathentry>
39+
<classpathentry kind="src" output="target/test-classes" path="target/generated-test-sources/test-annotations">
40+
<attributes>
41+
<attribute name="optional" value="true"/>
42+
<attribute name="maven.pomderived" value="true"/>
43+
<attribute name="ignore_optional_problems" value="true"/>
44+
<attribute name="m2e-apt" value="true"/>
45+
<attribute name="test" value="true"/>
46+
</attributes>
47+
</classpathentry>
48+
<classpathentry kind="output" path="target/classes"/>
49+
</classpath>

.project

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>game</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>org.eclipse.m2e.core.maven2Builder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
</buildSpec>
19+
<natures>
20+
<nature>org.eclipse.jdt.core.javanature</nature>
21+
<nature>org.eclipse.m2e.core.maven2Nature</nature>
22+
</natures>
23+
<filteredResources>
24+
<filter>
25+
<id>1623992748384</id>
26+
<name></name>
27+
<type>30</type>
28+
<matcher>
29+
<id>org.eclipse.core.resources.regexFilterMatcher</id>
30+
<arguments>node_modules|.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments>
31+
</matcher>
32+
</filter>
33+
</filteredResources>
34+
</projectDescription>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
eclipse.preferences.version=1
2+
encoding//src/main/java=UTF-8
3+
encoding//src/main/resources=UTF-8
4+
encoding//src/test/java=UTF-8
5+
encoding/<project>=UTF-8
+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.jdt.apt.aptEnabled=false

.settings/org.eclipse.jdt.core.prefs

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
3+
org.eclipse.jdt.core.compiler.compliance=1.8
4+
org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled
5+
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
6+
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=ignore
7+
org.eclipse.jdt.core.compiler.processAnnotations=disabled
8+
org.eclipse.jdt.core.compiler.release=disabled
9+
org.eclipse.jdt.core.compiler.source=1.8

.settings/org.eclipse.m2e.core.prefs

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
activeProfiles=
2+
eclipse.preferences.version=1
3+
resolveWorkspaceProjects=true
4+
version=1

.vscode/settings.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"java.configuration.updateBuildConfiguration": "interactive"
3+
}

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# lwjgl-stuff

pom.xml

+188
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,188 @@
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

Comments
 (0)