File tree Expand file tree Collapse file tree 6 files changed +18
-11
lines changed Expand file tree Collapse file tree 6 files changed +18
-11
lines changed Original file line number Diff line number Diff line change 31
31
! /src /test /
32
32
33
33
** /TempTest.java
34
+ tzdb /
Original file line number Diff line number Diff line change 2
2
## Scala Java-Time
3
3
4
4
[ ![ Build Status] ( https://travis-ci.org/cquiroz/scala-java-time.svg?branch=master )] ( https://travis-ci.org/cquiroz/scala-java-time )
5
- [ ![ Maven Central] ( https://img.shields.io/maven-central/v/com .github.cquiroz/scala-java-time_2.11.svg )] ( https://maven-badges.herokuapp.com/maven-central/com .github.cquiroz/scala-java-time_2.11 )
5
+ [ ![ Maven Central] ( https://img.shields.io/maven-central/v/io .github.cquiroz/scala-java-time_2.11.svg )] ( https://maven-badges.herokuapp.com/maven-central/io .github.cquiroz/scala-java-time_2.11 )
6
6
[ ![ Scala.js] ( http://scala-js.org/assets/badges/scalajs-0.6.8.svg )] ( http://scala-js.org )
7
7
8
8
This project provides an implementation of the ` java.time ` package, a date and time library that was added in Java 8.
@@ -11,11 +11,11 @@ The implementation is based on the original BSD-licensed reference implementatio
11
11
#### Usage
12
12
13
13
The * scala-java-time* library is currently available for Scala (JVM, version 8 and later) and Scala.js (JavaScript).
14
- Both Scala 2.11 and Scala 2.12 (2.12.0-M5 and later) are supported.
14
+ Both Scala 2.11 and Scala 2.12 (2.12.0-M6 and later) are supported.
15
15
16
16
To get started with SBT, add one (or both) of these dependencies:
17
17
18
- - ` libraryDependencies += "io.github.cquiroz" % "scala-java-time" % "2.0.0-M6" ` (for Scala)
18
+ - ` libraryDependencies += "io.github.cquiroz" %% "scala-java-time" % "2.0.0-M6" ` (for Scala)
19
19
- ` libraryDependencies += "io.github.cquiroz" %%% "scala-java-time" % "2.0.0-M6" ` (for Scala.js, [ Scala.js plugin] ( http://www.scala-js.org/tutorial/basic/#sbt-setup ) required)
20
20
21
21
#### Documentation
Original file line number Diff line number Diff line change @@ -33,18 +33,13 @@ lazy val commonSettings = Seq(
33
33
34
34
lazy val root = project.in(file(" ." ))
35
35
.aggregate(scalajavatimeJVM, scalajavatimeJS)
36
- .enablePlugins( MicrositesPlugin )
36
+ .settings( commonSettings : _* )
37
37
.settings(
38
- scalaVersion := scalaVer,
39
- crossScalaVersions := crossScalaVer,
38
+ name := " scalajavatime" ,
40
39
// No, SBT, we don't want any artifacts for root.
41
40
// No, not even an empty jar.
42
- // Invoking Cthulhu:
43
- packageBin in Global := file(" " ),
44
- packagedArtifacts := Map (),
45
41
publish := {},
46
42
publishLocal := {},
47
- publishArtifact := false ,
48
43
Keys .`package` := file(" " ))
49
44
50
45
/**
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ Both Scala 2.11 and Scala 2.12 (2.12.0-M6 and later) are supported.
59
59
60
60
To get started with SBT, add one (or both) of these dependencies:
61
61
62
- - ` libraryDependencies += "io.github.cquiroz" % "scala-java-time" % "2.0.0-M6" ` (for Scala)
62
+ - ` libraryDependencies += "io.github.cquiroz" %% "scala-java-time" % "2.0.0-M6" ` (for Scala)
63
63
- ` libraryDependencies += "io.github.cquiroz" %%% "scala-java-time" % "2.0.0-M6" ` (for Scala.js, [ Scala.js plugin] ( http://www.scala-js.org/tutorial/basic/#sbt-setup ) required)
64
64
65
65
#### Building
Original file line number Diff line number Diff line change
1
+ This are the steps to make a release
2
+
3
+ ``` bash
4
+ sbt
5
+ +publishSigned
6
+ sonatypeRelease
7
+ ```
Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ addSbtPlugin("io.get-coursier" % "sbt-coursier" % "1.0.0-M14-7")
6
6
7
7
addSbtPlugin(" com.fortysevendeg" % " sbt-microsites" % " 0.3.3" )
8
8
9
+ addSbtPlugin(" org.xerial.sbt" % " sbt-sonatype" % " 1.1" )
10
+
11
+ addSbtPlugin(" com.jsuereth" % " sbt-pgp" % " 1.0.0" )
12
+
9
13
// Incompatible with 2.12.0-M5
10
14
// addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.3.5")
11
15
// addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.1.0")
You can’t perform that action at this time.
0 commit comments