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,15 +214,33 @@ ...@@ -214,15 +214,33 @@
<version>1.6.0</version> <version>1.6.0</version>
<executions> <executions>
<execution> <execution>
<id>run</id>
<goals> <goals>
<goal>java</goal> <goal>java</goal>
</goals> </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>
</executions> <execution>
<id>run-debug</id>
<goals>
<goal>java</goal>
</goals>
<configuration> <configuration>
<mainClass>caosdb.server.CaosDBServer</mainClass> <mainClass>caosdb.server.CaosDBServer</mainClass>
<arguments> <arguments>
<argument>silent</argument> <argument>silent</argument>
<argument>debug</argument>
</arguments> </arguments>
<systemProperties> <systemProperties>
<systemProperty> <systemProperty>
...@@ -231,6 +249,8 @@ ...@@ -231,6 +249,8 @@
</systemProperty> </systemProperty>
</systemProperties> </systemProperties>
</configuration> </configuration>
</execution>
</executions>
</plugin> </plugin>
<plugin> <plugin>
<groupId>com.coveo</groupId> <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