105 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			105 lines
		
	
	
		
			3.2 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/maven-v4_0_0.xsd">
 | |
|   <modelVersion>4.0.0</modelVersion>
 | |
|   <groupId>electrosphere</groupId>
 | |
|   <artifactId>sample-cli-java</artifactId>
 | |
|   <version>1.0-SNAPSHOT</version>
 | |
|   <build>
 | |
|     <plugins>
 | |
|       <plugin>
 | |
|         <artifactId>maven-shade-plugin</artifactId>
 | |
|         <version>3.2.4</version>
 | |
|         <executions>
 | |
|           <execution>
 | |
|             <phase>package</phase>
 | |
|             <goals>
 | |
|               <goal>shade</goal>
 | |
|             </goals>
 | |
|             <configuration>
 | |
|               <transformers>
 | |
|                 <transformer>
 | |
|                   <mainClass>electrosphere.Main</mainClass>
 | |
|                 </transformer>
 | |
|               </transformers>
 | |
|             </configuration>
 | |
|           </execution>
 | |
|         </executions>
 | |
|       </plugin>
 | |
|       <plugin>
 | |
|         <artifactId>maven-assembly-plugin</artifactId>
 | |
|         <version>3.0.0</version>
 | |
|         <executions>
 | |
|           <execution>
 | |
|             <id>make-assembly</id>
 | |
|             <phase>package</phase>
 | |
|             <goals>
 | |
|               <goal>single</goal>
 | |
|             </goals>
 | |
|           </execution>
 | |
|         </executions>
 | |
|         <configuration>
 | |
|           <descriptorRefs>
 | |
|             <descriptorRef>jar-with-dependencies</descriptorRef>
 | |
|           </descriptorRefs>
 | |
|           <archive>
 | |
|             <manifest>
 | |
|               <mainClass>electrosphere.Main</mainClass>
 | |
|             </manifest>
 | |
|           </archive>
 | |
|         </configuration>
 | |
|       </plugin>
 | |
|       <plugin>
 | |
|         <artifactId>maven-compiler-plugin</artifactId>
 | |
|         <version>3.11.0</version>
 | |
|         <configuration>
 | |
|           <source>17</source>
 | |
|           <target>17</target>
 | |
|           <compilerArgs>
 | |
|             <arg>--add-modules</arg>
 | |
|             <arg>jdk.incubator.vector</arg>
 | |
|           </compilerArgs>
 | |
|         </configuration>
 | |
|       </plugin>
 | |
|     </plugins>
 | |
|   </build>
 | |
|   <profiles>
 | |
|     <profile>
 | |
|       <id>lwjgl-natives-linux</id>
 | |
|       <properties>
 | |
|         <lwjgl.natives>natives-linux</lwjgl.natives>
 | |
|       </properties>
 | |
|     </profile>
 | |
|     <profile>
 | |
|       <id>lwjgl-natives-macos</id>
 | |
|       <properties>
 | |
|         <maven.compiler.target>17</maven.compiler.target>
 | |
|         <lwjgl.natives>natives-macos</lwjgl.natives>
 | |
|       </properties>
 | |
|     </profile>
 | |
|     <profile>
 | |
|       <id>lwjgl-natives-windows</id>
 | |
|       <properties>
 | |
|         <lwjgl.natives>natives-windows</lwjgl.natives>
 | |
|       </properties>
 | |
|     </profile>
 | |
|   </profiles>
 | |
|   <dependencyManagement>
 | |
|     <dependencies>
 | |
|       <dependency>
 | |
|         <groupId>org.lwjgl</groupId>
 | |
|         <artifactId>lwjgl-bom</artifactId>
 | |
|         <version>${lwjgl.version}</version>
 | |
|         <type>pom</type>
 | |
|         <scope>import</scope>
 | |
|       </dependency>
 | |
|     </dependencies>
 | |
|   </dependencyManagement>
 | |
|   <properties>
 | |
|     <maven.compiler.target>17</maven.compiler.target>
 | |
|     <maven.compiler.source>17</maven.compiler.source>
 | |
|     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
 | |
|     <joml.version>1.10.5</joml.version>
 | |
|     <lwjgl.version>3.3.2</lwjgl.version>
 | |
|   </properties>
 | |
| </project>
 |