forked from jeevatkm/excelReader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
executable file
·117 lines (113 loc) · 4.4 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<?xml version="1.0" encoding="UTF-8"?>
<!--
Title : Generic Excel File(XLSX) Reader Library
Copyright : (c) myjeeva.com
@filename : pom.xml
@author : <a href="jeeva@myjeeva.com">Jeevanandam M.</a>
@date : Nov 08, 2012 11:15:34 PM GMT+05:30
-->
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>com.myjeeva.poi</groupId>
<artifactId>excelReader</artifactId>
<packaging>jar</packaging>
<name>Generic Excel File (XLSX) Reader</name>
<version>1.3-SNAPSHOT</version>
<description>Project of Generic Excel File Reader with Sample</description>
<url>http://myjeeva.com</url>
<licenses>
<license>
<name>The MIT License (MIT)</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:jeevatkm/excelReader.git</connection>
<developerConnection>scm:git:git@github.com:jeevatkm/excelReader.git</developerConnection>
<url>git@github.com:jeevatkm/excelReader.git</url>
</scm>
<developers>
<developer>
<id>jeevatkm</id>
<name>Jeevanandam M.</name>
<email>jeeva@myjeeva.com</email>
<url>http://myjeeva.com</url>
</developer>
</developers>
<properties>
<javadoc.output.basepath>${basedir}/javadoc/docs</javadoc.output.basepath>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<!-- Dependencies -->
<dependencies>
<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>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.1.1</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.4</version>
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<version>1.7.0</version>
</dependency>
</dependencies>
<build>
<defaultGoal>install</defaultGoal>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
<fork>false</fork>
<compilerArguments>
<Xmaxerrs>1000</Xmaxerrs>
</compilerArguments>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9</version>
<configuration>
<doctitle>${project.name}(${project.version})</doctitle>
<validateLinks>true</validateLinks>
<detectLinks>true</detectLinks>
<charset>UTF-8</charset>
<header>${project.name}</header>
<bottom><![CDATA[<div class="license-info">Copyright © <a href="http://myjeeva.com" target="_blank">myjeeva.com</a>, All rights reserved. <br /><br /><span>The copyright of the pages and contents on this website is with myjeeva.com and the content is licensed under <a href="http://creativecommons.org/licenses/by-sa/3.0/" target="_blank">Creative Commons Attribution-Share Alike 3.0 Unported License</a>. Libraries and code snippets on myjeeva.com has license information.</span></div>]]> </bottom>
<footer>${project.name}</footer>
<stylesheetfile>${basedir}/javadoc/stylesheets/stylesheet.css</stylesheetfile>
<docfilessubdirs>true</docfilessubdirs>
<verbose>true</verbose>
<reportOutputDirectory>${javadoc.output.basepath}</reportOutputDirectory>
<destDir>${project.version}</destDir>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>