-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #51 from liff/scala-2.13
Update build for 2.13.0 final
- Loading branch information
Showing
5 changed files
with
32 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
shared/src/main/scala/io/estatico/newtype/macros/package.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package io.estatico.newtype | ||
|
||
package object macros extends ScalaVersionSpecifics | ||
|
3 changes: 3 additions & 0 deletions
3
shared/src/main/scala_2.10/io/estatico/newtype/macros/ScalaVersionSpecifics.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
package io.estatico.newtype.macros | ||
|
||
trait ScalaVersionSpecifics |
8 changes: 8 additions & 0 deletions
8
shared/src/main/scala_2.11+/io/estatico/newtype/macros/ScalaVersionSpecifics.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package io.estatico.newtype.macros | ||
|
||
trait ScalaVersionSpecifics { | ||
object macrocompat { | ||
class bundle extends annotation.Annotation | ||
} | ||
} | ||
|