1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?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/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>xyz.tbvns</groupId>
- <artifactId>engine-core</artifactId>
- <version>1.0-ALPHA</version>
- <properties>
- <maven.compiler.source>21</maven.compiler.source>
- <maven.compiler.target>21</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <parent>
- <groupId>xyz.tbvns</groupId>
- <artifactId>engine</artifactId>
- <version>1.0-ALPHA</version>
- </parent>
- <dependencies>
- <dependency>
- <groupId>com.badlogicgames.gdx</groupId>
- <artifactId>gdx</artifactId>
- <version>1.12.1</version>
- </dependency>
- <dependency>
- <groupId>com.badlogicgames.gdx</groupId>
- <artifactId>gdx-backend-lwjgl3</artifactId>
- <version>1.12.1</version>
- </dependency>
- <dependency>
- <groupId>com.badlogicgames.gdx</groupId>
- <artifactId>gdx-platform</artifactId>
- <version>1.12.1</version>
- <classifier>natives-desktop</classifier>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.8.1</version>
- </plugin>
- </plugins>
- </build>
- </project>
|