Last active
August 29, 2015 14:06
-
-
Save gitbricho/89ba6b1bbe6b287074f2 to your computer and use it in GitHub Desktop.
healthcare/pom.xml : properties and dependencies
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
... | |
<properties> | |
<!-- Spring / Hibernate version --> | |
<version.spring>4.1.1.RELEASE</version.spring> | |
<version.spring.data>1.7.0.RELEASE</version.spring.data> | |
<version.thymeleaf>2.1.3.RELEASE</version.thymeleaf> | |
<version.eclipselink>2.5.0</version.eclipselink> | |
<version.mysql>5.1.22</version.mysql> | |
<version.servlet>3.0.1</version.servlet> | |
<version.hibernate.validation>5.1.2.Final</version.hibernate.validation> | |
<version.jstl>1.2</version.jstl> | |
<version.sl4j>1.7.7</version.sl4j> | |
<version.logback>1.0.7</version.logback> | |
<version.junit>4.11</version.junit> | |
<version.dbunit>2.4.9</version.dbunit> | |
</properties> | |
<dependencies> | |
<dependency> | |
<groupId>org.thymeleaf</groupId> | |
<artifactId>thymeleaf</artifactId> | |
<version>${version.thymeleaf}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.thymeleaf</groupId> | |
<artifactId>thymeleaf-spring4</artifactId> | |
<version>${version.thymeleaf}</version> | |
</dependency> | |
<!-- Servlet & taglibs --> | |
<dependency> | |
<groupId>javax.servlet</groupId> | |
<artifactId>javax.servlet-api</artifactId> | |
<version>${version.servlet}</version> | |
<scope>provided</scope> | |
</dependency> | |
<dependency> | |
<groupId>javax.servlet</groupId> | |
<artifactId>jstl</artifactId> | |
<version>${version.jstl}</version> | |
</dependency> | |
<!-- JSR-330 --> | |
<dependency> | |
<groupId>javax.inject</groupId> | |
<artifactId>javax.inject</artifactId> | |
<version>1</version> | |
</dependency> | |
<!-- JSR 303 with Hibernate Validator --> | |
<dependency> | |
<groupId>javax.validation</groupId> | |
<artifactId>validation-api</artifactId> | |
<version>1.0.0.GA</version> | |
</dependency> | |
<dependency> | |
<groupId>org.hibernate</groupId> | |
<artifactId>hibernate-validator</artifactId> | |
<version>4.3.0.Final</version> | |
</dependency> | |
<!-- Spring MVC --> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-web</artifactId> | |
<version>${version.spring}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-webmvc</artifactId> | |
<version>${version.spring}</version> | |
</dependency> | |
<!-- Spring DATA --> | |
<dependency> | |
<groupId>org.springframework.data</groupId> | |
<artifactId>spring-data-jpa</artifactId> | |
<version>${version.spring.data}</version> | |
</dependency> | |
<!-- JPA : eclipselink --> | |
<dependency> | |
<groupId>org.eclipse.persistence</groupId> | |
<artifactId>eclipselink</artifactId> | |
<version>${version.eclipselink}</version> | |
</dependency> | |
<!-- MySQL JDBC Driver --> | |
<dependency> | |
<groupId>mysql</groupId> | |
<artifactId>mysql-connector-java</artifactId> | |
<version>${version.mysql}</version> | |
</dependency> | |
<!-- Apache Commons file upload --> | |
<dependency> | |
<groupId>commons-fileupload</groupId> | |
<artifactId>commons-fileupload</artifactId> | |
<version>1.2.2</version> | |
</dependency> | |
<!-- Apache Commons IO --> | |
<dependency> | |
<groupId>org.apache.commons</groupId> | |
<artifactId>commons-io</artifactId> | |
<version>1.3.2</version> | |
</dependency> | |
<!-- 動的コード生成 --> | |
<dependency> | |
<groupId>cglib</groupId> | |
<artifactId>cglib</artifactId> | |
<version>2.2.2</version> | |
</dependency> | |
<!-- 日付時間 --> | |
<dependency> | |
<groupId>joda-time</groupId> | |
<artifactId>joda-time</artifactId> | |
<version>2.5</version> | |
</dependency> | |
<!-- Jacson --> | |
<dependency> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot-starter-web</artifactId> | |
<version>1.0.0.RELEASE</version> | |
</dependency> | |
<!-- JSON --> | |
<dependency> | |
<groupId>com.googlecode.json-simple</groupId> | |
<artifactId>json-simple</artifactId> | |
<version>1.1</version> | |
</dependency> | |
<!-- Excell --> | |
<dependency> | |
<groupId>org.apache.poi</groupId> | |
<artifactId>poi</artifactId> | |
<version>3.9</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.poi</groupId> | |
<artifactId>poi-ooxml</artifactId> | |
<version>3.9</version> | |
</dependency> | |
<!-- PDF --> | |
<dependency> | |
<groupId>com.lowagie</groupId> | |
<artifactId>itext</artifactId> | |
<version>2.1.7</version> | |
</dependency> | |
<dependency> | |
<groupId>com.itextpdf</groupId> | |
<artifactId>itext-asian</artifactId> | |
<version>5.1.1</version> | |
</dependency> | |
<!-- Logger Library --> | |
... | |
<!-- Test --> | |
... | |
</dependencies> | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment