mirror of
https://github.com/lightbend/config.git
synced 2025-01-15 23:01:05 +08:00
8f8b576800
Fix related warnings, and adapt to lift-json's increased leniency.
22 lines
712 B
Scala
22 lines
712 B
Scala
|
|
// to release, bump major/minor/micro as appropriate,
|
|
// update NEWS, update version in README.md, drop SNAPSHOT,
|
|
// tag and publish.
|
|
// then add snapshot back so git master is upcoming release
|
|
// with -SNAPSHOT.
|
|
// when releasing a SNAPSHOT to the repo, bump the micro
|
|
// version at least.
|
|
// Versions and git tags should follow: http://semver.org/
|
|
// except using -SNAPSHOT instead of without hyphen.
|
|
|
|
version in GlobalScope := "1.1.0-SNAPSHOT"
|
|
|
|
organization in GlobalScope := "com.typesafe"
|
|
|
|
scalacOptions in GlobalScope in Compile := Seq("-unchecked", "-deprecation", "-feature")
|
|
|
|
scalacOptions in GlobalScope in Test := Seq("-unchecked", "-deprecation", "-feature")
|
|
|
|
scalaVersion in ThisBuild := "2.10.2"
|
|
|