circumflex-orm
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>ru.circumflex</groupId>
<artifactId>circumflex-orm</artifactId>
<version>2.5</version>
</dependency><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>
<groupId>ru.circumflex</groupId>
<artifactId>circumflex-orm</artifactId>
<packaging>jar</packaging>
<version>2.5</version>
<name>Circumflex ORM Framework</name>
<parent>
<groupId>ru.circumflex</groupId>
<artifactId>circumflex-parent</artifactId>
<version>2.5</version>
<relativePath>../pom.xml</relativePath>
</parent>
<properties>
<orm.connection.url>jdbc:h2:mem:test</orm.connection.url>
<orm.connection.username>test</orm.connection.username>
<orm.connection.password>test</orm.connection.password>
<orm.defaultSchema>orm</orm.defaultSchema>
</properties>
<dependencies>
<dependency>
<groupId>ru.circumflex</groupId>
<artifactId>circumflex-core</artifactId>
<version>2.5</version>
</dependency>
<dependency>
<groupId>ru.circumflex</groupId>
<artifactId>circumflex-cache</artifactId>
<version>2.5</version>
</dependency>
<dependency>
<groupId>c3p0</groupId>
<artifactId>c3p0</artifactId>
<version>0.9.1.2</version>
</dependency>
<!-- Testing -->
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.2.142</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<testResources>
<testResource>
<directory>src/test/resources</directory>
<filtering>true</filtering>
<includes>
<include>**/*.properties</include>
<include>**/*.xml</include>
</includes>
</testResource>
</testResources>
<plugins>
<plugin>
<groupId>org.scala-tools</groupId>
<artifactId>maven-scala-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>