Skip to content

Commit

Permalink
Add back graalvm-related resource files (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexarchambault authored Jan 7, 2025
1 parent 460926e commit eef259a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ object directories extends JavaModule with DirectoriesPublishModule {
)

def sources = T.sources {
Seq(PathRef(T.workspace / "src/main"))
Seq(PathRef(T.workspace / "src/main/java"))
}

def jdk23ClassesResources = T {
Expand All @@ -59,7 +59,7 @@ object directories extends JavaModule with DirectoriesPublishModule {
}

def resources = T {
T.sources(super.resources() ++ Seq(jdk23ClassesResources()))
T.sources(Seq(PathRef(T.workspace / "src/main/resources")) ++ Seq(jdk23ClassesResources()))
}
def manifest = T {
super.manifest().add("Multi-Release" -> "true")
Expand Down

0 comments on commit eef259a

Please sign in to comment.