base.services-1.1.6.pom
A set of base classes for business logic implementations
Checksums
| MD5 | 2a27bd6b2caff93b35631cd07765f1c8 |
| SHA1 | 15c73a4649c37c83f1fa7fab10616f8300918a2e |
| SHA256 | 8e901ded54e2b5531bceac590f07101f80f5dfccb13a6555ffecbf70ca1de872 |
| SHA512 | ba3fbe7d13750a6d42c65fa0c73309cdc6cc60bb3025ab5b4be12fa74b53b2d15184ad86ea1736ce7383e2f1d87e1d2d3f4c7470b800b4e43f2beae323e79ce4 |
POM
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>ru.anr</groupId>
<artifactId>base.platform.parent</artifactId>
<version>1.0.0</version>
</parent>
<artifactId>base.services</artifactId>
<version>1.1.6</version>
<name>Base Services</name>
<description>A set of base classes for business logic implementations</description>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<scm>
<connection>scm:git:ssh://@github.com/anr-ru/base.services.git</connection>
<url>https://github.com/anr-ru/base.services/</url>
<tag>HEAD</tag>
</scm>
<developers>
<developer>
<id>alex</id>
<name>Alexey Romanchuk</name>
<email>alexey.p.romanchuk@gmail.com</email>
<timezone>5</timezone>
</developer>
</developers>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>test-jar</goal>
</goals>
<configuration>
<includes>
<include>**/META-INF/persistence-local.xml</include>
<include>**/BaseLocal*TestCase*</include>
<include>**/AbstractLocalDaoConfig*</include>
<include>**/domain/Samples*</include>
</includes>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<!-- Spring framework base -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aspects</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-aspects</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-acl</artifactId>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-orm</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
</dependency>
<dependency>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache-core</artifactId>
</dependency>
<dependency>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache-jmsreplication</artifactId>
</dependency>
<dependency>
<artifactId>hibernate-ehcache</artifactId>
<groupId>org.hibernate</groupId>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-config</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-core</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.security.oauth</groupId>
<artifactId>spring-security-oauth2</artifactId>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
</dependency>
<dependency>
<groupId>javax.el</groupId>
<artifactId>javax.el-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.glassfish.web</groupId>
<artifactId>javax.el</artifactId>
<scope>provided</scope>
</dependency>
<!-- JSON/XML serializarion tools -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.module</groupId>
<artifactId>jackson-module-jaxb-annotations</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-xml</artifactId>
</dependency>
<dependency>
<groupId>org.codehaus.woodstox</groupId>
<artifactId>woodstox-core-asl</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-validator</groupId>
<artifactId>commons-validator</artifactId>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
</dependency>
<!-- Internal dependencies -->
<dependency>
<groupId>ru.anr</groupId>
<artifactId>base.utils</artifactId>
<version>${base.utils.version}</version>
</dependency>
<dependency>
<groupId>ru.anr</groupId>
<artifactId>base.tests</artifactId>
<version>1.0.0</version>
</dependency>
<!-- TESTS -->
<dependency>
<groupId>org.hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.mchange</groupId>
<artifactId>c3p0</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
<dbx.url>jdbc:hsqldb:mem:testdb</dbx.url>
<dbx.user>sa</dbx.user>
<dbx.password></dbx.password>
<dbx.driverClass>org.hsqldb.jdbcDriver</dbx.driverClass>
<dbx.hibernateDialect>org.hibernate.dialect.HSQLDialect</dbx.hibernateDialect>
<base.utils.version>1.0.1-SNAPSHOT-99fd047</base.utils.version>
</properties>
</project>