avaje-ebeanorm-spring.
Support for Spring transactions and IOC setup of Ebean server config.
Here is the list of declaration for avaje-ebeanorm-spring. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.avaje.ebeanorm</groupId> <artifactId>avaje-ebeanorm-spring</artifactId> <version>3.3.1</version> </dependency>
If you think this Maven repository POM file listing for avaje-ebeanorm-spring is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.
The avaje-ebeanorm-spring-3.3.1 has 9 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
JUnit | junit 4.8.2 JUnit is a regression testing framework. It is used by the developer who implements unit tests in Java. | 919 |
The following plugins are used in the avaje-ebeanorm-spring-3.3.1.jar
Here is the content of the POM file.
<?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>3.3.1</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>3.0.0.RELEASE</spring.framework.version> <ebean.mavenenhancer.version>3.2.1</ebean.mavenenhancer.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.avaje.ebeanorm</groupId> <artifactId>avaje-ebeanorm</artifactId> <version>[3.2,4)</version> </dependency> <dependency> <groupId>org.avaje.ebeanorm</groupId> <artifactId>avaje-ebeanorm-agent</artifactId> <version>3.2.1</version> <scope>test</scope> </dependency> <!-- Spring --> <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.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> <version>[1.6.2]</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.xbean</groupId> <artifactId>xbean-spring</artifactId> <version>3.5</version> <scope>test</scope> <exclusions> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <version>1.2.128</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.avaje.ebeanorm</groupId> <artifactId>avaje-ebeanorm-mavenenhancer</artifactId> <version>${ebean.mavenenhancer.version}</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> </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.2.1,3.9) </versionRange> <goals> <goal>enhance</goal> </goals> </pluginExecutionFilter> <action> <ignore /> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> </plugins> </pluginManagement> </build> </project>