mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
65 lines
1.9 KiB
XML
65 lines
1.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>12.5.2</version>
|
|
</parent>
|
|
|
|
<name>ebean composite</name>
|
|
<description>Composite of common runtime dependencies</description>
|
|
<artifactId>ebean</artifactId>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>io.ebean</groupId>
|
|
<artifactId>ebean-api</artifactId>
|
|
<version>12.5.2</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.ebean</groupId>
|
|
<artifactId>ebean-core</artifactId>
|
|
<version>12.5.2</version>
|
|
</dependency>
|
|
|
|
<!-- Technically optional but most expected to use query beans -->
|
|
<dependency>
|
|
<groupId>io.ebean</groupId>
|
|
<artifactId>ebean-querybean</artifactId>
|
|
<version>12.5.2</version>
|
|
</dependency>
|
|
|
|
<!-- In future ebean-ddlgen would only be dependency of ebean-test -->
|
|
<dependency>
|
|
<groupId>io.ebean</groupId>
|
|
<artifactId>ebean-ddlgen</artifactId>
|
|
<version>12.5.2</version>
|
|
</dependency>
|
|
|
|
<!-- In future this is optional and not included by default -->
|
|
<dependency>
|
|
<groupId>io.ebean</groupId>
|
|
<artifactId>ebean-autotune</artifactId>
|
|
<version>12.5.2</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>2.5</version>
|
|
<configuration>
|
|
<archive>
|
|
<manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile>
|
|
</archive>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|