Add exec-maven-plugin to run Spark from sources

This commit is contained in:
Florian Schmaus 2018-06-19 14:11:09 +02:00
parent 8d3f4a1813
commit 0a159aa2d7
2 changed files with 17 additions and 0 deletions

View File

@ -16,6 +16,15 @@ Combined with the [Openfire] server, [Spark] is the easiest and best alternative
[![Build Status](https://travis-ci.org/igniterealtime/Spark.svg?branch=master)](https://travis-ci.org/igniterealtime/Spark)
Run from sources
----------------
```bash
$ git clone https://github.com/igniterealtime/Spark.git
$ cd Spark/core
$ mvn exec:java
```
Bug Reporting
-------------

View File

@ -72,6 +72,14 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.6.0</version>
<configuration>
<mainClass>org.jivesoftware.launcher.Startup</mainClass>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>