1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
---|
2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
---|
3 | <modelVersion>4.0.0</modelVersion>
|
---|
4 | <parent>
|
---|
5 | <groupId>org.openstreetmap.josm.plugins</groupId>
|
---|
6 | <artifactId>lwjgl-parent</artifactId>
|
---|
7 | <version>SNAPSHOT</version>
|
---|
8 | <relativePath>modules</relativePath>
|
---|
9 | </parent>
|
---|
10 | <artifactId>lwjgl</artifactId>
|
---|
11 |
|
---|
12 | <properties>
|
---|
13 | <plugin.dist.dir>../../dist</plugin.dist.dir>
|
---|
14 | <plugin.src.dir>src/main/java</plugin.src.dir>
|
---|
15 | <plugin.class>org.openstreetmap.josm.plugins.lwjgl.LWJGLPlugin</plugin.class>
|
---|
16 | <plugin.requires>lwjgl-natives</plugin.requires>
|
---|
17 | </properties>
|
---|
18 |
|
---|
19 | <dependencies>
|
---|
20 | <dependency>
|
---|
21 | <groupId>org.lwjgl</groupId>
|
---|
22 | <artifactId>lwjgl</artifactId>
|
---|
23 | </dependency>
|
---|
24 | <dependency>
|
---|
25 | <groupId>org.lwjgl</groupId>
|
---|
26 | <artifactId>lwjgl-assimp</artifactId>
|
---|
27 | </dependency>
|
---|
28 | <dependency>
|
---|
29 | <groupId>org.lwjgl</groupId>
|
---|
30 | <artifactId>lwjgl-egl</artifactId>
|
---|
31 | </dependency>
|
---|
32 | <dependency>
|
---|
33 | <groupId>org.lwjgl</groupId>
|
---|
34 | <artifactId>lwjgl-opencl</artifactId>
|
---|
35 | </dependency>
|
---|
36 | <dependency>
|
---|
37 | <groupId>org.lwjgl</groupId>
|
---|
38 | <artifactId>lwjgl-opengl</artifactId>
|
---|
39 | </dependency>
|
---|
40 | <dependency>
|
---|
41 | <groupId>org.lwjgl</groupId>
|
---|
42 | <artifactId>lwjgl-opengles</artifactId>
|
---|
43 | </dependency>
|
---|
44 | <dependency>
|
---|
45 | <groupId>org.lwjgl</groupId>
|
---|
46 | <artifactId>lwjgl-par</artifactId>
|
---|
47 | </dependency>
|
---|
48 | <dependency>
|
---|
49 | <groupId>org.lwjgl</groupId>
|
---|
50 | <artifactId>lwjgl-stb</artifactId>
|
---|
51 | </dependency>
|
---|
52 | <dependency>
|
---|
53 | <groupId>org.lwjgl</groupId>
|
---|
54 | <artifactId>lwjgl-vulkan</artifactId>
|
---|
55 | </dependency>
|
---|
56 | <dependency>
|
---|
57 | <groupId>org.joml</groupId>
|
---|
58 | <artifactId>joml</artifactId>
|
---|
59 | <version>${joml.version}</version>
|
---|
60 | </dependency>
|
---|
61 | <dependency>
|
---|
62 | <groupId>org.lwjglx</groupId>
|
---|
63 | <artifactId>lwjgl3-awt</artifactId>
|
---|
64 | <version>${lwjgl3-awt.version}</version>
|
---|
65 | </dependency>
|
---|
66 | </dependencies>
|
---|
67 | <build>
|
---|
68 | <plugins>
|
---|
69 | <plugin>
|
---|
70 | <groupId>org.apache.maven.plugins</groupId>
|
---|
71 | <artifactId>maven-compiler-plugin</artifactId>
|
---|
72 | <configuration>
|
---|
73 | <source>${plugin.src.dir}</source>
|
---|
74 | <includes>**/LWJGLPlugin.java</includes>
|
---|
75 | </configuration>
|
---|
76 | </plugin>
|
---|
77 | <plugin>
|
---|
78 | <groupId>org.apache.maven.plugins</groupId>
|
---|
79 | <artifactId>maven-jar-plugin</artifactId>
|
---|
80 | <configuration>
|
---|
81 | <archive>
|
---|
82 | <manifestEntries>
|
---|
83 | <Plugin-Requires>${plugin.requires}</Plugin-Requires>
|
---|
84 | </manifestEntries>
|
---|
85 | </archive>
|
---|
86 | </configuration>
|
---|
87 | </plugin>
|
---|
88 | </plugins>
|
---|
89 | </build>
|
---|
90 | </project>
|
---|