Skip to content

Commit 6aa281a

Browse files
authored
Merge pull request #470 from dominikl/bump_add_repo
Bump org.openmicroscopy.additional-repositories
2 parents 5750f8f + bdcbe0f commit 6aa281a

File tree

11 files changed

+22
-21
lines changed

11 files changed

+22
-21
lines changed

build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
id "org.openmicroscopy.publish"
55
id "org.openmicroscopy.distribute"
66
id "org.openmicroscopy.packager"
7-
id "org.openmicroscopy.additional-repositories" version "5.5.1"
7+
id "org.openmicroscopy.additional-repositories" version "5.7.2"
88
}
99

1010
group = "org.openmicroscopy"
@@ -37,6 +37,7 @@ dependencies {
3737
}
3838
implementation("org.apache.poi:poi:4.0.1")
3939
implementation("org.apache.commons:commons-collections4:4.3")
40+
implementation("org.apache.commons:commons-lang3:3.18.0")
4041
implementation("org.apache.httpcomponents:httpmime:4.5.7")
4142
implementation("org.apache.httpcomponents:httpclient:4.5.7")
4243
implementation("org.apache.httpcomponents:httpcomponents-client:4.5.7")

src/main/java/org/openmicroscopy/shoola/agents/fsimporter/mde/util/ExperimenterListModel.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) <2016> University of Dundee & Open Microscopy Environment.
2+
* Copyright (C) <2016-2025> University of Dundee & Open Microscopy Environment.
33
* All rights reserved.
44
*
55
* This program is free software; you can redistribute it and/or modify
@@ -26,7 +26,7 @@
2626
import javax.swing.table.DefaultTableModel;
2727
import javax.swing.table.TableColumn;
2828

29-
import org.apache.commons.lang.SerializationUtils;
29+
import org.apache.commons.lang3.SerializationUtils;
3030

3131
import ome.xml.model.Experimenter;
3232
import ome.xml.model.Objective;

src/main/java/org/openmicroscopy/shoola/agents/fsimporter/mde/util/TagData.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) <2016-2019> University of Dundee & Open Microscopy Environment.
2+
* Copyright (C) <2016-2025> University of Dundee & Open Microscopy Environment.
33
* All rights reserved.
44
*
55
* This program is free software; you can redistribute it and/or modify
@@ -23,7 +23,7 @@
2323
import ome.model.units.Unit;
2424
import ome.xml.model.Experimenter;
2525
import omero.log.LogMessage;
26-
import org.apache.commons.lang.BooleanUtils;
26+
import org.apache.commons.lang3.BooleanUtils;
2727
import org.openmicroscopy.shoola.agents.fsimporter.ImporterAgent;
2828
import org.openmicroscopy.shoola.agents.fsimporter.mde.components.ModuleController;
2929
import org.openmicroscopy.shoola.agents.fsimporter.mde.components.submodules.converter.OMEValueConverter;

src/main/java/org/openmicroscopy/shoola/agents/measurement/view/ObjectInspector.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* org.openmicroscopy.shoola.agents.measurement.view.ObjectInspector
33
*
44
*------------------------------------------------------------------------------
5-
* Copyright (C) 2006-2016 University of Dundee. All rights reserved.
5+
* Copyright (C) 2006-2025 University of Dundee. All rights reserved.
66
*
77
*
88
* This program is free software; you can redistribute it and/or modify
@@ -41,7 +41,7 @@
4141
import javax.swing.ListSelectionModel;
4242
import javax.swing.table.TableCellEditor;
4343

44-
import org.apache.commons.lang.StringUtils;
44+
import org.apache.commons.lang3.StringUtils;
4545
import org.jhotdraw.draw.AttributeKey;
4646
import org.jhotdraw.draw.TextHolderFigure;
4747
import org.openmicroscopy.shoola.agents.measurement.IconManager;

src/main/java/org/openmicroscopy/shoola/agents/metadata/editor/ChannelAcquisitionComponent.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
*------------------------------------------------------------------------------
3-
* Copyright (C) 2006-2016 University of Dundee. All rights reserved.
3+
* Copyright (C) 2006-2025 University of Dundee. All rights reserved.
44
*
55
*
66
* This program is free software; you can redistribute it and/or modify
@@ -47,7 +47,7 @@
4747
import javax.swing.JScrollPane;
4848
import javax.swing.JTable;
4949

50-
import org.apache.commons.lang.time.DateUtils;
50+
import org.apache.commons.lang3.time.DateUtils;
5151
import org.jdesktop.swingx.JXTaskPane;
5252

