Skip to content

Commit

Permalink
0.3.3: use normalizedName for webjar asset path
Browse files Browse the repository at this point in the history
  • Loading branch information
lhns committed Jun 2, 2020
1 parent 54a4ab8 commit 2f6c9fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
lazy val commonSettings: Seq[Setting[_]] = Seq(
organization := "de.lolhens",
version := "0.3.2-SNAPSHOT",
version := "0.3.3-SNAPSHOT",

licenses += ("Apache-2.0", url("https://www.apache.org/licenses/LICENSE-2.0")),

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class WebjarProject(val self: Project) extends AnyVal {

watchSources := (self / watchSources).value,

self / Compile / webjarResourcePath := s"META-INF/resources/webjars/${(self / name).value}/${(self / version).value}",
self / Compile / webjarResourcePath := s"META-INF/resources/webjars/${(self / normalizedName).value}/${(self / version).value}",

self / Compile / webjarMainResource := (self / Compile / webjarResourcePath).value + "/" + (self / Compile / webjarMainResourceName).value,

Expand Down

0 comments on commit 2f6c9fe

Please sign in to comment.