mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
Note that we can't run both test-java16 and test-kotlin together as kotlin isn't yet working on JDK 16
26 lines
796 B
XML
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>
|