You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
@@ -25,18 +25,10 @@ In your Maven/Gradle project, first add the corresponding dependency:
25
25
<dependency>
26
26
<groupId>com.github.ozlerhakan</groupId>
27
27
<artifactId>poiji</artifactId>
28
-
<version>3.2.0</version>
28
+
<version>4.0.0</version>
29
29
</dependency>
30
30
----
31
31
32
-
.gradle
33
-
[source,groovy]
34
-
----
35
-
dependencies {
36
-
compile 'com.github.ozlerhakan:poiji:3.2.0'
37
-
}
38
-
----
39
-
40
32
You can find the latest and earlier development versions including javadoc and source files on https://oss.sonatype.org/content/groups/public/com/github/ozlerhakan/poiji/[Sonatypes OSS repository].
41
33
42
34
== Usage
@@ -615,7 +607,7 @@ Note that If you use the `PoijiOptionsBuilder#caseInsensitive(true)` option, the
615
607
616
608
=== Optional Mandatory Headers and Cells
617
609
618
-
As of3.2.0, `@ExcelCellName` and `@ExcelCell` are given to provide `mandatoryHeader` and `mandatoryCell` fields, meaning we can be more specific by declaring rules in headers or cells or both in excel files. `mandatoryHeader` expects the labeled excel column exists in a given excel file, while `mandatoryCell` looks into the values of the mentioned header/column. If any of the options is active and your excel breaks the rule, either a `HeaderMissingException` or `PoijiMultiRowException` will be thrown accordingly.
610
+
As of4.0.0, `@ExcelCellName` and `@ExcelCell` are given to provide `mandatoryHeader` and `mandatoryCell` fields, meaning we can be more specific by declaring rules in headers or cells or both in excel files. `mandatoryHeader` expects the labeled excel column exists in a given excel file, while `mandatoryCell` looks into the values of the mentioned header/column. If any of the options is active and your excel breaks the rule, either a `HeaderMissingException` or `PoijiMultiRowException` will be thrown accordingly.