Files
ebean/tests/pom.xml
T
Rob Bygrave e85a471fcf #2380 Related test pom only changes
Note that we can't run both test-java16 and test-kotlin together as kotlin isn't yet working on JDK 16
2021-09-22 14:11:46 +12:00

26 lines
796 B
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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.avaje</groupId>
<artifactId>java8-oss</artifactId>
<version>2.3</version>
</parent>
<groupId>io.ebean</groupId>
<artifactId>tests</artifactId>
<version>1.0</version>
<packaging>pom</packaging>
<name>tests</name>
<description>test modules</description>
<modules>
<!-- test-java16 REQUIRES JDK 16 to run -->
<!-- <module>test-java16</module>-->
<!-- test-kotlin does NOT run with JDK 16!! -->
<module>test-kotlin</module>
</modules>
</project>