Skip to content

Commit

Permalink
Clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
lwj5 committed Oct 10, 2019
1 parent 9d41e15 commit 798c6c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 19 deletions.
19 changes: 1 addition & 18 deletions pom.xml
Expand Up @@ -16,7 +16,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.0</version>
<version>3.8.1</version>
<configuration>
<source>8</source>
<target>8</target>
Expand All @@ -26,23 +26,6 @@
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<minimizeJar>false</minimizeJar>
<finalName>${project.artifactId}-${project.version}-jar-with-dependencies</finalName>
</configuration>
</execution>
</executions>
</plugin>
</plugins>

<resources>
Expand Down
Expand Up @@ -118,7 +118,7 @@ public static void main(String[] args) throws Exception {
final List<Paper> papers = new ArrayList<>();

// try-with block automatically closes the crawler upon completion.
try (final Crawler crawler = null) {
try (Crawler crawler = null) {

}

Expand Down

0 comments on commit 798c6c0

Please sign in to comment.