Skip to content

Commit

Permalink
Update to 5.29.2
Browse files Browse the repository at this point in the history
  • Loading branch information
nroduit committed Apr 17, 2023
1 parent c9744d1 commit f0871e4
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 12 deletions.
13 changes: 3 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
<artifactId>weasis-dicom-tools</artifactId>
<packaging>jar</packaging>
<name>Weasis DICOM API (based on dcm4che3)</name>
<version>5.29.0.2</version>
<version>5.29.2</version>

<properties>
<java-version>11</java-version>
<enforcer.jdk-version>[${java-version},)</enforcer.jdk-version>
<enforcer.maven-version>[3.0.5,)</enforcer.maven-version>
<dcm4che.version>5.29.0</dcm4che.version>
<dcm4che.version>5.29.2</dcm4che.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<sonar.projectKey>weasis-dicom-tools</sonar.projectKey>
Expand All @@ -40,13 +40,6 @@
<url>https://github.com/nroduit/weasis-dicom-tools</url>
</scm>

<distributionManagement>
<repository>
<id>github</id>
<name>GitHub Weasis Maven Packages</name>
<url>https://maven.pkg.github.com/nroduit/weasis-dicom-tools</url>
</repository>
</distributionManagement>
<repositories>
<repository>
<id>central</id>
Expand Down Expand Up @@ -423,7 +416,7 @@
<plugin>
<groupId>com.diffplug.spotless</groupId>
<artifactId>spotless-maven-plugin</artifactId>
<version>2.23.0</version>
<version>2.35.0</version>
<configuration>
<java>
<googleJavaFormat/>
Expand Down
8 changes: 8 additions & 0 deletions src/main/java/org/dcm4che3/tool/storescp/StoreSCP.java
Original file line number Diff line number Diff line change
Expand Up @@ -266,4 +266,12 @@ public Connection getConnection() {
public Device getDevice() {
return device;
}

public File getStorageDir() {
return storageDir;
}

public DicomProgress getProgress() {
return progress;
}
}
4 changes: 2 additions & 2 deletions src/test/java/org/dcm4che3/img/util/DicomObjectUtilTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,10 @@ public void testIsImageFrameApplicableToReferencedImageSequence() {

assertFalse(
DicomObjectUtil.isImageFrameApplicableToReferencedImageSequence(
new ArrayList<Attributes>(), Tag.ReferencedFrameNumber, "1.2.3.4.5.1.1", 1, true));
new ArrayList<>(), Tag.ReferencedFrameNumber, "1.2.3.4.5.1.1", 1, true));
assertFalse(
DicomObjectUtil.isImageFrameApplicableToReferencedImageSequence(
new ArrayList<Attributes>(), Tag.ReferencedFrameNumber, "", 3, true));
new ArrayList<>(), Tag.ReferencedFrameNumber, "", 3, true));

// Accept all when no reference
assertTrue(
Expand Down

0 comments on commit f0871e4

Please sign in to comment.