Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cleanup unused libraries #163

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
25 changes: 1 addition & 24 deletions libraries.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ ext {
c3p0Version = '0.9.5.4'
postgresJDBCVersion = '42.2.11'
flywaydbVersion = '6.0.4'
liquibaseVersion = '3.8.0'

libraries = [
//jUnit (Tests)
Expand All @@ -33,7 +32,6 @@ ext {

//Apache Commons
commons_lang: 'org.apache.commons:commons-lang3:3.9',
commons_logging: 'commons-logging:commons-logging:1.2',

//SLF4J and logback Stuff
slf4j_api: "org.slf4j:slf4j-api:${slf4jVersion}",
Expand Down Expand Up @@ -66,9 +64,6 @@ ext {
//Mail
javax_mail: 'javax.mail:javax.mail-api:1.6.2',

//SSHD
sshd: 'org.apache.sshd:sshd-core:2.3.0',

//Servlet API
servlet_api: "javax.servlet:javax.servlet-api:${servletApiVersion}",

Expand All @@ -77,18 +72,11 @@ ext {
jetty_xml: "org.eclipse.jetty:jetty-xml:${jettyVersion}",
jetty_webapp: "org.eclipse.jetty:jetty-webapp:${jettyVersion}",
jetty_deploy: "org.eclipse.jetty:jetty-deploy:${jettyVersion}",
jetty_plus: "org.eclipse.jetty:jetty-plus:${jettyVersion}",
jetty_jmx: "org.eclipse.jetty:jetty-jmx:${jettyVersion}",
jetty_jndi: "org.eclipse.jetty:jetty-jndi:${jettyVersion}",
jetty_annotations: "org.eclipse.jetty:jetty-annotations:${jettyVersion}",
jetty_security: "org.eclipse.jetty:jetty-security:${jettyVersion}",
jetty_policy: "org.eclipse.jetty:jetty-policy:${jettyVersion}",
jetty_websocket: "org.eclipse.jetty.websocket:websocket-server:${jettyVersion}",
jetty_websocket_jsr356: "org.eclipse.jetty.websocket:javax-websocket-server-impl:${jettyVersion}",
jetty_rewrite: "org.eclipse.jetty:jetty-rewrite:${jettyVersion}",
jetty_util: "org.eclipse.jetty:jetty-util:${jettyVersion}",
jetty_servlets: "org.eclipse.jetty:jetty-servlets:${jettyVersion}",
jetty_ajp: "org.eclipse.jetty:jetty-ajp:${jettyVersion}",
jetty_continuation: "org.eclipse.jetty:jetty-continuation:${jettyVersion}",
jetty_rewrite: "org.eclipse.jetty:jetty-rewrite:${jettyVersion}",

Expand Down Expand Up @@ -119,8 +107,7 @@ ext {
jsonSchemaValidator: "com.github.java-json-tools:json-schema-validator:${jsonSchemaVersion}",
guava: "com.google.guava:guava:${guavaVersion}",
httpAsyncClient: "org.apache.httpcomponents:httpasyncclient:${httpAsyncClientVersion}",
flywaydb: "org.flywaydb:flyway-core:${flywaydbVersion}",
liquibase: "org.liquibase:liquibase-core:${liquibaseVersion}"
flywaydb: "org.flywaydb:flyway-core:${flywaydbVersion}"
]

jsonSchemaValidatorLibs = [
Expand All @@ -141,14 +128,4 @@ ext {
libraries.jetty_continuation,
libraries.jetty_rewrite
]

/*
libraries.jetty_plus,
libraries.jetty_jndi,
libraries.jetty_annotations,
libraries.jetty_policy,

libraries.jetty_servlets,
libraries.jetty_ajp
*/
}