From cb9277678a63b58c6f0775a1b4ad0cea8eb2a5c4 Mon Sep 17 00:00:00 2001
From: Joe Littlejohn <joelittlejohn@gmail.com>
Date: Fri, 3 Aug 2012 22:46:43 +0100
Subject: [PATCH] Update docs to latest release version
---
README.md | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index aa5dec8..c22b5bb 100644
--- a/README.md
+++ b/README.md
@@ -12,7 +12,7 @@ Usage
<plugin>
<groupId>com.github.joelittlejohn.embedmongo</groupId>
<artifactId>embedmongo-maven-plugin</artifactId>
- <version>0.1.2</version>
+ <version>0.1.3</version>
<executions>
<execution>
<id>start</id>
@@ -23,7 +23,7 @@ Usage
<port>37017</port> <!-- optional, default 27017 -->
<version>2.0.4</version> <!-- optional, default 2.1.1 -->
<databaseDirectory>/tmp/mongotest</databaseDirectory> <!-- optional, default is a new dir in java.io.tmpdir -->
- <logging>file</logging> <!-- optional (file|console|none), default console-->
+ <logging>file</logging> <!-- optional (file|console|none), default console -->
<proxyHost>myproxy.company.com</proxyHost> <!-- optional, default is none -->
<proxyPort>8080</proxyPort> <!-- optional, default 80 -->
</configuration>
@@ -45,3 +45,4 @@ Notes
* If you omit/forget the `stop` goal, any Mongo process spawned by the `start` goal will be stopped when the JVM terminates.
* If you want to run many Maven builds in parallel using Jenkins, try the [Port Allocator Plugin](https://wiki.jenkins-ci.org/display/JENKINS/Port+Allocator+Plugin) to avoid port conflicts.
* If you need to use a proxy to download MongoDB then you can either use `-Dhttp.proxyHost` and `-Dhttp.proxyPort` as additional Maven arguments (this will affect the entire build) or instruct the plugin to use a proxy when downloading Mongo by adding the `proxyHost` and `proxyPort` configuration properties.
+* Using the `file` logging mode results in a new log file created at `./embedmongo.log`
--
GitLab