|
2 | 2 | <modelVersion>4.0.0</modelVersion> |
3 | 3 | <groupId>technology.tabula</groupId> |
4 | 4 | <artifactId>tabula</artifactId> |
5 | | - <version>0.9.1-SNAPSHOT</version> |
| 5 | + <version>0.9.0-SNAPSHOT</version> |
6 | 6 | <name>Tabula</name> |
7 | 7 | <description>Extract tables from PDF files</description> |
8 | 8 | <url>http://github.com/tabulapdf/tabula-java</url> |
|
36 | 36 | < connection>scm:git: [email protected]:tabulapdf/tabula-java.git</ connection> |
37 | 37 | < developerConnection>scm:git: [email protected]:tabulapdf/tabula-java.git</ developerConnection> |
38 | 38 | < url> [email protected]:tabulapdf/tabula-java.git</ url> |
39 | | - <tag>HEAD</tag> |
40 | | - </scm> |
| 39 | + <tag>tabula-0.9.0</tag> |
| 40 | + </scm> |
41 | 41 |
|
42 | 42 | <repositories> |
43 | 43 | <repository> |
|
78 | 78 |
|
79 | 79 | <build> |
80 | 80 | <plugins> |
81 | | - <plugin> |
82 | | - <groupId>org.apache.maven.plugins</groupId> |
83 | | - <artifactId>maven-release-plugin</artifactId> |
84 | | - <version>2.5.3</version> |
85 | | - </plugin> |
86 | 81 | <plugin> |
87 | 82 | <groupId>org.sonatype.plugins</groupId> |
88 | 83 | <artifactId>nexus-staging-maven-plugin</artifactId> |
89 | | - <version>1.6.4</version> |
| 84 | + <version>1.6.3</version> |
90 | 85 | <extensions>true</extensions> |
91 | 86 | <configuration> |
92 | 87 | <serverId>ossrh</serverId> |
93 | 88 | <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
94 | | - <stagingProfileId>40766864c3b853</stagingProfileId> |
95 | 89 | <autoReleaseAfterClose>true</autoReleaseAfterClose> |
96 | 90 | </configuration> |
97 | 91 | </plugin> |
| 92 | + <plugin> |
| 93 | + <groupId>org.apache.maven.plugins</groupId> |
| 94 | + <artifactId>maven-source-plugin</artifactId> |
| 95 | + <version>2.2.1</version> |
| 96 | + <executions> |
| 97 | + <execution> |
| 98 | + <id>attach-sources</id> |
| 99 | + <goals> |
| 100 | + <goal>jar-no-fork</goal> |
| 101 | + </goals> |
| 102 | + </execution> |
| 103 | + </executions> |
| 104 | + </plugin> |
| 105 | + <plugin> |
| 106 | + <groupId>org.apache.maven.plugins</groupId> |
| 107 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 108 | + <version>2.9.1</version> |
| 109 | + <executions> |
| 110 | + <execution> |
| 111 | + <id>attach-javadocs</id> |
| 112 | + <goals> |
| 113 | + <goal>jar</goal> |
| 114 | + </goals> |
| 115 | + </execution> |
| 116 | + </executions> |
| 117 | + </plugin> |
| 118 | + <plugin> |
| 119 | + <groupId>org.apache.maven.plugins</groupId> |
| 120 | + <artifactId>maven-gpg-plugin</artifactId> |
| 121 | + <version>1.5</version> |
| 122 | + <executions> |
| 123 | + <execution> |
| 124 | + <id>sign-artifacts</id> |
| 125 | + <phase>verify</phase> |
| 126 | + <goals> |
| 127 | + <goal>sign</goal> |
| 128 | + </goals> |
| 129 | + </execution> |
| 130 | + </executions> |
| 131 | + </plugin> |
98 | 132 | <plugin> |
99 | 133 | <artifactId>maven-compiler-plugin</artifactId> |
100 | 134 | <version>3.1</version> |
|
110 | 144 | <manifest> |
111 | 145 | <mainClass>technology.tabula.CommandLineApp</mainClass> |
112 | 146 | </manifest> |
113 | | - </archive> |
114 | | - <descriptorRefs> |
115 | | - <descriptorRef>jar-with-dependencies</descriptorRef> |
116 | | - </descriptorRefs> |
117 | | - </configuration> |
| 147 | + </archive> |
| 148 | + <descriptorRefs> |
| 149 | + <descriptorRef>jar-with-dependencies</descriptorRef> |
| 150 | + </descriptorRefs> |
| 151 | + </configuration> |
| 152 | + </plugin> |
| 153 | + </plugins> |
| 154 | +</build> |
| 155 | + |
| 156 | +<profiles> |
| 157 | + <profile> |
| 158 | + <id>release</id> |
| 159 | + <build> |
| 160 | + <plugins> |
| 161 | + <plugin> |
| 162 | + <groupId>org.apache.maven.plugins</groupId> |
| 163 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 164 | + <version>2.9.1</version> |
| 165 | + <executions> |
| 166 | + <execution> |
| 167 | + <id>attach-javadocs</id> |
| 168 | + <goals> |
| 169 | + <goal>jar</goal> |
| 170 | + </goals> |
| 171 | + </execution> |
| 172 | + </executions> |
118 | 173 | </plugin> |
119 | | - </plugins> |
120 | | - </build> |
121 | | - |
122 | | - <profiles> |
123 | | - <profile> |
124 | | - <id>release</id> |
125 | | - <build> |
126 | | - <plugins> |
127 | | - <plugin> |
128 | | - <groupId>org.apache.maven.plugins</groupId> |
129 | | - <artifactId>maven-source-plugin</artifactId> |
130 | | - <version>2.2.1</version> |
131 | | - <executions> |
132 | | - <execution> |
133 | | - <id>attach-sources</id> |
134 | | - <goals> |
135 | | - <goal>jar-no-fork</goal> |
136 | | - </goals> |
137 | | - </execution> |
138 | | - </executions> |
139 | | - </plugin> |
140 | | - <plugin> |
141 | | - <groupId>org.apache.maven.plugins</groupId> |
142 | | - <artifactId>maven-gpg-plugin</artifactId> |
143 | | - <version>1.5</version> |
144 | | - <executions> |
145 | | - <execution> |
146 | | - <id>sign-artifacts</id> |
147 | | - <phase>verify</phase> |
148 | | - <goals> |
149 | | - <goal>sign</goal> |
150 | | - </goals> |
151 | | - </execution> |
152 | | - </executions> |
153 | | - </plugin> |
154 | | - </plugins> |
155 | | - </build> |
156 | | - </profile> |
157 | | - </profiles> |
158 | | - |
159 | | - <dependencies> |
160 | | - <dependency> |
161 | | - <groupId>net.sf.jsi</groupId> |
162 | | - <artifactId>jsi</artifactId> |
163 | | - <version>1.1.0-SNAPSHOT</version> |
164 | | - </dependency> |
165 | | - |
166 | | - <dependency> |
167 | | - <groupId>org.slf4j</groupId> |
168 | | - <artifactId>slf4j-api</artifactId> |
169 | | - <version>1.6.4</version> |
170 | | - </dependency> |
171 | | - |
172 | | - <dependency> |
173 | | - <groupId>org.slf4j</groupId> |
174 | | - <artifactId>slf4j-simple</artifactId> |
175 | | - <version>1.6.4</version> |
176 | | - </dependency> |
177 | | - |
178 | | - <dependency> |
179 | | - <groupId>org.apache.pdfbox</groupId> |
180 | | - <artifactId>pdfbox</artifactId> |
181 | | - <version>1.8.10</version> |
182 | | - </dependency> |
183 | | - |
184 | | - <dependency> |
185 | | - <groupId>org.bouncycastle</groupId> |
186 | | - <artifactId>bcprov-jdk15</artifactId> |
187 | | - <version>1.44</version> |
188 | | - </dependency> |
189 | | - |
190 | | - <dependency> |
191 | | - <groupId>org.bouncycastle</groupId> |
192 | | - <artifactId>bcmail-jdk15</artifactId> |
193 | | - <version>1.44</version> |
194 | | - </dependency> |
195 | | - |
196 | | - <dependency> |
197 | | - <groupId>junit</groupId> |
198 | | - <artifactId>junit</artifactId> |
199 | | - <version>4.11</version> |
200 | | - <scope>test</scope> |
201 | | - </dependency> |
202 | | - |
203 | | - <dependency> |
204 | | - <groupId>commons-cli</groupId> |
205 | | - <artifactId>commons-cli</artifactId> |
206 | | - <version>1.2</version> |
207 | | - </dependency> |
208 | | - |
209 | | - <dependency> |
210 | | - <groupId>org.apache.commons</groupId> |
211 | | - <artifactId>commons-csv</artifactId> |
212 | | - <version>1.0</version> |
213 | | - </dependency> |
214 | | - |
215 | | - <dependency> |
216 | | - <groupId>com.google.code.gson</groupId> |
217 | | - <artifactId>gson</artifactId> |
218 | | - <version>2.2.4</version> |
219 | | - </dependency> |
220 | | - </dependencies> |
| 174 | + <plugin> |
| 175 | + <groupId>org.apache.maven.plugins</groupId> |
| 176 | + <artifactId>maven-source-plugin</artifactId> |
| 177 | + <version>2.2.1</version> |
| 178 | + <executions> |
| 179 | + <execution> |
| 180 | + <id>attach-sources</id> |
| 181 | + <goals> |
| 182 | + <goal>jar-no-fork</goal> |
| 183 | + </goals> |
| 184 | + </execution> |
| 185 | + </executions> |
| 186 | + </plugin> |
| 187 | + <plugin> |
| 188 | + <groupId>org.apache.maven.plugins</groupId> |
| 189 | + <artifactId>maven-gpg-plugin</artifactId> |
| 190 | + <version>1.5</version> |
| 191 | + <executions> |
| 192 | + <execution> |
| 193 | + <id>sign-artifacts</id> |
| 194 | + <phase>verify</phase> |
| 195 | + <goals> |
| 196 | + <goal>sign</goal> |
| 197 | + </goals> |
| 198 | + </execution> |
| 199 | + </executions> |
| 200 | + </plugin> |
| 201 | + </plugins> |
| 202 | + </build> |
| 203 | + </profile> |
| 204 | +</profiles> |
| 205 | + |
| 206 | +<dependencies> |
| 207 | + <dependency> |
| 208 | + <groupId>net.sf.jsi</groupId> |
| 209 | + <artifactId>jsi</artifactId> |
| 210 | + <version>1.1.0-SNAPSHOT</version> |
| 211 | + </dependency> |
| 212 | + |
| 213 | + <dependency> |
| 214 | + <groupId>org.slf4j</groupId> |
| 215 | + <artifactId>slf4j-api</artifactId> |
| 216 | + <version>1.6.4</version> |
| 217 | + </dependency> |
| 218 | + |
| 219 | + <dependency> |
| 220 | + <groupId>org.slf4j</groupId> |
| 221 | + <artifactId>slf4j-simple</artifactId> |
| 222 | + <version>1.6.4</version> |
| 223 | + </dependency> |
| 224 | + |
| 225 | + <dependency> |
| 226 | + <groupId>org.apache.pdfbox</groupId> |
| 227 | + <artifactId>pdfbox</artifactId> |
| 228 | + <version>1.8.10</version> |
| 229 | + </dependency> |
| 230 | + |
| 231 | + <dependency> |
| 232 | + <groupId>org.bouncycastle</groupId> |
| 233 | + <artifactId>bcprov-jdk15</artifactId> |
| 234 | + <version>1.44</version> |
| 235 | + </dependency> |
| 236 | + |
| 237 | + <dependency> |
| 238 | + <groupId>org.bouncycastle</groupId> |
| 239 | + <artifactId>bcmail-jdk15</artifactId> |
| 240 | + <version>1.44</version> |
| 241 | + </dependency> |
| 242 | + |
| 243 | + <dependency> |
| 244 | + <groupId>junit</groupId> |
| 245 | + <artifactId>junit</artifactId> |
| 246 | + <version>4.11</version> |
| 247 | + <scope>test</scope> |
| 248 | + </dependency> |
| 249 | + |
| 250 | + <dependency> |
| 251 | + <groupId>commons-cli</groupId> |
| 252 | + <artifactId>commons-cli</artifactId> |
| 253 | + <version>1.2</version> |
| 254 | + </dependency> |
| 255 | + |
| 256 | + <dependency> |
| 257 | + <groupId>org.apache.commons</groupId> |
| 258 | + <artifactId>commons-csv</artifactId> |
| 259 | + <version>1.0</version> |
| 260 | + </dependency> |
| 261 | + |
| 262 | + <dependency> |
| 263 | + <groupId>com.google.code.gson</groupId> |
| 264 | + <artifactId>gson</artifactId> |
| 265 | + <version>2.2.4</version> |
| 266 | + </dependency> |
| 267 | +</dependencies> |
221 | 268 |
|
222 | 269 | </project> |
0 commit comments