Skip to content

Commit 2af9fe6

Browse files
authored
Merge pull request #3583 from chipsalliance/diplomacy-bump
bump diplomacy and switch to diplomacy/master
2 parents b3476b1 + aa92969 commit 2af9fe6

File tree

3 files changed

+5
-13
lines changed

3 files changed

+5
-13
lines changed

build.sc

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -100,11 +100,8 @@ trait Diplomacy
100100
def chiselIvy = Some(v.chiselCrossVersions(crossValue)._1)
101101
def chiselPluginIvy = Some(v.chiselCrossVersions(crossValue)._2)
102102

103-
// use CDE from source untill published to sonatype
104-
def cdeModule = Some(cde)
105-
106-
// no cde ivy currently published
107-
def cdeIvy = None
103+
// use CDE from source until published to sonatype
104+
def cdeModule = cde
108105

109106
def sourcecodeIvy = v.sourcecode
110107
}

common.sc

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -42,23 +42,18 @@ trait RocketChipModule
4242
// should be hardfloat/common.sc#HardfloatModule
4343
def hardfloatModule: ScalaModule
4444

45-
// should be cde/common.sc#CDEModule
46-
def cdeModule: ScalaModule
47-
4845
def diplomacyModule: ScalaModule
4946

50-
def diplomacyIvy: Option[Dep]
51-
5247
def mainargsIvy: Dep
5348

5449
def json4sJacksonIvy: Dep
5550

56-
override def moduleDeps = super.moduleDeps ++ Seq(macrosModule, hardfloatModule, cdeModule, diplomacyModule)
51+
override def moduleDeps = super.moduleDeps ++ Seq(macrosModule, hardfloatModule, diplomacyModule)
5752

5853
override def ivyDeps = T(
5954
super.ivyDeps() ++ Agg(
6055
mainargsIvy,
6156
json4sJacksonIvy,
62-
) ++ diplomacyIvy
57+
)
6358
)
6459
}

0 commit comments

Comments
 (0)