Created
March 31, 2016 12:26
-
-
Save triump0870/1609b4a0d164df2a48893ea8e9b6bccf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<project xmlns="http://maven.apache.org/POM/4.0.0" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>wealth</groupId> | |
<artifactId>wealthCore</artifactId> | |
<version>1.0</version> | |
<packaging>jar</packaging> | |
<name>Wealth Core</name> | |
<url></url> | |
<description> | |
<![CDATA[This project is a minimal jar utility with Spring configuration for Hibernate.]]> | |
</description> | |
<properties> | |
<maven.test.failure.ignore>true</maven.test.failure.ignore> | |
<spring.framework.version>4.1.3.RELEASE</spring.framework.version> | |
<org.jasypt.version>1.9.2</org.jasypt.version> | |
<!-- <spring.framework.version>4.0.3.RELEASE</spring.framework.version> --> | |
</properties> | |
<dependencies> | |
<!-- Database encryption specific dependency --> | |
<dependency> | |
<groupId>org.jasypt</groupId> | |
<artifactId>jasypt</artifactId> | |
<version>{version}</version> | |
<scope>compile</scope> | |
</dependency> | |
<!-- End of database dependency --> | |
<dependency> | |
<groupId>org.hibernate</groupId> | |
<artifactId>hibernate-entitymanager</artifactId> | |
<version>4.3.7.Final</version> | |
</dependency> | |
<dependency> | |
<groupId>org.hibernate</groupId> | |
<artifactId>hibernate-envers</artifactId> | |
<version>4.3.5.Final</version> | |
</dependency> | |
<dependency> | |
<groupId>org.hibernate.common</groupId> | |
<artifactId>hibernate-commons-annotations</artifactId> | |
<version>4.0.5.Final</version> | |
</dependency> | |
<dependency> | |
<groupId>junit</groupId> | |
<artifactId>junit</artifactId> | |
<version>4.7</version> | |
<scope>test</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-test</artifactId> | |
<version>${spring.framework.version}</version> | |
<scope>test</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-context-support</artifactId> | |
<version>${spring.framework.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-aop</artifactId> | |
<version>${spring.framework.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>cglib</groupId> | |
<artifactId>cglib</artifactId> | |
<version>2.2</version> | |
</dependency> | |
<dependency> | |
<groupId>com.h2database</groupId> | |
<artifactId>h2</artifactId> | |
<version>1.3.156</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-orm</artifactId> | |
<version>${spring.framework.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>net.sourceforge.jexcelapi</groupId> | |
<artifactId>jxl</artifactId> | |
<version>2.6</version> | |
</dependency> | |
<dependency> | |
<groupId>org.quartz-scheduler</groupId> | |
<artifactId>quartz</artifactId> | |
<version>2.2.1</version> | |
</dependency> | |
<!-- <dependency> <groupId>org.opensymphony.quartz</groupId> <artifactId>quartz</artifactId> | |
<version>1.6.1</version> <version>2.2.1</version> </dependency> --> | |
<!-- <dependency> <groupId>hsqldb</groupId> <artifactId>hsqldb</artifactId> | |
<version>1.8.0.10</version> </dependency> --> | |
<dependency> | |
<groupId>mysql</groupId> | |
<artifactId>mysql-connector-java</artifactId> | |
<version>5.1.26</version> | |
</dependency> | |
<dependency> | |
<groupId>log4j</groupId> | |
<artifactId>log4j</artifactId> | |
<version>1.2.16</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.poi</groupId> | |
<artifactId>poi</artifactId> | |
<version>3.6</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.poi</groupId> | |
<artifactId>poi-ooxml</artifactId> | |
<version>3.5-beta5</version> | |
</dependency> | |
<dependency> | |
<groupId>javax.mail</groupId> | |
<artifactId>mail</artifactId> | |
<version>1.4</version> | |
</dependency> | |
<dependency> | |
<groupId>velocity</groupId> | |
<artifactId>velocity-dep</artifactId> | |
<version>1.4</version> | |
</dependency> | |
<dependency> | |
<groupId>org.codehaus.jackson</groupId> | |
<artifactId>jackson-mapper-asl</artifactId> | |
<version>1.9.6</version> | |
</dependency> | |
<!-- START: Drools Libraries <dependency> <groupId>org.drools</groupId> | |
<artifactId>drools-verifier</artifactId> <version>5.4.0.Final</version> </dependency> --> | |
<!-- <dependency> <groupId>drools</groupId> <artifactId>drools-all-jdk5</artifactId> | |
<version>2.5-final</version> </dependency> <dependency> <groupId>com.google.guava</groupId> | |
<artifactId>guava</artifactId> <version>13.0.1</version> </dependency> --> | |
<dependency> | |
<groupId>com.thoughtworks.xstream</groupId> | |
<artifactId>xstream</artifactId> | |
<version>1.1</version> | |
</dependency> | |
<dependency> | |
<groupId>org.drools</groupId> | |
<artifactId>drools-decisiontables</artifactId> | |
<version>5.4.0.Final</version> | |
</dependency> | |
<!-- END: Drools Libraries --> | |
<!-- for shiro starts here --> | |
<!--<dependency> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils</artifactId> | |
<version>1.8.0</version> </dependency> <dependency> <groupId>org.apache.shiro</groupId> | |
<artifactId>shiro-core</artifactId> <version>1.2.0</version> </dependency> --> | |
<dependency> | |
<groupId>commons-dbcp</groupId> | |
<artifactId>commons-dbcp</artifactId> | |
<version>1.4</version> | |
</dependency> | |
<dependency> | |
<groupId>commons-pool</groupId> | |
<artifactId>commons-pool</artifactId> | |
<version>1.5.4</version> | |
</dependency> | |
<dependency> | |
<groupId>postgresql</groupId> | |
<artifactId>postgresql</artifactId> | |
<version>9.1-901.jdbc4</version> | |
</dependency> | |
<!-- START: spring data redis --> | |
<dependency> | |
<groupId>org.springframework.data</groupId> | |
<artifactId>spring-data-redis</artifactId> | |
<version>1.0.0.RELEASE</version> | |
<scope>compile</scope> | |
<exclusions> | |
<exclusion> | |
<artifactId>spring-beans</artifactId> | |
<groupId>org.springframework</groupId> | |
</exclusion> | |
<exclusion> | |
<artifactId>spring-core</artifactId> | |
<groupId>org.springframework</groupId> | |
</exclusion> | |
<exclusion> | |
<artifactId>spring-context-support</artifactId> | |
<groupId>org.springframework</groupId> | |
</exclusion> | |
<exclusion> | |
<artifactId>spring-tx</artifactId> | |
<groupId>org.springframework</groupId> | |
</exclusion> | |
</exclusions> | |
</dependency> | |
<dependency> | |
<groupId>redis.clients</groupId> | |
<artifactId>jedis</artifactId> | |
<version>2.0.0</version> | |
</dependency> | |
<!-- END: spring data redis --> | |
<!-- for shiro ends here --> | |
<!-- Dependency for Database credential encryption --> | |
<!-- jasypt dependency --> | |
<dependency> | |
<groupId>org.jasypt</groupId> | |
<artifactId>jasypt</artifactId> | |
<version>${org.jasypt.version}</version> | |
<scope>compile</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.jasypt</groupId> | |
<artifactId>jasypt-spring31</artifactId> | |
<version>${org.jasypt.version}</version> | |
<scope>compile</scope> | |
</dependency> | |
</dependencies> | |
<build> | |
<finalName>${pom.artifactId}</finalName> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-compiler-plugin</artifactId> | |
<version>2.3.2</version> | |
<configuration> | |
<source>1.6</source> | |
<target>1.6</target> | |
</configuration> | |
</plugin> | |
</plugins> | |
</build> | |
<repositories> | |
<repository> | |
<id>org.jboss.repository.releases</id> | |
<name>JBoss Maven Release Repository</name> | |
<url>https://repository.jboss.org/nexus/content/repositories/releases</url> | |
<snapshots> | |
<enabled>false</enabled> | |
</snapshots> | |
</repository> | |
</repositories> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment