This repository was archived by the owner on Feb 20, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +0
-25
lines changed Expand file tree Collapse file tree 1 file changed +0
-25
lines changed Original file line number Diff line number Diff 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 )
You can’t perform that action at this time.
0 commit comments