• web plugins


    <build>
    <resources>
    <resource>
    <directory>src/main/java</directory>
    <excludes>
    <exclude>**/*.java</exclude>
    </excludes>
    </resource>
    <resource>
    <directory>src/main/resources</directory>
    <filtering>true</filtering>
    </resource>
    </resources>
    <plugins>
    <!--替代maven filter的插件 详情请见:http://www.openwebx.org/docs/autoconfig.html-->
    <plugin>
    <groupId>com.alibaba.citrus.tool</groupId>
    <artifactId>autoconfig-maven-plugin</artifactId>
    <version>1.2-fixcompress-SNAPSHOT</version>
    <configuration>
    <!-- 配置后,是否展开目标文件,默认为false,不展开 -->
    <exploding>false</exploding>
    <dest>${project.build.directory}/${project.build.finalName}</dest>
    </configuration>
    <executions>
    <execution>
    <phase>package</phase>
    <goals>
    <goal>autoconfig</goal>
    </goals>
    </execution>
    </executions>
    </plugin>

    <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <version>3.2</version>
    <configuration>
    <source>${java.version}</source><!-- 源代码开发使用版本 -->
    <target>${java.version}</target><!-- 源代码编译所使用的版本 -->
    <encoding>${java.encoding}</encoding>
    <useIncrementalCompilation>false</useIncrementalCompilation>
    </configuration>
    </plugin>
    <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-source-plugin</artifactId>
    <version>2.4</version>
    <executions>
    <execution>
    <id>attach-sources</id>
    <goals>
    <goal>jar</goal>
    </goals>
    </execution>
    </executions>
    </plugin>
    <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-war-plugin</artifactId>
    <version>2.3</version>
    </plugin>
    </plugins>
    </build>
  • 相关阅读:
    超级变态之access查询
    计算机安全病毒问题汇集(转自华军)
    Avast I Love You
    Windows2003 3389端口修改
    希捷 250G 7200.10 8M(串口/5年盒)(买硬盘了~~~)
    DataTable 中Remove方法的使用
    我的主板(p5pl2e)
    冼东妹(为奥运冠军名字作诗)
    李彦宏告诫年轻人:向前看两年
    郭文珺(为奥运冠军名字作诗)
  • 原文地址:https://www.cnblogs.com/sidesky/p/10720761.html
Copyright © 2020-2023  润新知