Skip to content

Commit

Permalink
Merge pull request #21 from hhandoko/chore/update_binaries_and_tools
Browse files Browse the repository at this point in the history
Chore - Update binaries and tools
  • Loading branch information
hhandoko committed Mar 4, 2018
2 parents 51fba3e + f29a99d commit a0217f3
Show file tree
Hide file tree
Showing 18 changed files with 35 additions and 34 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,13 @@ Dear play2-scala-pdf users, I will be making some significant changes to this pr

- ~~The project repository will be moved under my own account (i.e. `hhandoko/play2-scala-pdf`)~~
- ~~The project organisation namespace will be updated to `com.hhandoko`~~
- Publish updated binaries under the new namespace

I have joined a new company, but unfortunately there were no other developers in my previous company able to pick up the responsibility of maintaining this project. Rather than abandoning it, I will continue to develop and maintain it but in my personal capacity.

I apologise for the inconvenience and thank you for your understanding.

# Play 2.4+ PDF module
# Play [2.4 | 2.5 | 2.6] PDF module

`play2-scala-pdf` is a Play! module to help generate PDF documents dynamically from Play! web application.

Expand Down
4 changes: 2 additions & 2 deletions examples/play24-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ name := """play2-scala-pdf-example"""

version := "1.0.0.P24"

scalaVersion := "2.11.8"
scalaVersion := "2.11.12"

crossScalaVersions := Seq("2.10.6", "2.11.8")
crossScalaVersions := Seq("2.10.7", "2.11.12")

