Skip to content

Commit f181a4a

Browse files
authored
Merge branch 'main' into dependabot/gradle/org.junit-junit-bom-5.12.1
2 parents 5fa6b8c + 29efc4b commit f181a4a

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
}
77

88
group = 'com.labelzoom.api'
9-
version = '1.3.2'
9+
version = '1.3.4'
1010

1111
java {
1212
sourceCompatibility = JavaVersion.VERSION_1_8
@@ -18,7 +18,7 @@ repositories {
1818
}
1919

2020
dependencies {
21-
testImplementation 'com.fasterxml.jackson.core:jackson-databind:2.18.2'
21+
testImplementation 'com.fasterxml.jackson.core:jackson-databind:2.18.3'
2222
testImplementation platform('org.junit:junit-bom:5.12.1')
2323
testImplementation 'org.junit.jupiter:junit-jupiter'
2424
testImplementation 'org.reflections:reflections:0.10.2'

settings.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
pluginManagement {
22
plugins {
3-
id 'io.freefair.lombok' version '8.11'
3+
id 'io.freefair.lombok' version '8.13'
44
}
55
}
66

src/main/java/com/labelzoom/api/model/components/barcodes/twod/CBarcodeDataMatrix.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ public class CBarcodeDataMatrix extends A2DBarcode
2626

2727
private int quality = 0; // 0, 50, 80, 100, 140, 200
2828

29-
private int columns = 9; // 9 to 49
29+
private Integer columns; // 9 to 49
3030

31-
private int rows = 9; // 9 to 49
31+
private Integer rows; // 9 to 49
3232

3333
private int formatId = 6;
3434

src/main/java/com/labelzoom/api/model/components/barcodes/twod/CBarcodePDF417.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ public class CBarcodePDF417 extends A2DBarcode implements IBarcodeWithModuleWidt
2727

2828
private int securityLevel = 0;
2929

30-
private int columns = 1;
30+
private Integer columns;
3131

32-
private int rows = 3;
32+
private Integer rows;
3333

3434
private boolean truncateRightRow = false;
3535

0 commit comments

Comments
 (0)