DynamoDBLocal Command Line Args
Since version 0.5 it's possible to specify extra command line arguments for DynamoDBLocal, for example:
<project>
<build>
<plugins>
<plugin>
<groupId>com.jcabi</groupId>
<artifactId>jcabi-dynamodb-maven-plugin</artifactId>
<version>0.10.1</version>
<configuration>
<port>${dynamodblocal.port}</port>
<dist>${project.build.directory}/dynamodb-dist</tgz>
<arguments>
<argument>-inMemory</argument>
<argument>-dbPath=/tmp/dynamodb-data</argument>
</arguments>
</configuration>
</plugin>
</plugins>
</build>
[...]
</project>