Skip to content

Commit 164e85f

Browse files
Merge pull request #66 from qbicsoftware/development
Release to upgrade to OMERO v5.6
2 parents d9daee7 + a35d536 commit 164e85f

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

pom.xml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,8 @@
193193
<dependency>
194194
<groupId>life.qbic</groupId>
195195
<artifactId>omero-client-lib</artifactId>
196-
<version>1.2.0</version>
196+
<version>1.3.1</version>
197+
197198
<exclusions>
198199
<exclusion>
199200
<groupId>org.slf4j</groupId>
@@ -208,6 +209,7 @@
208209
<artifactId>jcl-over-slf4j</artifactId>
209210
</exclusion>
210211
</exclusions>
212+
211213
</dependency>
212214
</dependencies>
213215
<build>

src/main/java/life/qbic/portal/portlet/ProjectWizardUI.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ private void initView(final DBManager dbm, final Vocabularies vocabularies, fina
200200
try {
201201
int omeroPort = Integer.parseInt(config.getOmeroPort());
202202
omero = new BasicOMEROClient(config.getOmeroUser(), config.getOmeroPassword(),
203-
config.getOmeroHostname(), omeroPort);
203+
config.getOmeroHostname(), omeroPort, "default");
204204
} catch (NumberFormatException | NullPointerException e) {
205205
logger.warn("Omero port could not be parsed form the configuration file.");
206206
}

0 commit comments

Comments
 (0)