~ improve deployment.

pull/1/head
Ivan Olexyn 5 years ago
parent 515f7054a5
commit 86f861dc52

@ -12,7 +12,7 @@
<servlet> <servlet>
<servlet-name>BridgeServlet</servlet-name> <servlet-name>BridgeServlet</servlet-name>
<servlet-class>BridgeServlet</servlet-class> <servlet-class>core.BridgeServlet</servlet-class>
</servlet> </servlet>
<servlet-mapping> <servlet-mapping>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

@ -12,7 +12,7 @@
<servlet> <servlet>
<servlet-name>ClientServlet</servlet-name> <servlet-name>ClientServlet</servlet-name>
<servlet-class>ClientServlet</servlet-class> <servlet-class>core.ClientServlet</servlet-class>
</servlet> </servlet>
<servlet-mapping> <servlet-mapping>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

@ -12,7 +12,7 @@ import java.util.Map;
public class ClientServlet extends HttpServlet { public class ClientServlet extends HttpServlet {
protected static final String MISP_BRIDGE_URL = "http://localhost:9090/mispbridge/core"; protected static final String MISP_BRIDGE_URL = "http://localhost:9090/mispbridge/core";
protected static final String APP_URL = "http://localhost:9090"; protected static final String APP_URL = "http://www.google.ch";
public static final int AVAILABLE_RIDES_OVERHEAD_TRIGGER = 32; public static final int AVAILABLE_RIDES_OVERHEAD_TRIGGER = 32;
public static final int AVAILABLE_RIDES_OVERHEAD = 64; public static final int AVAILABLE_RIDES_OVERHEAD = 64;

@ -0,0 +1,6 @@
#!/bin/bash
cd ../mispbridge/mispbridge
jar -cvf mispbridge.war *
cd ../
cd ../mispclient/mispclient
jar -cvf mispclient.war *
Loading…
Cancel
Save