Skip to content

Commit

Permalink
Merge pull request SolutionGuidance#602 from SolutionGuidance/16-remo…
Browse files Browse the repository at this point in the history
…ve-unused-libraries

Remove unused libraries
  • Loading branch information
jasonaowen committed Jan 3, 2018
2 parents 1f4e258 + 6f07b59 commit 77183c3
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions psm-app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,6 @@ ext.libs = [
velocity: 'org.apache.velocity:velocity:1.7',
]

// These libraries were included in the original project, but it is unclear if they
// are required. We know for sure that SOME of them are loaded during runtime, but
// need to spend some time investigating one by one.
List runtime_libs = [
'net.sourceforge.jexcelapi:jxl:2.6.10',
'org.codehaus.jackson:jackson-mapper-asl:1.9.13',
'org.codehaus.janino:janino:2.5.15',
]

allprojects {
apply plugin: 'checkstyle'

Expand Down Expand Up @@ -108,8 +99,6 @@ project(':services') {
compile project(path: ':cms-business-model', configuration: 'archives')
compile fileTree(dir: '../../../wildfly-10.1.0.Final/modules/system/layers/base/javax')
compile fileTree(dir: '../../../wildfly-10.1.0.Final/modules/system/layers/base/org/hibernate')
compile fileTree(dir: '../../../wildfly-10.1.0.Final/modules/system/layers/base/org/codehaus/jackson')
runtime runtime_libs
}
sourceSets {
main {
Expand Down Expand Up @@ -142,7 +131,6 @@ project(':cms-business-process') {
compile fileTree(dir: '../cms-portal-services/lib', include: '*.jar')
compile fileTree(dir: '../../../wildfly-10.1.0.Final/modules/system/layers/base/javax')
compile fileTree(dir: '../../../wildfly-10.1.0.Final/modules/system/layers/base/org/hibernate')
compile fileTree(dir: '../../../wildfly-10.1.0.Final/modules/system/layers/base/org/codehaus/jackson')
runtime libs.jbpm_persistence_jpa
}

Expand Down Expand Up @@ -179,7 +167,6 @@ project(':cms-web') {
compile libs.spring_webmvc
runtime libs.handlebars
runtime libs.handlebars_springmvc
runtime runtime_libs
}
webAppDirName = 'WebContent'

Expand Down Expand Up @@ -272,7 +259,6 @@ project(':cms-portal-services') {
earlib libs.velocity
earlib project(path: ':cms-business-model', configuration: 'archives')
earlib project(path: ':services', configuration: 'archives')
earlib runtime_libs
}

ear {
Expand Down

0 comments on commit 77183c3

Please sign in to comment.