mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
139 lines
3.9 KiB
XML
139 lines
3.9 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>13.21.1-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<name>ebean api</name>
|
|
<description>ebean api</description>
|
|
<artifactId>ebean-api</artifactId>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>io.avaje</groupId>
|
|
<artifactId>avaje-applog</artifactId>
|
|
<version>1.0</version>
|
|
</dependency>
|
|
|
|
<!-- exclude avaje-applog-slf4j to direct logging to something else -->
|
|
<dependency>
|
|
<groupId>io.avaje</groupId>
|
|
<artifactId>avaje-applog-slf4j</artifactId>
|
|
<version>1.0</version>
|
|
</dependency>
|
|
|
|
<!--
|
|
Class retention Nonnull and Nullable annotations
|
|
to assist with IDE auto-completion with Ebean API
|
|
-->
|
|
<dependency>
|
|
<groupId>io.avaje</groupId>
|
|
<artifactId>avaje-lang</artifactId>
|
|
<version>1.1</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.avaje</groupId>
|
|
<artifactId>avaje-config</artifactId>
|
|
<version>3.4</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.ebean</groupId>
|
|
<artifactId>persistence-api</artifactId>
|
|
<version>${ebean-persistence-api.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.ebean</groupId>
|
|
<artifactId>ebean-annotation</artifactId>
|
|
<version>${ebean-annotation.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.ebean</groupId>
|
|
<artifactId>ebean-types</artifactId>
|
|
<version>${ebean-types.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.ebean</groupId>
|
|
<artifactId>ebean-datasource-api</artifactId>
|
|
<version>${ebean-datasource.version}</version>
|
|
</dependency>
|
|
|
|
<!-- Support MdcBackgroundExecutorWrapper -->
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<version>1.7.36</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<!-- Jackson core used internally by Ebean -->
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-core</artifactId>
|
|
<version>${jackson.version}</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<!-- provided scope for JsonNode support -->
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-databind</artifactId>
|
|
<version>${jackson.version}</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<!-- JAVAX-DEPENDENCY-START -->
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
<version>3.1.0</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<!-- JAVAX-DEPENDENCY-END -->
|
|
<!-- JAKARTA-DEPENDENCY-START ___
|
|
<dependency>
|
|
<groupId>jakarta.servlet</groupId>
|
|
<artifactId>jakarta.servlet-api</artifactId>
|
|
<version>6.0.0</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
____ JAKARTA-DEPENDENCY-END -->
|
|
|
|
<dependency>
|
|
<groupId>io.avaje</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>1.1</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<filtering>true</filtering>
|
|
<includes>
|
|
<include>**/ebean-maven-version.txt</include>
|
|
</includes>
|
|
</resource>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<filtering>false</filtering>
|
|
<excludes>
|
|
<exclude>**/ebean-maven-version.txt</exclude>
|
|
</excludes>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
|
|
</project>
|