Files
luaj/luaj-test/pom.xml

36 lines
963 B
XML
Raw Normal View History

2021-03-08 20:32:14 +01:00
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
2021-04-13 20:00:36 +02:00
<groupId>com.github.farmboy0.luaj</groupId>
2021-03-08 20:32:14 +01:00
<artifactId>luaj-parent</artifactId>
2021-04-13 20:00:36 +02:00
<version>3.0.3</version>
2021-03-08 20:32:14 +01:00
</parent>
<artifactId>luaj-test</artifactId>
<name>LuaJ-Tests</name>
<description>Testsuites for LuaJ</description>
<dependencies>
<dependency>
2021-04-13 20:00:36 +02:00
<groupId>com.github.farmboy0.luaj</groupId>
2021-03-08 20:32:14 +01:00
<artifactId>luaj-jme</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
2021-04-13 20:00:36 +02:00
<groupId>com.github.farmboy0.luaj</groupId>
2021-03-08 20:32:14 +01:00
<artifactId>luaj-jse</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>