Skip to content
Snippets Groups Projects
Unverified Commit b0388279 authored by Timm Fitschen's avatar Timm Fitschen
Browse files

MAINT: pom add executions run and run-debug

parent de28cc15
No related branches found
No related tags found
No related merge requests found
......@@ -214,23 +214,43 @@
<version>1.6.0</version>
<executions>
<execution>
<id>run</id>
<goals>
<goal>java</goal>
</goals>
<configuration>
<mainClass>caosdb.server.CaosDBServer</mainClass>
<arguments>
<argument>silent</argument>
</arguments>
<systemProperties>
<systemProperty>
<key>java.util.loggin.config.file</key>
<value>./conf/core/logging.conf</value>
</systemProperty>
</systemProperties>
</configuration>
</execution>
<execution>
<id>run-debug</id>
<goals>
<goal>java</goal>
</goals>
<configuration>
<mainClass>caosdb.server.CaosDBServer</mainClass>
<arguments>
<argument>silent</argument>
<argument>debug</argument>
</arguments>
<systemProperties>
<systemProperty>
<key>java.util.loggin.config.file</key>
<value>./conf/core/logging.conf</value>
</systemProperty>
</systemProperties>
</configuration>
</execution>
</executions>
<configuration>
<mainClass>caosdb.server.CaosDBServer</mainClass>
<arguments>
<argument>silent</argument>
</arguments>
<systemProperties>
<systemProperty>
<key>java.util.loggin.config.file</key>
<value>./conf/core/logging.conf</value>
</systemProperty>
</systemProperties>
</configuration>
</plugin>
<plugin>
<groupId>com.coveo</groupId>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment