mirror of https://github.com/apache/cloudstack.git
Fix jetty:run startup to include the mysql driver as a dependency for developers
(cherry picked from commit 24dcf2948c)
Signed-off-by: Animesh Chaturvedi <animesh@apache.org>
This commit is contained in:
parent
2371127b86
commit
870c01e2f0
|
|
@ -345,6 +345,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