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:
Hugo Trippaers 2014-02-25 12:13:29 +01:00 committed by Animesh Chaturvedi
parent 2371127b86
commit 870c01e2f0
1 changed files with 8 additions and 0 deletions

View File

@ -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>