Advertisement
Guest User

Untitled

a guest
Mar 24th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <plugin>
  2. <artifactId>maven-war-plugin</artifactId>
  3. <version>2.4</version>
  4. <configuration>
  5. <webResources>
  6. <resource>
  7. <directory>${project.build.directory}/generated/js</directory>
  8. </resource>
  9. <!-- 以下を追加(ここから) -->
  10. <resource>
  11. <directory>${project.build.directory}/generated/wasm</directory>
  12. </resource>
  13. <!-- 以下を追加(ここまで) -->
  14. </webResources>
  15. </configuration>
  16. </plugin>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement