* Issue #6586 Remove unnecessary dependencies Signed-off-by: Jan Bartel <janb@webtide.com>
This commit is contained in:
parent
a5b1845e60
commit
a7a2ae6f84
|
@ -80,12 +80,6 @@
|
|||
<groupId>org.mortbay.jasper</groupId>
|
||||
<artifactId>apache-jsp</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.jetty</groupId>
|
||||
<artifactId>jetty-annotations</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.eclipse.jetty</groupId>
|
||||
<artifactId>jetty-servlet</artifactId>
|
||||
|
|
|
@ -60,14 +60,19 @@
|
|||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.jetty</groupId>
|
||||
<artifactId>jetty-webapp</artifactId>
|
||||
<artifactId>jetty-server</artifactId>
|
||||
<version>${project.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.jetty</groupId>
|
||||
<artifactId>jetty-security</artifactId>
|
||||
<version>${project.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.jetty.orbit</groupId>
|
||||
<artifactId>javax.mail.glassfish</artifactId>
|
||||
<version>1.4.1.v201005082020</version>
|
||||
<scope>provided</scope>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
|
|
|
@ -80,13 +80,6 @@
|
|||
<groupId>org.slf4j</groupId>
|
||||
<artifactId>slf4j-api</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.eclipse.jetty</groupId>
|
||||
<artifactId>jetty-jmx</artifactId>
|
||||
<version>${project.version}</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.jetty</groupId>
|
||||
<artifactId>jetty-slf4j-impl</artifactId>
|
||||
|
|
|
@ -13,8 +13,6 @@
|
|||
|
||||
package org.eclipse.jetty.webapp;
|
||||
|
||||
import java.util.ServiceLoader;
|
||||
|
||||
import org.eclipse.jetty.util.Loader;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
@ -24,9 +22,7 @@ import org.slf4j.LoggerFactory;
|
|||
* <p>This configuration configures the WebAppContext server/system classes to
|
||||
* be able to see the org.eclipse.jetty.jaas package.
|
||||
* This class is defined in the webapp package, as it implements the {@link Configuration} interface,
|
||||
* which is unknown to the jaas package. However, the corresponding {@link ServiceLoader}
|
||||
* resource is defined in the jaas package, so that this configuration only be
|
||||
* loaded if the jetty-jaas jars are on the classpath.
|
||||
* which is unknown to the jaas package.
|
||||
* </p>
|
||||
*/
|
||||
public class JaasConfiguration extends AbstractConfiguration
|
||||
|
|
|
@ -24,7 +24,7 @@ import org.slf4j.LoggerFactory;
|
|||
/**
|
||||
* JettyWebConfiguration.
|
||||
*
|
||||
* Looks for XmlConfiguration files in WEB-INF. Searches in order for the first of jetty6-web.xml, jetty-web.xml or web-jetty.xml
|
||||
* Looks for XmlConfiguration files in WEB-INF. Searches in order for the first of jetty8-web.xml, jetty-web.xml or web-jetty.xml
|
||||
*/
|
||||
public class JettyWebXmlConfiguration extends AbstractConfiguration
|
||||
{
|
||||
|
|
|
@ -13,8 +13,6 @@
|
|||
|
||||
package org.eclipse.jetty.webapp;
|
||||
|
||||
import java.util.ServiceLoader;
|
||||
|
||||
import org.eclipse.jetty.util.Loader;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
@ -24,9 +22,7 @@ import org.slf4j.LoggerFactory;
|
|||
* <p>This configuration configures the WebAppContext server/system classes to
|
||||
* be able to see the org.eclipse.jetty.jmx package. This class is defined
|
||||
* in the webapp package, as it implements the {@link Configuration} interface,
|
||||
* which is unknown to the jmx package. However, the corresponding {@link ServiceLoader}
|
||||
* resource is defined in the jmx package, so that this configuration only be
|
||||
* loaded if the jetty-jmx jars are on the classpath.
|
||||
* which is unknown to the jmx package.
|
||||
* </p>
|
||||
*/
|
||||
public class JmxConfiguration extends AbstractConfiguration
|
||||
|
|
|
@ -13,8 +13,6 @@
|
|||
|
||||
package org.eclipse.jetty.webapp;
|
||||
|
||||
import java.util.ServiceLoader;
|
||||
|
||||
import org.eclipse.jetty.util.Loader;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
@ -24,9 +22,7 @@ import org.slf4j.LoggerFactory;
|
|||
* <p>This configuration configures the WebAppContext system/server classes to
|
||||
* be able to see the org.eclipse.jetty.jaas package.
|
||||
* This class is defined in the webapp package, as it implements the {@link Configuration} interface,
|
||||
* which is unknown to the jndi package. However, the corresponding {@link ServiceLoader}
|
||||
* resource is defined in the jndi package, so that this configuration only be
|
||||
* loaded if the jetty-jndi jars are on the classpath.
|
||||
* which is unknown to the jndi package.
|
||||
* </p>
|
||||
*/
|
||||
public class JndiConfiguration extends AbstractConfiguration
|
||||
|
|
|
@ -13,8 +13,6 @@
|
|||
|
||||
package org.eclipse.jetty.webapp;
|
||||
|
||||
import java.util.ServiceLoader;
|
||||
|
||||
import org.eclipse.jetty.util.Loader;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
@ -24,9 +22,7 @@ import org.slf4j.LoggerFactory;
|
|||
* <p>This configuration configures the WebAppContext server/system classes to
|
||||
* be able to see the org.eclipse.jetty.jsp and org.eclipse.jetty.apache packages.
|
||||
* This class is defined in the webapp package, as it implements the {@link Configuration} interface,
|
||||
* which is unknown to the jsp package. However, the corresponding {@link ServiceLoader}
|
||||
* resource is defined in the jsp package, so that this configuration only be
|
||||
* loaded if the jetty-jsp jars are on the classpath.
|
||||
* which is unknown to the jsp package.
|
||||
* </p>
|
||||
*/
|
||||
public class JspConfiguration extends AbstractConfiguration
|
||||
|
|
Loading…
Reference in New Issue