http://blog.csdn.net/sxdtzhaoxinguo/article/details/45666789

****************************************************************

摘要:今天领导说要把自己定义的样式文件和js文件打成一个自定义的webjar,所以就写了一下,现在记录一下:

1. 先把要打包成webjar的文件放到你新建的maven结构的项目的/src/main/resources目录下

2.编写该项目的pom.xml文件,如下:

  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>org.webjars</groupId>
  5. <artifactId>neris-pm-ui</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <name>neris-pm-ui</name>
  8. <url>http://maven.apache.org</url>
  9. <properties>
  10. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  11. <destDir>${project.build.outputDirectory}/META-INF/resources/</destDir>
  12. </properties>
  13. <build>
  14. <resources>
  15. <resource>
  16. <directory>${project.basedir}/src/main/resources</directory>
  17. <targetPath>${destDir}</targetPath>
  18. </resource>
  19. </resources>
  20. </build>
  21. </project>

3.执行打包命令即可:mvn clean package

05-08 08:35
查看更多