Skip to content

Commit f1e040e

Browse files
committed
Use the current sezpoz version in the Eclipse files
We recently upgraded sezpoz to a new version (1.9-imagej) so sezpoz-1.9 is no longer downloaded by Maven. Therefore, we need to adjust all the .factorypath files. This commit was performed by: perl -pi -e 's/1.9\/sezpoz-1.9/1.9-imagej\/sezpoz-1.9-imagej/' \ $(git grep -l sezpoz-1.9) Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 4c6e102 commit f1e040e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.factorypath

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
22
<factorypath>
3-
<factorypathentry enabled="true" id="M2_REPO/net/java/sezpoz/sezpoz/1.9/sezpoz-1.9.jar" kind="VARJAR" runInBatchMode="true"/>
3+
<factorypathentry enabled="true" id="M2_REPO/net/java/sezpoz/sezpoz/1.9-imagej/sezpoz-1.9-imagej.jar" kind="VARJAR" runInBatchMode="true"/>
44
</factorypath>

log-slf4j/.factorypath

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
<factorypath>
2-
<factorypathentry kind="VARJAR" id="M2_REPO/net/java/sezpoz/sezpoz/1.9/sezpoz-1.9.jar" enabled="true" runInBatchMode="true"/>
2+
<factorypathentry kind="VARJAR" id="M2_REPO/net/java/sezpoz/sezpoz/1.9-imagej/sezpoz-1.9-imagej.jar" enabled="true" runInBatchMode="true"/>
33
</factorypath>

src/main/java/org/scijava/util/CheckSezpoz.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -556,7 +556,7 @@ protected static void fixFactoryPath(final File directory) {
556556
final Element element = xml.createElement("factorypathentry");
557557
element.setAttribute("enabled", "true");
558558
element.setAttribute("id",
559-
"M2_REPO/net/java/sezpoz/sezpoz/1.9/sezpoz-1.9.jar");
559+
"M2_REPO/net/java/sezpoz/sezpoz/1.9-imagej/sezpoz-1.9-imagej.jar");
560560
element.setAttribute("kind", "VARJAR");
561561
element.setAttribute("runInBatchMode", "true");
562562
xml.getDocumentElement().appendChild(element);

0 commit comments

Comments
 (0)