mirror of https://github.com/apache/cloudstack.git
Fix jetty:run startup to include the mysql driver as a dependency for developers
This commit is contained in:
parent
14689d7810
commit
7aa70fe82a
|
|
@ -365,6 +365,14 @@
|
|||
<groupId>org.mortbay.jetty</groupId>
|
||||
<artifactId>maven-jetty-plugin</artifactId>
|
||||
<version>6.1.26</version>
|
||||
<dependencies>
|
||||
<!-- specify the dependent jdbc driver here -->
|
||||
<dependency>
|
||||
<groupId>mysql</groupId>
|
||||
<artifactId>mysql-connector-java</artifactId>
|
||||
<version>${cs.mysql.version}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<configuration>
|
||||
<scanIntervalSeconds>0</scanIntervalSeconds>
|
||||
<stopPort>9966</stopPort>
|
||||
|
|
|
|||
Loading…
Reference in New Issue