forked from sett4/jackson-dataformat-xlsx-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
160 lines (150 loc) · 6.02 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
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>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformats-text</artifactId>
<version>2.11.0</version>
</parent>
<groupId>gov.usbr.wq</groupId>
<artifactId>jackson-dataformat-xlsx-lite</artifactId>
<version>2.11.0.1</version>
<name>Jackson-dataformat-xlsx-lite</name>
<packaging>jar</packaging>
<description>Support for writing XLSX-encoded data via Jackson
abstractions.
</description>
<url>https://github.com/sett4/jackson-dataformat-xlsx-lite</url>
<scm>
<connection>scm:git:https://github.com/sett4/jackson-dataformat-xlsx-lite.git</connection>
<developerConnection>scm:git:https://github.com/sett4/jackson-dataformat-xlsx-lite.git</developerConnection>
<url>https://github.com/sett4/jackson-dataformat-xlsx-lite</url>
</scm>
<properties>
<!-- Generate PackageVersion.java into this directory. -->
<packageVersion.dir>com/github/sett4/dataformat/xlsx</packageVersion.dir>
<packageVersion.package>${project.groupId}.dataformat.xlsx</packageVersion.package>
<osgi.private>com.github.sett4.dataformat.xlsx.impl</osgi.private>
<MAVEN_URL_SNAPSHOTS></MAVEN_URL_SNAPSHOTS>
<MAVEN_URL_RELEASES></MAVEN_URL_RELEASES>
<!-- default OSGi import ought to work -->
</properties>
<dependencies>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
</dependency>
<dependency> <!-- all components use junit for testing -->
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<!-- we do not 100% need dep here because it is transitive dependency
through databind: however, since it is needed anyway let's force
suitable version by adding direct dep
-->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-csv</artifactId>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>3.8</version>
</dependency>
<!-- and for testing -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>[24.1.1,)</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<!-- Inherited from oss-base. Generate PackageVersion.java.-->
<groupId>com.google.code.maven-replacer-plugin</groupId>
<artifactId>replacer</artifactId>
<version>1.5.3</version>
<executions>
<execution>
<id>process-packageVersion</id>
<phase>generate-sources</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<useSystemClassLoader>false</useSystemClassLoader>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.6</version>
<extensions>true</extensions>
<configuration>
<skipLocalStaging>true</skipLocalStaging>
</configuration>
</plugin>
</plugins>
</build>
<!-- do_not_remove: published-with-gradle-metadata -->
<distributionManagement>
<snapshotRepository>
<id>usbr-component</id>
<url>${MAVEN_URL_SNAPSHOTS}</url>
</snapshotRepository>
<repository>
<id>usbr-component</id>
<url>${MAVEN_URL_RELEASES}</url>
</repository>
</distributionManagement>
</project>