mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
179 lines
5.4 KiB
XML
179 lines
5.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/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.avaje</groupId>
|
|
<artifactId>java8-parent</artifactId>
|
|
<version>1.3</version>
|
|
</parent>
|
|
|
|
<groupId>io.ebean</groupId>
|
|
<artifactId>ebean-springtxn</artifactId>
|
|
<name>ebean-springtxn</name>
|
|
<version>10.1.1-SNAPSHOT</version>
|
|
<packaging>jar</packaging>
|
|
<description>Support for Spring transaction use with Ebean</description>
|
|
|
|
<properties>
|
|
<spring.framework.version>4.3.4.RELEASE</spring.framework.version>
|
|
<spring.boot.version>1.4.2.RELEASE</spring.boot.version>
|
|
</properties>
|
|
|
|
<url>http://ebean-orm.github.io/</url>
|
|
|
|
<scm>
|
|
<developerConnection>scm:git:git@github.com:ebean-orm/ebean-spring.git</developerConnection>
|
|
</scm>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<version>[1.7,)</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.ebean</groupId>
|
|
<artifactId>ebean</artifactId>
|
|
<version>[10,)</version>
|
|
</dependency>
|
|
|
|
<!-- Optional: Add to use EbeanAgentAutoConfiguration -->
|
|
<dependency>
|
|
<groupId>io.ebean</groupId>
|
|
<artifactId>ebean-agent</artifactId>
|
|
<version>[10,)</version>
|
|
<scope>runtime</scope>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.avaje</groupId>
|
|
<artifactId>avaje-agentloader</artifactId>
|
|
<version>2.1.2</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<!-- Provided: Spring, Spring Boot -->
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-jdbc</artifactId>
|
|
<version>${spring.framework.version}</version>
|
|
<scope>provided</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>commons-logging</groupId>
|
|
<artifactId>commons-logging</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-autoconfigure</artifactId>
|
|
<version>${spring.boot.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- Test dependencies -->
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-test</artifactId>
|
|
<version>${spring.framework.version}</version>
|
|
<scope>test</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>commons-logging</groupId>
|
|
<artifactId>commons-logging</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-test</artifactId>
|
|
<version>${spring.boot.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.avaje.composite</groupId>
|
|
<artifactId>avaje-composite-testing-ebean</artifactId>
|
|
<version>4.1</version>
|
|
<type>pom</type>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>jcl-over-slf4j</artifactId>
|
|
<version>[1.7,)</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>io.ebean</groupId>
|
|
<artifactId>ebean-maven-plugin</artifactId>
|
|
<version>10.1.1</version>
|
|
<executions>
|
|
<execution>
|
|
<id>main</id>
|
|
<phase>process-test-classes</phase>
|
|
<configuration>
|
|
<classSource>target/test-classes</classSource>
|
|
<packages>org.example.**</packages>
|
|
<transformArgs>debug=1</transformArgs>
|
|
</configuration>
|
|
<goals>
|
|
<goal>enhance</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>2.18.1</version>
|
|
<configuration>
|
|
<!-- Manifest-only JAR hides the true classpath from the AgentLoader -->
|
|
<useManifestOnlyJar>false</useManifestOnlyJar>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
|
|
<pluginManagement>
|
|
<plugins>
|
|
<!--This plugin's configuration is used to store Eclipse m2e settings
|
|
only. It has no influence on the Maven build itself. -->
|
|
<plugin>
|
|
<groupId>org.eclipse.m2e</groupId>
|
|
<artifactId>lifecycle-mapping</artifactId>
|
|
<version>1.0.0</version>
|
|
<configuration>
|
|
<lifecycleMappingMetadata>
|
|
<pluginExecutions>
|
|
<pluginExecution>
|
|
<pluginExecutionFilter>
|
|
<groupId>io.ebean</groupId>
|
|
<artifactId>ebean-maven-plugin</artifactId>
|
|
<versionRange>[1,)</versionRange>
|
|
<goals>
|
|
<goal>enhance</goal>
|
|
</goals>
|
|
</pluginExecutionFilter>
|
|
<action>
|
|
<ignore />
|
|
</action>
|
|
</pluginExecution>
|
|
</pluginExecutions>
|
|
</lifecycleMappingMetadata>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
</build>
|
|
</project>
|