Skip to content

Commit

Permalink
Fixed postgres dependencies and removed unused import.
Browse files Browse the repository at this point in the history
  • Loading branch information
bimoelle committed May 15, 2020
1 parent c74a665 commit 8f67a67
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 3 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
<license.copyrightOwners>Stefan Posch, Birgit Moeller and others.</license.copyrightOwners>
<jython-shaded.version>2.7.0</jython-shaded.version>
<jython-slim.version>2.7.2</jython-slim.version>
<postgresql.version>42.2.12</postgresql.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<trakem2-transform.version>1.0.1</trakem2-transform.version>
<!-- MiToBo dependencies -->
Expand Down Expand Up @@ -406,8 +407,9 @@
<artifactId>jfreechart</artifactId>
</dependency>
<dependency>
<groupId>postgresql</groupId>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>${postgresql.version}</version>
</dependency>

<!-- Java 3D dependencies -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@
import de.unihalle.informatik.rhizoTrak.display.Treeline;
import de.unihalle.informatik.rhizoTrak.tree.ProjectThing;
import de.unihalle.informatik.rhizoTrak.utils.Utils;
import org.python.modules._systemrestart;

public class RhizoIO {
public static final String RHIZOTRAK_PROJECTFILE_EXTENSION = "rtk";
Expand Down

0 comments on commit 8f67a67

Please sign in to comment.