@@ -15,7 +15,7 @@ val tagOrHash = Def.setting {
15
15
16
16
val unusedWarnings = Seq (" -Ywarn-unused" , " -Ywarn-unused-import" )
17
17
18
- val scalapbArgonaut = crossProject(JVMPlatform , JSPlatform )
18
+ val scalapbCirce = crossProject(JVMPlatform , JSPlatform )
19
19
.in(file(" ." ))
20
20
.settings(
21
21
commonSettings
@@ -63,22 +63,22 @@ lazy val commonSettings = Seq[Def.SettingsDefinition](
63
63
description := " Json/Protobuf convertors for ScalaPB" ,
64
64
licenses += (" MIT" , url(" https://opensource.org/licenses/MIT" )),
65
65
organization := " io.github.scalapb-json" ,
66
- name := UpdateReadme .scalapbArgonautName ,
66
+ name := UpdateReadme .scalapbCirceName ,
67
67
Project .inConfig(Test )(sbtprotoc.ProtocPlugin .protobufConfigSettings),
68
68
PB .targets in Compile := Nil ,
69
69
PB .protoSources in Test := Seq (file(" shared/src/test/protobuf" )),
70
70
libraryDependencies ++= Seq (
71
71
" io.github.scalapb-json" %%% " scalapb-json-common" % " 0.1.0" ,
72
72
" com.trueaccord.scalapb" %%% " scalapb-runtime" % scalapbVersion % " protobuf,test" ,
73
- " io.argonaut " %%% " argonaut " % " 6.2.1 " ,
73
+ " io.circe " %%% " circe-parser " % " 0.9.0 " ,
74
74
" org.scalatest" %%% " scalatest" % " 3.0.4" % " test"
75
75
),
76
76
pomExtra in Global := {
77
- <url >https:// github.com/ scalapb- json/ scalapb- argonaut </url >
77
+ <url >https:// github.com/ scalapb- json/ scalapb- circe </url >
78
78
<scm >
79
- <connection >scm: git: github.com/ scalapb- json/ scalapb- argonaut .git</connection >
80
- <developerConnection >scm: git: git@ github.com: scalapb- json/ scalapb- argonaut .git</developerConnection >
81
- <url >github.com/ scalapb- json/ scalapb- argonaut .git</url >
79
+ <connection >scm: git: github.com/ scalapb- json/ scalapb- circe .git</connection >
80
+ <developerConnection >scm: git: git@ github.com: scalapb- json/ scalapb- circe .git</developerConnection >
81
+ <url >github.com/ scalapb- json/ scalapb- circe .git</url >
82
82
<tag >{tagOrHash.value}</tag >
83
83
</scm >
84
84
<developers >
@@ -101,7 +101,7 @@ lazy val commonSettings = Seq[Def.SettingsDefinition](
101
101
" -sourcepath" ,
102
102
(baseDirectory in LocalRootProject ).value.getAbsolutePath,
103
103
" -doc-source-url" ,
104
- s " https://github.com/scalapb-json/scalapb-argonaut /tree/ ${t}€{FILE_PATH}.scala "
104
+ s " https://github.com/scalapb-json/scalapb-circe /tree/ ${t}€{FILE_PATH}.scala "
105
105
)
106
106
},
107
107
ReleasePlugin .extraReleaseCommands,
@@ -133,5 +133,5 @@ lazy val commonSettings = Seq[Def.SettingsDefinition](
133
133
)
134
134
).flatMap(_.settings)
135
135
136
- val scalapbArgonautJVM = scalapbArgonaut .jvm
137
- val scalapbArgonautJS = scalapbArgonaut .js
136
+ val scalapbCirceJVM = scalapbCirce .jvm
137
+ val scalapbCirceJS = scalapbCirce .js
0 commit comments