mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
42 lines
1.0 KiB
XML
42 lines
1.0 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/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<artifactId>ebean-parent</artifactId>
|
|
<groupId>io.ebean</groupId>
|
|
<version>14.0.1</version>
|
|
</parent>
|
|
|
|
<artifactId>tests</artifactId>
|
|
<packaging>pom</packaging>
|
|
|
|
<name>tests</name>
|
|
<description>test modules</description>
|
|
|
|
<properties>
|
|
<maven.deploy.skip>true</maven.deploy.skip>
|
|
</properties>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>jdk16plus</id>
|
|
<activation>
|
|
<jdk>[17,21]</jdk>
|
|
</activation>
|
|
<modules>
|
|
<module>test-java16</module>
|
|
</modules>
|
|
</profile>
|
|
<profile>
|
|
<id>jdk11</id>
|
|
<activation>
|
|
<jdk>11</jdk>
|
|
</activation>
|
|
<modules>
|
|
<module>test-kotlin</module>
|
|
</modules>
|
|
</profile>
|
|
</profiles>
|
|
|
|
</project>
|