Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Model/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@

<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<artifactId>javax.servlet-api</artifactId>
</dependency>

<dependency>
Expand Down
7 changes: 1 addition & 6 deletions Service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@

<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<artifactId>javax.servlet-api</artifactId>
<scope>provided</scope>
</dependency>

Expand All @@ -86,11 +86,6 @@
<artifactId>jersey-media-multipart</artifactId>
</dependency>

<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-server</artifactId>
</dependency>

<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
Expand Down
11 changes: 3 additions & 8 deletions Site/webapp/WEB-INF/web.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4"
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:web="http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
<web-app version="4.0"
xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd">

<context-param>
<param-name>GUS_HOME</param-name>
Expand All @@ -16,10 +15,6 @@
<param-value>/service</param-value>
</context-param>

<listener>
<listener-class>se.jiderhamn.classloader.leak.prevention.ClassLoaderLeakPreventorListener</listener-class>
</listener>

<listener>
<listener-class>org.apidb.apicommon.controller.ApplicationInitListener</listener-class>
</listener>
Expand Down
3 changes: 0 additions & 3 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
<!-- oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo -->

<import file="${projectsDir}/EbrcWebSvcCommon/build.xml" />
<import file="${projectsDir}/JBrowse/build.xml" />
<import file="${projectsDir}/ApiCommonModel/build.xml" />

<!-- oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo -->
Expand All @@ -14,7 +13,6 @@

<target name="ApiCommonWebsite-Installation" depends="EbrcWebSvcCommon-Installation,
ApiCommonModel-Installation,
JBrowse-Installation,
ApiCommonWebsite/Model-Installation,
ApiCommonWebsite/View-Installation,
ApiCommonWebsite/Site-Installation,
Expand Down Expand Up @@ -88,7 +86,6 @@
<!-- oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo -->

<target name="ApiCommonWebsite-WebInstallation" depends="EbrcWebSvcCommon-WebInstallation,
JBrowse-WebInstallation,
ApiCommonWebsite-Installation,
ApiCommonWebsite/View-WebInstallation,
ApiCommonWebsite/Site-WebInstallation">
Expand Down