Details
-
Bug
-
Status: Closed
-
Blocker
-
Resolution: Fixed
-
None
-
None
Description
Seems the code was modernized to use java.util.regex but the Maven POM file was
not updated at the time.
A simple SVN patch is here:
Index: /home/ian/workspace/bcel/pom.xml
===================================================================
— /home/ian/workspace/bcel/pom.xml (revision 516101)
+++ /home/ian/workspace/bcel/pom.xml (working copy)
@@ -170,11 +170,6 @@
<dependencies>
<dependency>
- <groupId>jakarta-regexp</groupId>
- <artifactId>jakarta-regexp</artifactId>
- <version>1.4</version>
- </dependency>
- <dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
Given that the only external dependency is now junit3.8 which everybody has a
copy of, one could switch from Maven to Ant and avoid the dependency on Maven,
but that's rather a different story