libraryDependencies ++= Seq(
// Utilities
Expand Down
2 changes: 1 addition & 1 deletion examples/play24-example/project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=0.13.15
sbt.version=0.13.17
6 changes: 3 additions & 3 deletions examples/play25-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ name := """play2-scala-pdf-example"""

version := "1.0.0.P25"

scalaVersion := "2.11.8"
scalaVersion := "2.11.12"

crossScalaVersions := Seq("2.11.8")
crossScalaVersions := Seq("2.11.12")

libraryDependencies ++= Seq(
// Utilities
Expand All @@ -42,7 +42,7 @@ libraryDependencies ++= Seq(

// ScalaTest + Play plugin
// - http://www.scalatest.org/plus/play
"org.scalatestplus.play" %% "scalatestplus-play" % "1.5.1" % Test
"org.scalatestplus.play" %% "scalatestplus-play" % "2.0.1" % Test
)

resolvers += "scalaz-bintray" at "http://dl.bintray.com/scalaz/releases"
Expand Down
2 changes: 1 addition & 1 deletion examples/play25-example/project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=0.13.15
sbt.version=0.13.17
2 changes: 1 addition & 1 deletion examples/play25-example/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// Play Framework plugin
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.5.15")
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.5.18")
4 changes: 2 additions & 2 deletions examples/play26-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ name := """play2-scala-pdf-example"""

version := "1.0.0.P26"

scalaVersion := "2.12.2"
scalaVersion := "2.12.4"

crossScalaVersions := Seq("2.11.8", "2.12.2")
crossScalaVersions := Seq("2.11.12", "2.12.4")

libraryDependencies ++= Seq(
guice,
Expand Down
2 changes: 1 addition & 1 deletion examples/play26-example/project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=0.13.15
sbt.version=0.13.17
2 changes: 1 addition & 1 deletion examples/play26-example/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// Play Framework plugin
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.6.1")
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.6.12")
8 changes: 4 additions & 4 deletions modules/play24/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -30,21 +30,21 @@ organization := "com.hhandoko"

version := "3.0.0.P24-SNAPSHOT"

scalaVersion := "2.11.8"
scalaVersion := "2.11.12"

crossScalaVersions := Seq("2.10.6", "2.11.8")
crossScalaVersions := Seq("2.10.7", "2.11.12")

libraryDependencies ++= Seq(
// Apache Commons IO
// - https://commons.apache.org/proper/commons-io/
"commons-io" % "commons-io" % "2.5",
"commons-io" % "commons-io" % "2.6",

// HTML parsing + PDF generation
// - http://jtidy.sourceforge.net/
// - https://github.com/flyingsaucerproject/flyingsaucer
// - https://about.validator.nu/htmlparser/
"net.sf.jtidy" % "jtidy" % "r938",
"org.xhtmlrenderer" % "flying-saucer-pdf-itext5" % "9.1.6",
"org.xhtmlrenderer" % "flying-saucer-pdf-itext5" % "9.1.12",
"nu.validator.htmlparser" % "htmlparser" % "1.4",

// ScalaTest + Play plugin
Expand Down
2 changes: 1 addition & 1 deletion modules/play24/project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=0.13.15
sbt.version=0.13.17
2 changes: 1 addition & 1 deletion modules/play24/project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.4.11")
// Maven publishing-specific
// ~~~~~
// Sonatype publishing SBT plugin
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "1.1")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "2.3")

// GnuPG SBT plugin
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.0.0")
8 changes: 4 additions & 4 deletions modules/play25/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -30,21 +30,21 @@ organization := "com.hhandoko"

version := "3.0.0.P25-SNAPSHOT"

scalaVersion := "2.11.8"
scalaVersion := "2.11.12"

crossScalaVersions := Seq("2.11.8")
crossScalaVersions := Seq("2.11.12")

libraryDependencies ++= Seq(
// Apache Commons IO
// - https://commons.apache.org/proper/commons-io/
"commons-io" % "commons-io" % "2.5",
"commons-io" % "commons-io" % "2.6",

// HTML parsing + PDF generation
// - http://jtidy.sourceforge.net/
// - https://github.com/flyingsaucerproject/flyingsaucer
// - https://about.validator.nu/htmlparser/
"net.sf.jtidy" % "jtidy" % "r938",
"org.xhtmlrenderer" % "flying-saucer-pdf-itext5" % "9.1.6",
"org.xhtmlrenderer" % "flying-saucer-pdf-itext5" % "9.1.12",
"nu.validator.htmlparser" % "htmlparser" % "1.4",

// ScalaTest + Play plugin
Expand Down
2 changes: 1 addition & 1 deletion modules/play25/project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=0.13.15
sbt.version=0.13.17
4 changes: 2 additions & 2 deletions modules/play25/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// Play Framework plugin
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.5.15")
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.5.18")

// Maven publishing-specific
// ~~~~~
// Sonatype publishing SBT plugin
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "1.1")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "2.3")

// GnuPG SBT plugin
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.0.0")
10 changes: 5 additions & 5 deletions modules/play26/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -30,28 +30,28 @@ organization := "com.hhandoko"

version := "3.0.0.P26-SNAPSHOT"

scalaVersion := "2.12.2"
scalaVersion := "2.12.4"

crossScalaVersions := Seq("2.11.8", "2.12.2")
crossScalaVersions := Seq("2.11.12", "2.12.4")

libraryDependencies ++= Seq(
guice,

// Apache Commons IO
// - https://commons.apache.org/proper/commons-io/
"commons-io" % "commons-io" % "2.5",
"commons-io" % "commons-io" % "2.6",

// HTML parsing + PDF generation
// - http://jtidy.sourceforge.net/
// - https://github.com/flyingsaucerproject/flyingsaucer
// - https://about.validator.nu/htmlparser/
"net.sf.jtidy" % "jtidy" % "r938",
"org.xhtmlrenderer" % "flying-saucer-pdf-itext5" % "9.1.6",
"org.xhtmlrenderer" % "flying-saucer-pdf-itext5" % "9.1.12",
"nu.validator.htmlparser" % "htmlparser" % "1.4",

// ScalaTest + Play plugin
// - http://www.scalatest.org/plus/play
"org.scalatestplus.play" %% "scalatestplus-play" % "3.1.0" % Test
"org.scalatestplus.play" %% "scalatestplus-play" % "3.1.2" % Test
)

resolvers += "scalaz-bintray" at "http://dl.bintray.com/scalaz/releases"
Expand Down
2 changes: 1 addition & 1 deletion modules/play26/project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=0.13.15
sbt.version=0.13.17
4 changes: 2 additions & 2 deletions modules/play26/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// Play Framework plugin
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.6.1")
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.6.12")

// Maven publishing-specific
// ~~~~~
// Sonatype publishing SBT plugin
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "1.1")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "2.3")

// GnuPG SBT plugin
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.0.0")

0 comments on commit a0217f3

Please sign in to comment.