Skip to content
This repository was archived by the owner on Feb 20, 2019. It is now read-only.

Commit f58914f

Browse files
committed
Remove obsolete pomPostProcess from build
1 parent 63d7709 commit f58914f

File tree

1 file changed

+0
-25
lines changed

1 file changed

+0
-25
lines changed

project/Build.scala

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -168,31 +168,6 @@ object MyBuild extends Build {
168168
</developer>
169169
</developers>
170170
),
171-
pomPostProcess := { (node: XmlNode) =>
172-
val hardcodeDeps = new RewriteRule {
173-
override def transform(n: XmlNode): XmlNodeSeq = n match {
174-
case e: Elem if e != null && e.label == "dependencies" =>
175-
// NOTE: this is necessary to unbind from paradise 210
176-
// we need to be compiled with paradise 210, because it's the only way to get quasiquotes in 210
177-
// however we don't need to be run with paradise 210, because all quasiquotes expand at compile-time
178-
// http://docs.scala-lang.org/overviews/macros/paradise.html#macro_paradise_for_210x
179-
<dependencies>
180-
<dependency>
181-
<groupId>org.scala-lang</groupId>
182-
<artifactId>scala-library</artifactId>
183-
<version>2.10.2</version>
184-
</dependency>
185-
<dependency>
186-
<groupId>org.scala-lang</groupId>
187-
<artifactId>scala-reflect</artifactId>
188-
<version>2.10.2</version>
189-
</dependency>
190-
</dependencies>
191-
case _ => n
192-
}
193-
}
194-
new RuleTransformer(hardcodeDeps).transform(node).head
195-
},
196171
credentials ++= loadCredentials()
197172
)
198173
)

0 commit comments

Comments
 (0)