From b6cd68321a4c990dd0c9007dd0ff454d694a2fa0 Mon Sep 17 00:00:00 2001
From: Curtis Rueden <ctrueden@wisc.edu>
Date: Mon, 17 Jun 2019 18:58:30 -0500
Subject: [PATCH] Fix the build

This pins to old bigdataviewer-core and imglib2 versions.
The proper fix will be to update to the latest versions,
so that this component can continue to work with Fiji etc.
---
 pom.xml | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index d1bbb71..a61c695 100644
--- a/pom.xml
+++ b/pom.xml
@@ -82,6 +82,13 @@
 
 		<!-- NB: Deploy releases to the SciJava Maven repository. -->
 		<releaseProfiles>deploy-to-scijava</releaseProfiles>
+
+		<commons-cli.version>1.2</commons-cli.version>
+		<stringtemplate.version>3.2.1</stringtemplate.version>
+
+		<!-- TODO: Remove these version pins and update the code. -->
+		<bigdataviewer-core.version>3.0.3</bigdataviewer-core.version>
+		<imglib2.version>3.3.0</imglib2.version>
 	</properties>
 
 	<repositories>
@@ -103,12 +110,12 @@
 		<dependency>
 			<groupId>org.antlr</groupId>
 			<artifactId>stringtemplate</artifactId>
-			<version>3.2.1</version>
+			<version>${stringtemplate.version}</version>
 		</dependency>
 		<dependency>
 			<groupId>commons-cli</groupId>
 			<artifactId>commons-cli</artifactId>
-			<version>1.2</version>
+			<version>${commons-cli.version}</version>
 		</dependency>
 	</dependencies>
 </project>
-- 
GitLab