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

Improve readability of docs with some newlines

parent cb7381ee
No related branches found
No related tags found
No related merge requests found
...@@ -20,18 +20,41 @@ Usage ...@@ -20,18 +20,41 @@ Usage
<goal>start</goal> <goal>start</goal>
</goals> </goals>
<configuration> <configuration>
<port>37017</port> <!-- optional, default 27017 --> <port>37017</port>
<randomPort>true</randomPort> <!-- optional, default is false, if true allocates a random port and overrides embedmongo.port --> <!-- optional, default 27017 -->
<version>2.0.4</version> <!-- optional, default 2.2.1 -->
<databaseDirectory>/tmp/mongotest</databaseDirectory> <!-- optional, default is a new dir in java.io.tmpdir --> <randomPort>true</randomPort>
<logging>file</logging> <!-- optional (file|console|none), default console --> <!-- optional, default is false, if true allocates a random port and overrides embedmongo.port -->
<logFile>${project.build.directory}/myfile.log</logFile> <!-- optional, can be used when logging=file, default is ./embedmongo.log -->
<logFileEncoding>utf-8</logFileEncoding> <!-- optional, can be used when logging=file, default is utf-8 --> <version>2.0.4</version>
<proxyHost>myproxy.company.com</proxyHost> <!-- optional, default is none --> <!-- optional, default 2.2.1 -->
<proxyPort>8080</proxyPort> <!-- optional, default 80 -->
<proxyUser>joebloggs</proxyUser> <!-- optional, default is none --> <databaseDirectory>/tmp/mongotest</databaseDirectory>
<proxyPassword>pa55w0rd</proxyPassword> <!-- optional, default is none --> <!-- optional, default is a new dir in java.io.tmpdir -->
<bindIp>127.0.0.1</bindIp> <!-- optional, default is to listen on all interfaces -->
<logging>file</logging>
<!-- optional (file|console|none), default console -->
<logFile>${project.build.directory}/myfile.log</logFile>
<!-- optional, can be used when logging=file, default is ./embedmongo.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 -->
<proxyPassword>pa55w0rd</proxyPassword>
<!-- optional, default is none -->
<bindIp>127.0.0.1</bindIp>
<!-- optional, default is to listen on all interfaces -->
</configuration> </configuration>
</execution> </execution>
<execution> <execution>
......
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