mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
86 lines
2.4 KiB
XML
86 lines
2.4 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.1.0</version>
|
|
<relativePath>../..</relativePath>
|
|
</parent>
|
|
|
|
<name>ebean-postgis</name>
|
|
<description>ebean-postgis composite</description>
|
|
<artifactId>ebean-postgis</artifactId>
|
|
|
|
<properties>
|
|
<postgis.jdbc.version>2.5.1</postgis.jdbc.version>
|
|
<postgres.jdbc.version>42.7.2</postgres.jdbc.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>io.ebean</groupId>
|
|
<artifactId>ebean-api</artifactId>
|
|
<version>14.1.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.ebean</groupId>
|
|
<artifactId>ebean-core</artifactId>
|
|
<version>14.1.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.ebean</groupId>
|
|
<artifactId>ebean-datasource</artifactId>
|
|
<version>${ebean-datasource.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.ebean</groupId>
|
|
<artifactId>ebean-migration</artifactId>
|
|
<version>${ebean-migration.version}</version>
|
|
</dependency>
|
|
|
|
<!-- Technically optional but most expected to use query beans -->
|
|
<dependency>
|
|
<groupId>io.ebean</groupId>
|
|
<artifactId>ebean-querybean</artifactId>
|
|
<version>14.1.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.ebean</groupId>
|
|
<artifactId>ebean-platform-postgres</artifactId>
|
|
<version>14.1.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.ebean</groupId>
|
|
<artifactId>ebean-postgis-types</artifactId>
|
|
<version>14.1.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.postgresql</groupId>
|
|
<artifactId>postgresql</artifactId>
|
|
<version>${postgres.jdbc.version}</version>
|
|
<exclusions>
|
|
<!-- exclude unnecessary checker framework -->
|
|
<exclusion>
|
|
<groupId>*</groupId>
|
|
<artifactId>*</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>net.postgis</groupId>
|
|
<artifactId>postgis-jdbc</artifactId>
|
|
<version>${postgis.jdbc.version}</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
</project>
|