Skip to content
Snippets Groups Projects
Commit 9e2afb96 authored by Joe Littlejohn's avatar Joe Littlejohn
Browse files

Docs for #16 (logFile, logFileEncoding)

parent efa43cd0
No related branches found
No related tags found
No related merge requests found
# embedmongo-maven-plugin Changelog
## 0.1.7
* Add `logFile`/`logFileEncoding` configuration options (thanks @matthewadams)
## 0.1.6
* Add `proxyUser`/`proxyPassword` configuration options
......
......@@ -12,7 +12,7 @@ Usage
<plugin>
<groupId>com.github.joelittlejohn.embedmongo</groupId>
<artifactId>embedmongo-maven-plugin</artifactId>
<version>0.1.6</version>
<version>0.1.7</version>
<executions>
<execution>
<id>start</id>
......@@ -24,6 +24,8 @@ Usage
<version>2.0.4</version> <!-- optional, default 2.2.1 -->
<databaseDirectory>/tmp/mongotest</databaseDirectory> <!-- optional, default is a new dir in java.io.tmpdir -->
<logging>file</logging> <!-- optional (file|console|none), default console -->
<logFile>myfile.log</logFile> <!-- optional, can be used when logging=file, default is embongo.log -->
<logFileEncoding>utf-8</logFileEncoding> <!-- optional, can be used when logging=file, default is utf-8 -->
<proxyHost>myproxy.company.com</proxyHost> <!-- optional, default is none -->
<proxyPort>8080</proxyPort> <!-- optional, default 80 -->
<proxyUser>joebloggs</proxyUser> <!-- optional, default is none -->
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment