首页 > maven工程插件配置

maven工程插件配置

 1 <build>
 2         
 3         <plugins>
 4             
 5             <plugin>
 6                 <groupId>org.apache.maven.pluginsgroupId>
 7                 <artifactId>maven-resources-pluginartifactId>
 8                 <version>2.7version>
 9                 <configuration>
10                     <encoding>UTF-8encoding>
11                 configuration>
12             plugin>
13             
14             <plugin>
15                 <groupId>org.apache.maven.pluginsgroupId>
16                 <artifactId>maven-compiler-pluginartifactId>
17                 <version>3.2version>
18                 <configuration>
19                     <source>1.8source>
20                     <target>1.8target>
21                     <encoding>UTF-8encoding>
22                 configuration>
23             plugin>
24         plugins>
25         
26         
27         <pluginManagement>
28             <plugins>
29                 
30                 <plugin>
31                     <groupId>org.apache.tomcat.mavengroupId>
32                     <artifactId>tomcat7-maven-pluginartifactId>
33                     
34                     <version>2.2version>
35                     
36                     <configuration>
37                         <port>8081port>
38                         <path>/path>
39                     configuration>
40                 plugin>
41             plugins>
42         pluginManagement>
43     build>

 

转载于:https://www.cnblogs.com/suhfj-825/p/8538570.html

更多相关:

  • 一、Java工作集:       Eclipse有一个小功能,就是创建Java Working Set。它的作用是解决Package Explorer窗格中创建很多工程时出现拥挤的麻烦。     在创建(New对话框)时可以加入原来存在的Java工程。创建完后,在左方Package Explorer窗格的右上方下拉菜单中选择Selec...

  • 第一种方式:将依赖包打包进一个jar包中。 maven-compiler-plugin1.81.8${projec...

  • 生成plugin骨架代码: Ruby代码 ruby scriptgenerate plugin MyPlugin  ruby scriptgenerate plugin MyPlugin 功能需求: 在BlogController中把所有符合条件的Post(Model)生成为xml 如果不使用插件,很easy : in BlogC...

  • 环境:Cmake3.10+OpenCV2.4.13.5+CUDA9.2 Problem CMake Warning at cmake/OpenCVPackaging.cmake:23 (message):CPACK_PACKAGE_VERSION does not match version provided by version...

  • 文章目录Step 1:glibc-2.17 被libc.so.6库依赖,升级glibc库Step2:升级编译器-->4.8.2可以正常编译glibc2.17Step3:修改ELF,降低ceph-mon依赖的库函数版本解决ceph-mon调用高版本libc库(修改动态库链接表ELF) Step 1:glibc-2.17 被lib...

  • Qt程序版本号使用 在pro文件中添加(版本号可以3段或者4段) VERSION=1.0.1.2DEFINES += APP_VERSION=\"$${VERSION}\" 实际代码中使用 QString version = APP_VERSION;qInfo()<<"版本信息:"<< version;...

  • 一:概述SSM框架在项目开发中经常使用到,相比于SSH框架,它在仅几年的开发中运用的更加广泛。 Spring作为一个轻量级的框架,有很多的拓展功能,最主要的我们一般项目使用的就是IOC和AOP。SpringMVC是Spring实现的一个Web层,相当于Struts的框架,但是比Struts更加灵活和强大!Mybatis是 一个持久层...

  • AppDomain.CurrentDomain.ApplicationIdentity.CodeBase   获取作为URL的部署清单的位置 Eg:发布前地址为E:PROJECTWORKLandaV8inDebugxxxxx.xbap(xxxxx.xbap为部署站点下的文件),部署后获取的地址为http://192.168...