Skip to content

Commit bc5042b

Browse files
committed
Minor code and documentation cleanup
1 parent f546c46 commit bc5042b

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

freemarker-cli.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
@Grab(group = "org.slf4j", module = "slf4j-api", version = "1.7.21"),
2828
@Grab(group = "org.slf4j", module = "slf4j-log4j12", version = "1.7.21"),
2929
@Grab(group = "org.freemarker", module = "freemarker", version = "2.3.28"),
30-
@Grab(group = "org.apache.commons", module = "commons-csv", version = "1.5")])
30+
@Grab(group = "org.apache.commons", module = "commons-csv", version = "1.6")])
3131

3232
import com.jayway.jsonpath.DocumentContext
3333
import com.jayway.jsonpath.JsonPath

pom.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3+
34
<modelVersion>4.0.0</modelVersion>
45
<groupId>org.github.sgoeschl</groupId>
56
<artifactId>freemarker-cli</artifactId>
6-
<version>1.0.1-SNAPSHOT</version>
7+
<version>1.0.1</version>
78
<packaging>jar</packaging>
89
<name>FreeMarker CLI</name>
910
<inceptionYear>2016</inceptionYear>
11+
12+
<properties>
13+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14+
</properties>
15+
1016
<build>
1117
<plugins>
1218
<plugin>

src/main/assembly/dist.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<fileSets>
2727
<fileSet>
2828
<directory>${project.basedir}</directory>
29-
<outputDirectory>/</outputDirectory>
29+
<outputDirectory>${file.separator}</outputDirectory>
3030
<useDefaultExcludes>true</useDefaultExcludes>
3131
<excludes>
3232
<exclude>./src/**</exclude>

0 commit comments

Comments
 (0)