Skip to content

Commit

Permalink
removed unnecessary dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
sagnik committed Jul 12, 2016
1 parent 8d859df commit 7dad68e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 18 deletions.
14 changes: 4 additions & 10 deletions pdsimplifyparser/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,11 @@ resolvers ++= Seq(

libraryDependencies ++= Seq(
// pdf parsing libraries
"org.apache.pdfbox" % "pdfbox" % "2.0.2",
"org.apache.pdfbox" % "pdfbox-tools" % "2.0.2",
"org.apache.pdfbox" % "pdfbox" % "2.0.2" exclude("javax.jms", "jms") exclude("com.sun.jdmk", "jmxtools") exclude("com.sun.jmx", "jmxri"),
"org.apache.pdfbox" % "pdfbox-tools" % "2.0.2" exclude("javax.jms", "jms") exclude("com.sun.jdmk", "jmxtools") exclude("com.sun.jmx", "jmxri"),
// testing
"org.scalatest" %% "scalatest" % "2.2.4",
//log4j
"log4j" % "log4j" % "1.2.15" excludeAll(
ExclusionRule(organization = "com.sun.jdmk"),
ExclusionRule(organization = "com.sun.jmx"),
ExclusionRule(organization = "javax.jms")
)
)
"org.scalatest" %% "scalatest" % "2.2.4"
)

fork := true

Expand Down
10 changes: 2 additions & 8 deletions writers/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,8 @@ libraryDependencies ++= Seq(
"org.json4s" %% "json4s-native" % "3.2.11",
"org.json4s" %% "json4s-jackson" % "3.2.10",
// testing
"org.scalatest" %% "scalatest" % "2.2.4",
//log4j
"log4j" % "log4j" % "1.2.15" excludeAll(
ExclusionRule(organization = "com.sun.jdmk"),
ExclusionRule(organization = "com.sun.jmx"),
ExclusionRule(organization = "javax.jms")
)
)
"org.scalatest" %% "scalatest" % "2.2.4"
)

fork := true

Expand Down

0 comments on commit 7dad68e

Please sign in to comment.