Bump kemitix-maven-tiles from 1.3.1 to 2.2.0 (#44)
* Bump kemitix-maven-tiles from 1.3.1 to 2.1.3 Remove unused throws Exception to comply with new spotbugs rules. * [changelog] updated * Remove redundant pom property * Bump kemitix-maven-tiles from 2.1.3 to 2.2.0 * [changelog] updated
This commit is contained in:
parent
d9f1b22b2f
commit
c4e8ad4117
4 changed files with 5 additions and 6 deletions
|
@ -26,7 +26,7 @@ The format is based on [[https://keepachangelog.com/en/1.0.0/][Keep a Changelog]
|
||||||
** Dependencies
|
** Dependencies
|
||||||
|
|
||||||
- Bump assertj-core from 3.11.0 to 3.11.1 (#38)
|
- Bump assertj-core from 3.11.0 to 3.11.1 (#38)
|
||||||
- Bump kemitix-maven-tiles from 0.9.0 to 1.3.1 (#40)
|
- Bump kemitix-maven-tiles from 0.9.0 to 2.2.0 (#40)(#44)
|
||||||
- Bump kemitix-parent from 5.1.1 to 5.2.0 (#39)
|
- Bump kemitix-parent from 5.1.1 to 5.2.0 (#39)
|
||||||
|
|
||||||
* 0.7.0
|
* 0.7.0
|
||||||
|
|
3
pom.xml
3
pom.xml
|
@ -17,9 +17,8 @@
|
||||||
<kemitix-checkstyle.version>4.1.1</kemitix-checkstyle.version>
|
<kemitix-checkstyle.version>4.1.1</kemitix-checkstyle.version>
|
||||||
<junit.version>4.12</junit.version>
|
<junit.version>4.12</junit.version>
|
||||||
<assertj.version>3.11.1</assertj.version>
|
<assertj.version>3.11.1</assertj.version>
|
||||||
<coveralls-maven-plugin.version>4.3.0</coveralls-maven-plugin.version>
|
|
||||||
<tiles-maven-plugin.version>2.12</tiles-maven-plugin.version>
|
<tiles-maven-plugin.version>2.12</tiles-maven-plugin.version>
|
||||||
<kemitix-maven-tiles.version>1.3.1</kemitix-maven-tiles.version>
|
<kemitix-maven-tiles.version>2.2.0</kemitix-maven-tiles.version>
|
||||||
<lombok.version>1.18.4</lombok.version>
|
<lombok.version>1.18.4</lombok.version>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
|
|
|
@ -59,7 +59,7 @@ final class FalseCondition implements Condition {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void thenThrow(final Supplier<Exception> exceptionSupplier) throws Exception {
|
public void thenThrow(final Supplier<Exception> exceptionSupplier) {
|
||||||
// do nothing
|
// do nothing
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -65,12 +65,12 @@ final class TrueCondition implements Condition {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void otherwiseThrow(final Exception exception) throws Exception {
|
public void otherwiseThrow(final Exception exception) {
|
||||||
// do nothing
|
// do nothing
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void otherwiseThrow(final Supplier<Exception> exceptionSupplier) throws Exception {
|
public void otherwiseThrow(final Supplier<Exception> exceptionSupplier) {
|
||||||
// do nothing
|
// do nothing
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue