Skip to content

Commit 9895722

Browse files
committed
here we go again
1 parent 7686d6a commit 9895722

File tree

1 file changed

+164
-117
lines changed

1 file changed

+164
-117
lines changed

pom.xml

Lines changed: 164 additions & 117 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>technology.tabula</groupId>
44
<artifactId>tabula</artifactId>
5-
<version>0.9.1-SNAPSHOT</version>
5+
<version>0.9.0-SNAPSHOT</version>
66
<name>Tabula</name>
77
<description>Extract tables from PDF files</description>
88
<url>http://github.com/tabulapdf/tabula-java</url>
@@ -36,8 +36,8 @@
3636
<connection>scm:git:[email protected]:tabulapdf/tabula-java.git</connection>
3737
<developerConnection>scm:git:[email protected]:tabulapdf/tabula-java.git</developerConnection>
3838
<url>[email protected]:tabulapdf/tabula-java.git</url>
39-
<tag>HEAD</tag>
40-
</scm>
39+
<tag>tabula-0.9.0</tag>
40+
</scm>
4141

4242
<repositories>
4343
<repository>
@@ -78,23 +78,57 @@
7878

7979
<build>
8080
<plugins>
81-
<plugin>
82-
<groupId>org.apache.maven.plugins</groupId>
83-
<artifactId>maven-release-plugin</artifactId>
84-
<version>2.5.3</version>
85-
</plugin>
8681
<plugin>
8782
<groupId>org.sonatype.plugins</groupId>
8883
<artifactId>nexus-staging-maven-plugin</artifactId>
89-
<version>1.6.4</version>
84+
<version>1.6.3</version>
9085
<extensions>true</extensions>
9186
<configuration>
9287
<serverId>ossrh</serverId>
9388
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
94-
<stagingProfileId>40766864c3b853</stagingProfileId>
9589
<autoReleaseAfterClose>true</autoReleaseAfterClose>
9690
</configuration>
9791
</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>
98132
<plugin>
99133
<artifactId>maven-compiler-plugin</artifactId>
100134
<version>3.1</version>
@@ -110,113 +144,126 @@
110144
<manifest>
111145
<mainClass>technology.tabula.CommandLineApp</mainClass>
112146
</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>
118173
</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>
221268

222269
</project>

0 commit comments

Comments
 (0)