Maven Repository - POM file for JPA Hibernate scalajpa_2.9.1 1.4 1.4

Summary

ScalaJPA.

This module provides some basic classes to simplify using JPA (Java Persistence) under Scala..

Declaration

Here is the list of declaration for scalajpa_2.9.1. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>org.scala-libs</groupId>
   <artifactId>scalajpa_2.9.1</artifactId>
   <version>1.4</version>
</dependency>

If you think this Maven repository POM file listing for scalajpa_2.9.1 is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

License

Name:Apache License, ASL Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.





Depends on

The scalajpa_2.9.1-1.4 has 7 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
EJBpersistence-api 1.0
The Enterprise JavaBeans architecture is a component architecture for the development and deployment of component-based business applications. The purpose of Enterprise JavaBeans (EJB) 3.0 is to improve the EJB architecture by reducing its complexity from the developer's point of view.
361
Databaseh2 1.3.152
H2 Database Engine
6
JPA Hibernatehibernate-entitymanager 3.4.0.GA
Hibernate Entitity Manager
38
Loglogback-classic 0.9.27
Logback: the reliable, generic, fast and flexible logging library for Java.
6

Packages

The following packages are defined in the scalajpa_2.9.1-1.4.jar

org.scala_libs.jpa

POM File Source

Here is the content of the POM file.

<?xml version='1.0' encoding='UTF-8'?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0">
    <modelVersion>4.0.0</modelVersion>
    <groupId>org.scala-libs</groupId>
    <artifactId>scalajpa_2.9.1</artifactId>
    <packaging>jar</packaging>
    <description>This module provides some basic classes to simplify using JPA (Java Persistence) under Scala.</description>
    <version>1.4</version>
    <name>ScalaJPA</name>
    <organization>
        <name>org.scala-libs</name>
    </organization>
    <inceptionYear>2008</inceptionYear>
    <url>https://github.com/dchenbecker/scalajpa</url>
    <licenses>
        <license>
            <name>Apache License, ASL Version 2.0</name>
            <url>http://www.apache.org/licenses/LICENSE-2.0</url>
            <distribution>repo</distribution>
        </license>
    </licenses>
    
    <issueManagement>
        <system>GitHub</system>
        <url>http://github.com/dchenbecker/scalajpa/issues</url>
    </issueManagement>
    <scm>
        <connection>scm:git:git@github.com:dchenbecker/scalajpa.git</connection>
        <url>http://github.com/dchenbecker/scalajpa/tree/master</url>
    </scm>
    <dependencies>
        <dependency>
            <groupId>org.scala-lang</groupId>
            <artifactId>scala-library</artifactId>
            <version>2.9.1</version>
        </dependency>
        <dependency>
            <groupId>javax.persistence</groupId>
            <artifactId>persistence-api</artifactId>
            <version>1.0</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>geronimo-spec</groupId>
            <artifactId>geronimo-spec-jta</artifactId>
            <version>1.0-M1</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.h2database</groupId>
            <artifactId>h2</artifactId>
            <version>1.3.152</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-entitymanager</artifactId>
            <version>3.4.0.GA</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.specs2</groupId>
            <artifactId>specs2_2.9.1</artifactId>
            <version>1.12.2</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>ch.qos.logback</groupId>
            <artifactId>logback-classic</artifactId>
            <version>0.9.27</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>