mirror of https://github.com/apache/activemq.git
added derby dependency and fixed location of webapp after move of the source
git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@371524 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
c3c0ea7265
commit
24cce5f0f5
|
@ -69,6 +69,13 @@
|
||||||
</properties>
|
</properties>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<!-- Derby SQL DB used for testing JDBC message store -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.derby</groupId>
|
||||||
|
<artifactId>derby</artifactId>
|
||||||
|
<version>${derby_version}</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<!-- For Spring servlet -->
|
<!-- For Spring servlet -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<id>springframework</id>
|
<id>springframework</id>
|
||||||
|
|
|
@ -34,7 +34,7 @@ public class JettyServer {
|
||||||
|
|
||||||
public static final int PORT = 8080;
|
public static final int PORT = 8080;
|
||||||
|
|
||||||
public static final String WEBAPP_DIR = "src/webapp";
|
public static final String WEBAPP_DIR = "src/main/webapp";
|
||||||
|
|
||||||
public static final String WEBAPP_CTX = "/";
|
public static final String WEBAPP_CTX = "/";
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue