Skip to content

Commit abe7225

Browse files
committed
msgpack-core 0.7 Milestone 1
1 parent ed3fdd6 commit abe7225

File tree

3 files changed

+27
-7
lines changed

3 files changed

+27
-7
lines changed

project/Build.scala

Lines changed: 25 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ object Build extends Build {
3232
releaseSettings ++
3333
findbugsSettings ++
3434
jacoco.settings ++
35-
sonatypeSettings ++
3635
Seq[Setting[_]](
3736
organization := "org.msgpack",
3837
organizationName := "MessagePack",
@@ -69,6 +68,28 @@ object Build extends Build {
6968
<scala.version>{SCALA_VERSION}</scala.version>
7069
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
7170
</properties>
71+
<developers>
72+
<developer>
73+
<id>frsyuki</id>
74+
<name>Sadayuki Furuhashi</name>
75+
<email>frsyuki@users.sourceforge.jp</email>
76+
</developer>
77+
<developer>
78+
<id>muga</id>
79+
<name>Muga Nishizawa</name>
80+
<email>muga.nishizawa@gmail.com</email>
81+
</developer>
82+
<developer>
83+
<id>oza</id>
84+
<name>Tsuyoshi Ozawa</name>
85+
<url>https://github.com/oza</url>
86+
</developer>
87+
<developer>
88+
<id>xerial</id>
89+
<name>Taro L. Saito</name>
90+
<email>leo@xerial.org</email>
91+
</developer>
92+
</developers>
7293
},
7394
findbugsReportType := Some(ReportType.FancyHtml),
7495
findbugsReportPath := Some(crossTarget.value / "findbugs" / "report.html")
@@ -80,21 +101,20 @@ object Build extends Build {
80101
lazy val root = Project(
81102
id = "msgpack-java",
82103
base = file("."),
83-
settings = buildSettings ++ sonatypeSettings ++ Seq(
104+
settings = buildSettings ++ Seq(
84105
findbugs := {
85106
// do not run findbugs for the root project
86107
},
87108
// Do not publish the root project
88-
publish := {},
89-
publishLocal := {}
109+
publishArtifact := false
90110
)
91111
) aggregate(msgpackCore)
92112

93113

94114
lazy val msgpackCore = Project(
95115
id = "msgpack-core",
96116
base = file("msgpack-core"),
97-
settings = buildSettings ++ Seq(
117+
settings = buildSettings ++ sonatypeSettings ++ Seq(
98118
description := "Core library of the MessagePack for Java",
99119
libraryDependencies ++= testLib
100120
)

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ addSbtPlugin("com.github.gseitz" % "sbt-release" % "0.7.1")
33

44
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "0.2.1")
55

6-
addSbtPlugin("com.typesafe.sbt" % "sbt-pgp" % "0.8.1")
6+
addSbtPlugin("com.typesafe.sbt" % "sbt-pgp" % "0.8.3")
77

88
addSbtPlugin("com.github.mpeltonen" % "sbt-idea" % "1.6.0")
99

version.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version in ThisBuild := "0.7.0-SNAPSHOT"
1+
version in ThisBuild := "0.7.0-M1"

0 commit comments

Comments
 (0)