|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | + ~ Copyright 2006-2014 the original author or authors. |
| 4 | + ~ |
| 5 | + ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | + ~ you may not use this file except in compliance with the License. |
| 7 | + ~ You may obtain a copy of the License at |
| 8 | + ~ |
| 9 | + ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | + ~ |
| 11 | + ~ Unless required by applicable law or agreed to in writing, software |
| 12 | + ~ distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | + ~ See the License for the specific language governing permissions and |
| 15 | + ~ limitations under the License. |
| 16 | + --> |
| 17 | + |
| 18 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 19 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 20 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 21 | + <modelVersion>4.0.0</modelVersion> |
| 22 | + |
| 23 | + <groupId>org.springframework.batch</groupId> |
| 24 | + <artifactId>spring-batch-excel</artifactId> |
| 25 | + <version>0.5.0-SNAPSHOT</version> |
| 26 | + |
| 27 | + <properties> |
| 28 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 29 | + <spring.batch.version>3.0.3.RELEASE</spring.batch.version> |
| 30 | + <jxl.version>2.6.12</jxl.version> |
| 31 | + <poi.version>3.11</poi.version> |
| 32 | + </properties> |
| 33 | + |
| 34 | + <dependencies> |
| 35 | + <dependency> |
| 36 | + <groupId>org.springframework.batch</groupId> |
| 37 | + <artifactId>spring-batch-core</artifactId> |
| 38 | + <version>${spring.batch.version}</version> |
| 39 | + </dependency> |
| 40 | + <dependency> |
| 41 | + <groupId>org.springframework.batch</groupId> |
| 42 | + <artifactId>spring-batch-infrastructure</artifactId> |
| 43 | + <version>${spring.batch.version}</version> |
| 44 | + </dependency> |
| 45 | + <dependency> |
| 46 | + <groupId>net.sourceforge.jexcelapi</groupId> |
| 47 | + <artifactId>jxl</artifactId> |
| 48 | + <version>${jxl.version}</version> |
| 49 | + <optional>true</optional> |
| 50 | + </dependency> |
| 51 | + <dependency> |
| 52 | + <groupId>org.apache.poi</groupId> |
| 53 | + <artifactId>poi</artifactId> |
| 54 | + <version>${poi.version}</version> |
| 55 | + <optional>true</optional> |
| 56 | + </dependency> |
| 57 | + <dependency> |
| 58 | + <groupId>org.apache.poi</groupId> |
| 59 | + <artifactId>poi-ooxml</artifactId> |
| 60 | + <version>${poi.version}</version> |
| 61 | + <optional>true</optional> |
| 62 | + </dependency> |
| 63 | + |
| 64 | + <!-- Test Dependencies --> |
| 65 | + <dependency> |
| 66 | + <groupId>junit</groupId> |
| 67 | + <artifactId>junit</artifactId> |
| 68 | + <version>4.12</version> |
| 69 | + <scope>test</scope> |
| 70 | + </dependency> |
| 71 | + <dependency> |
| 72 | + <groupId>org.mockito</groupId> |
| 73 | + <artifactId>mockito-core</artifactId> |
| 74 | + <version>1.10.19</version> |
| 75 | + <scope>test</scope> |
| 76 | + </dependency> |
| 77 | + <dependency> |
| 78 | + <groupId>org.springframework</groupId> |
| 79 | + <artifactId>spring-test</artifactId> |
| 80 | + <version>4.0.5.RELEASE</version> |
| 81 | + <scope>test</scope> |
| 82 | + </dependency> |
| 83 | + </dependencies> |
| 84 | + |
| 85 | + <build> |
| 86 | + <plugins> |
| 87 | + <plugin> |
| 88 | + <groupId>org.apache.maven.plugins</groupId> |
| 89 | + <artifactId>maven-compiler-plugin</artifactId> |
| 90 | + <version>3.2</version> |
| 91 | + <configuration> |
| 92 | + <source>1.6</source> |
| 93 | + <target>1.6</target> |
| 94 | + </configuration> |
| 95 | + </plugin> |
| 96 | + <plugin> |
| 97 | + <groupId>org.apache.maven.plugins</groupId> |
| 98 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 99 | + <version>2.10.1</version> |
| 100 | + <executions> |
| 101 | + <execution> |
| 102 | + <id>attach-javadocs</id> |
| 103 | + <goals> |
| 104 | + <goal>jar</goal> |
| 105 | + </goals> |
| 106 | + </execution> |
| 107 | + </executions> |
| 108 | + </plugin> |
| 109 | + <plugin> |
| 110 | + <groupId>org.apache.maven.plugins</groupId> |
| 111 | + <artifactId>maven-source-plugin</artifactId> |
| 112 | + <version>2.4</version> |
| 113 | + <executions> |
| 114 | + <execution> |
| 115 | + <id>attach-sources</id> |
| 116 | + <goals> |
| 117 | + <goal>jar</goal> |
| 118 | + </goals> |
| 119 | + </execution> |
| 120 | + </executions> |
| 121 | + </plugin> |
| 122 | + </plugins> |
| 123 | + </build> |
| 124 | + |
| 125 | +</project> |
0 commit comments