5353
import omero.model.AcquisitionMode;

src/main/java/org/openmicroscopy/shoola/agents/util/ui/SelectionDialog.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* org.openmicroscopy.shoola.agents.measurement.view.ROITable
33
*
44
*------------------------------------------------------------------------------
5-
* Copyright (C) 2016 University of Dundee. All rights reserved.
5+
* Copyright (C) 2016-2025 University of Dundee. All rights reserved.
66
*
77
*
88
* This program is free software; you can redistribute it and/or modify
@@ -41,7 +41,7 @@
4141
import omero.gateway.model.DataObject;
4242
import omero.gateway.model.FolderData;
4343

44-
import org.apache.commons.lang.StringUtils;
44+
import org.apache.commons.lang3.StringUtils;
4545

4646
/**
4747
* Simple dialog for selecting a {@link DataObject}

src/main/java/org/openmicroscopy/shoola/env/data/OmeroImageServiceImpl.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
*------------------------------------------------------------------------------
3-
* Copyright (C) 2006-2018 University of Dundee. All rights reserved.
3+
* Copyright (C) 2006-2025 University of Dundee. All rights reserved.
44
*
55
*
66
* This program is free software; you can redistribute it and/or modify
@@ -78,7 +78,7 @@
7878

7979
import org.apache.commons.collections4.CollectionUtils;
8080
import org.apache.commons.io.FileUtils;
81-
import org.apache.commons.lang.RandomStringUtils;
81+
import org.apache.commons.lang3.RandomStringUtils;
8282
import org.openmicroscopy.shoola.env.LookupNames;
8383
import org.openmicroscopy.shoola.env.config.Registry;
8484
import org.openmicroscopy.shoola.env.data.login.UserCredentials;

src/main/java/org/openmicroscopy/shoola/env/ui/ChannelDataListRenderer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
*------------------------------------------------------------------------------
3-
* Copyright (C) 2016 University of Dundee. All rights reserved.
3+
* Copyright (C) 2016-2025 University of Dundee. All rights reserved.
44
*
55
*
66
* This program is free software; you can redistribute it and/or modify
@@ -29,7 +29,7 @@
2929

3030
import omero.gateway.model.ChannelData;
3131

32-
import org.apache.commons.lang.StringUtils;
32+
import org.apache.commons.lang3.StringUtils;
3333
import org.openmicroscopy.shoola.env.rnd.RenderingControl;
3434
import org.openmicroscopy.shoola.util.ui.ColourIcon;
3535
import org.openmicroscopy.shoola.util.ui.UIUtilities;

src/main/java/org/openmicroscopy/shoola/util/ui/colourpicker/ColourSwatchUI.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* org.openmicroscopy.shoola.util.ui.colourpicker.ColourMenuUI
33
*
44
*------------------------------------------------------------------------------
5-
* Copyright (C) 2006-2016 University of Dundee. All rights reserved.
5+
* Copyright (C) 2006-2025 University of Dundee. All rights reserved.
66
*
77
*
88
* This program is free software; you can redistribute it and/or modify
@@ -48,7 +48,7 @@
4848
import javax.swing.event.ListSelectionListener;
4949

5050
import org.apache.commons.collections4.CollectionUtils;
51-
import org.apache.commons.lang.ArrayUtils;
51+
import org.apache.commons.lang3.ArrayUtils;
5252
import org.openmicroscopy.shoola.util.CommonsLangUtils;
5353

5454
//Third-party libraries

src/main/java/org/openmicroscopy/shoola/util/ui/colourpicker/PaintPotUI.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* org.openmicroscopy.shoola.util.ui.colourpicker.PaintPotUI
33
*
44
*------------------------------------------------------------------------------
5-
* Copyright (C) 2006-2016 University of Dundee. All rights reserved.
5+
* Copyright (C) 2006-2025 University of Dundee. All rights reserved.
66
*
77
*
88
* This program is free software; you can redistribute it and/or modify
@@ -29,7 +29,7 @@
2929
import java.beans.PropertyChangeListener;
3030
import javax.swing.JComponent;
3131

32-
import org.apache.commons.lang.StringUtils;
32+
import org.apache.commons.lang3.StringUtils;
3333

3434
import org.openmicroscopy.shoola.util.ui.PaintPot;
3535
import org.openmicroscopy.shoola.util.ui.UIUtilities;

0 commit comments

Comments
 (0)