base.facade-1.1.11.pom
Facade Serivices for Glassfish Apps
Checksums
| MD5 | bc299e5a4976656b8bc75c9ef7773ca9 |
| SHA1 | 95ff8f132261cbfc71e60b81dbdabe5107839d62 |
| SHA256 | 2ab203fe654bd644abc06b93a038310f154b34e045277053f39035455a7cbf3c |
| SHA512 | 428c6a81189aac5624253103b6e6cc381531fa2cf1dc060b71c3315c8b494dce5e94ef97799408d04c66846ba96e8c9141bfb02f3bcc52e90a044b0725af1467 |
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.facade</artifactId>
<version>1.1.11</version>
<name>Base Facade</name>
<description>Facade Serivices for Glassfish Apps</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.facade.git</connection>
<url>https://github.com/anr-ru/base.facade/</url>
<tag>HEAD</tag>
</scm>
<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>**/AbstractGlassfishWebTestCase*</include>
<include>**/GlassfishLoader*</include>
<include>**/RestClient.class</include>
<include>**/TestDestination.class</include>
<include>**/TestJmsOperations*.class</include>
<include>**/MockTextMessageImpl.class</include>
<include>**/JmsTests.class</include>
<include>**/HttpJob.class</include>
<include>**/APITester.class</include>
<include>**/ApiCallback.class</include>
</includes>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<!-- Spring -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jms</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.security.oauth</groupId>
<artifactId>spring-security-oauth2</artifactId>
</dependency>
<!-- JEE -->
<dependency>
<groupId>javax.ejb</groupId>
<artifactId>javax.ejb-api</artifactId>
</dependency>
<dependency>
<groupId>javax.jms</groupId>
<artifactId>javax.jms-api</artifactId>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>ru.anr</groupId>
<artifactId>base.services</artifactId>
<version>${base.services.version}</version>
</dependency>
<dependency>
<groupId>ru.anr</groupId>
<artifactId>base.utils</artifactId>
<version>${base.utils.version}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
</dependency>
<!-- TESTS -->
<dependency>
<groupId>org.hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.glassfish.main.extras</groupId>
<artifactId>glassfish-embedded-all</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derby</artifactId>
<version>${derby.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ru.anr</groupId>
<artifactId>base.services</artifactId>
<classifier>tests</classifier>
<version>${base.services.version}</version>
</dependency>
<dependency>
<groupId>ru.anr</groupId>
<artifactId>base.tests</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>com.mchange</groupId>
<artifactId>c3p0</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
<derby.version>10.8.2.2</derby.version>
<dbx.hibernateDialect>org.hibernate.dialect.DerbyTenSevenDialect</dbx.hibernateDialect>
<dbx.driverClass>org.apache.derby.jdbc.EmbeddedXADataSource</dbx.driverClass>
<dbx.url>jdbc:derby:target/database</dbx.url>
<dbx.user>localtest</dbx.user>
<dbx.password>localtest</dbx.password>
<dbx.datasoureType>javax.sql.XADataSource</dbx.datasoureType>
<base.utils.version>1.0.8</base.utils.version>
<base.services.version>1.1.8</base.services.version>
</properties>
</project>