This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git shortlog -e -s -n |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<plugin> | |
<artifactId>maven-antrun-plugin</artifactId> | |
<version>1.8</version> | |
<executions> | |
<execution> | |
<id>test-data-liquibase</id> | |
<configuration> | |
<target xmlns:liquibase="antlib:liquibase.integration.ant"> | |
<macrodef name="extract-data"> | |
<attribute name="output" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
new File(baseDirectory).toURI().relativize(new File(subpathItem).toURI()).getPath() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ch.qos.logback.classic.Logger root = (ch.qos.logback.classic.Logger) org.slf4j.LoggerFactory.getLogger(ch.qos.logback.classic.Logger.ROOT_LOGGER_NAME); | |
root.setLevel(ch.qos.logback.classic.Level.WARN); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
feature-styles: | |
- rules: | |
- title: raster | |
filter: ${isCoverage()=true} | |
symbolizers: | |
- raster: | |
opacity: 1.0 | |
- title: gold polygon | |
filter: ${dimension(geometry())='2'} | |
symbolizers: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MultipartFormDataInput input; | |
String param = new String(input.getFormDataPart("param", byte[].class, null), "UTF-8"); |