mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
238 lines
7.3 KiB
XML
238 lines
7.3 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>avaje-javaparent</artifactId>
|
|
<version>1.2</version>
|
|
</parent>
|
|
|
|
<groupId>org.avaje.ebeanorm</groupId>
|
|
<artifactId>avaje-ebeanorm-spring</artifactId>
|
|
<name>avaje-ebeanorm-spring</name>
|
|
<version>7.1.1-SNAPSHOT</version>
|
|
<packaging>jar</packaging>
|
|
<description>Support for Spring transactions and IOC setup of Ebean server config</description>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<spring.framework.version>4.1.7.RELEASE</spring.framework.version>
|
|
</properties>
|
|
|
|
<url>http://www.avaje.org</url>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>The Apache Software License, Version 2.0</name>
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
<distribution>repo</distribution>
|
|
</license>
|
|
</licenses>
|
|
|
|
<scm>
|
|
<connection>scm:git:https://github.com/ebean-orm/avaje-ebeanorm-spring.git</connection>
|
|
<developerConnection>scm:git:https://github.com/ebean-orm/avaje-ebeanorm-spring.git</developerConnection>
|
|
<url>https://github.com/ebean-orm/avaje-ebeanorm-spring.git</url>
|
|
</scm>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>jcl-over-slf4j</artifactId>
|
|
<version>[1.7,)</version>
|
|
</dependency>
|
|
|
|
<!-- Provided: Bring in explicitly -->
|
|
<dependency>
|
|
<groupId>org.avaje.ebeanorm</groupId>
|
|
<artifactId>avaje-ebeanorm</artifactId>
|
|
<version>[6,8)</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- Optional: Add to use AgentLoaderSupport -->
|
|
<dependency>
|
|
<groupId>org.avaje.ebeanorm</groupId>
|
|
<artifactId>avaje-ebeanorm-agent</artifactId>
|
|
<version>[4.5,5)</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- Optional: Add to use AgentLoaderSupport -->
|
|
<dependency>
|
|
<groupId>org.avaje</groupId>
|
|
<artifactId>avaje-agentloader</artifactId>
|
|
<version>2.1.2</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- Provided: Spring, bring in explicitly -->
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-context</artifactId>
|
|
<version>${spring.framework.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-core</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</groupId>
|
|
<artifactId>spring-aspects</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</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>
|
|
|
|
<!-- 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.avaje.composite</groupId>
|
|
<artifactId>avaje-composite-testing-ebean</artifactId>
|
|
<version>4.1</version>
|
|
<type>pom</type>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.avaje.ebeanorm</groupId>
|
|
<artifactId>avaje-ebeanorm-mavenenhancer</artifactId>
|
|
<version>4.10.1</version>
|
|
<executions>
|
|
<execution>
|
|
<id>main</id>
|
|
<phase>process-test-classes</phase>
|
|
<configuration>
|
|
<classSource>target/test-classes</classSource>
|
|
<packages>com.avaje.**</packages>
|
|
<transformArgs>debug=9</transformArgs>
|
|
</configuration>
|
|
<goals>
|
|
<goal>enhance</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<configuration>
|
|
<archive>
|
|
<manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile>
|
|
</archive>
|
|
</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>
|
|
org.avaje.ebeanorm
|
|
</groupId>
|
|
<artifactId>
|
|
avaje-ebeanorm-mavenenhancer
|
|
</artifactId>
|
|
<versionRange>
|
|
[3,4)
|
|
</versionRange>
|
|
<goals>
|
|
<goal>enhance</goal>
|
|
</goals>
|
|
</pluginExecutionFilter>
|
|
<action>
|
|
<ignore />
|
|
</action>
|
|
</pluginExecution>
|
|
</pluginExecutions>
|
|
</lifecycleMappingMetadata>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>2.9.1</version>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<doclet>org.avaje.doclet.PygmentsDoclet</doclet>
|
|
<docletArtifact>
|
|
<groupId>org.avaje</groupId>
|
|
<artifactId>pygments-doclet</artifactId>
|
|
<version>1.0.0</version>
|
|
</docletArtifact>
|
|
<additionalparam>
|
|
-Xdoclint:none
|
|
</additionalparam>
|
|
<linksource>true</linksource>
|
|
</configuration>
|
|
|
|
<executions>
|
|
<execution>
|
|
<id>attach-javadocs</id>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
</plugins>
|
|
</pluginManagement>
|
|
</build>
|
|
</project>
|