代码拉取完成,页面将自动刷新
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.zx</groupId>
<artifactId>CodeGenerator</artifactId>
<version>0.0.1-SNAPSHOT</version>
<properties>
<spring.boot.version>1.5.1.RELEASE</spring.boot.version>
<springframework.version>4.3.5.RELEASE</springframework.version>
<!-- Maven Define -->
<distribution.repository>localhost</distribution.repository>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<maven.build.timestamp.format>yyyy-MM-dd HH:mm:ss</maven.build.timestamp.format>
<maven.test.skip>true</maven.test.skip>
<maven.javadoc.skip>false</maven.javadoc.skip>
<!-- <maven.test.failure.ignore>true</maven.test.failure.ignore> -->
<maven-eclipse-plugin>2.10</maven-eclipse-plugin>
<maven-deploy-plugin>2.8.2</maven-deploy-plugin>
<maven-resources-plugin>2.7</maven-resources-plugin>
<maven-surefire-plugin>2.19.1</maven-surefire-plugin>
<sonar-maven3-plugin>5.1</sonar-maven3-plugin>
<maven-javadoc-plugin>2.10.3</maven-javadoc-plugin>
<maven-surefire-report-plugin>2.19.1</maven-surefire-report-plugin>
<maven-site-plugin>3.6</maven-site-plugin>
<cobertura-maven-plugin>2.7</cobertura-maven-plugin>
<maven-jxr-plugin>2.5</maven-jxr-plugin>
<findbugs-maven-plugin>3.0.4</findbugs-maven-plugin>
<maven-project-info-reports-plugin>2.8.1</maven-project-info-reports-plugin>
<dashboard-maven-plugin>1.0.0-beta-1</dashboard-maven-plugin>
<maven-clean-plugin>3.0.0</maven-clean-plugin>
<taglist-maven-plugin>2.4</taglist-maven-plugin>
<jdepend-maven-plugin>2.0</jdepend-maven-plugin>
<maven-report>0.1</maven-report>
<maven-compiler-plugin>3.6.1</maven-compiler-plugin>
<maven-changelog-plugin>2.3</maven-changelog-plugin>
<maven-checkstyle-plugin>2.17</maven-checkstyle-plugin>
<!-- <maven-checkstyle-plugin>2.9.1</maven-checkstyle-plugin> -->
<maven-pmd-plugin>3.7</maven-pmd-plugin>
<checkstyle.version>7.5.1</checkstyle.version>
<maven-java-formatter-plugin>0.4</maven-java-formatter-plugin>
<!-- 检查代码格式的 -->
<checkStyle.formater.FilePath>src/main/resources/doc/codestyle.xml</checkStyle.formater.FilePath>
<checkStyle.checks.FilePath>src/main/resources/doc/checkstyle.xml</checkStyle.checks.FilePath>
<!-- <maven_umlgraph_version>4.6</maven_umlgraph_version> <checkstyle_javaheader_file>java_copyright_header.txt</checkstyle_javaheader_file> -->
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>${springframework.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.orbit</groupId>
<artifactId>org.objectweb.asm</artifactId>
<version>3.3.1.v201105211655</version>
</dependency>
<dependency>
<groupId>org.mybatis.generator</groupId>
<artifactId>mybatis-generator-core</artifactId>
<version>1.3.2</version>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>3.2.8</version>
</dependency>
<!-- <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId>
<version>3.1.1</version> </dependency> -->
<!--freemarker -->
<dependency>
<groupId>org.freemarker</groupId>
<artifactId>freemarker</artifactId>
<version>2.3.20</version>
</dependency>
<dependency>
<groupId>postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>9.1-901-1.jdbc4</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.9</version>
</dependency>
<!-- https://mvnrepository.com/artifact/net.sourceforge.jtds/jtds -->
<dependency>
<groupId>net.sourceforge.jtds</groupId>
<artifactId>jtds</artifactId>
<version>1.3.1</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.1</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>13.0.1</version>
</dependency>
<dependency>
<groupId>org.hibernate.javax.persistence</groupId>
<artifactId>hibernate-jpa-2.0-api</artifactId>
<version>1.0.1.Final</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
<version>${spring.boot.version}</version>
</dependency>
</dependencies>
<build>
<finalName>CodeGenerator</finalName>
<resources>
<resource>
<directory>src/main/resources</directory>
<excludes>
<exclude>doc/codeformat20170313.xml</exclude>
<exclude>doc/checkstyle.xml</exclude>
</excludes>
<filtering>true</filtering>
</resource>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.jpg</include>
<!-- <include>**/*.java</include> -->
<include>**/*.xml</include>
<include>**/*.png</include>
<include>**/*.html</include>
<include>**/*.ttf</include>
<include>**/*.ttc</include>
<include>**/*.css</include>
</includes>
<filtering>false</filtering>
</resource>
</resources>
<plugins>
<!--maven compile plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<!--maven-eclipse-plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
</plugin>
<!-- Maven deploy plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
</plugin>
<!-- maven源文件插件 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<!-- maven test plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/TestCircle.java</exclude>
<exclude>**/TestSquare.java</exclude>
</excludes>
<!--current skip test -->
<skipTests>true</skipTests>
<!-- ForkMode=once在一个进程中进行测试(默认once) "never", "once", "always" or "perthread".
"none" and pertest" -->
<forkMode>always</forkMode>
<threadCount>10</threadCount>
<!-- 不限制进程数 -->
<useUnlimitedThreads>false</useUnlimitedThreads>
<!-- 分配其测试内存 -->
<argLine>-Xms512m -Xmx512m -Dfile.encoding=UTF-8</argLine>
</configuration>
</plugin>
<!-- Maven site project-report Begin maven-site-plugin是一个负责为Java项目生成静态HTML网站的插件。这个插件非常的有用,里面可以嵌入各种插件,比如用来对代码检查bug的findbugs,检查代码风格的checkstyle,生成testng测试报告的surefire等。先来看一下关于这个插件的配置的一个例子: -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<configuration>
<locales>zh_CN</locales>
<outputEncoding>UTF-8</outputEncoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<configLocation>${basedir}/src/main/resources/doc/checkstyle.xml</configLocation>
<excludes>com/baidu/**</excludes>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<configuration>
<reportPlugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
</plugin>
<!-- 生成站点文件具体信息报告 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-linkcheck-plugin</artifactId>
<version>1.2</version>
<configuration>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<configLocation>${basedir}/src/main/resources/doc/checkstyle.xml</configLocation>
<!-- <configLocation>config/sun_checks.xml</configLocation> <configLocation>config/maven_checks.xml</configLocation>
<configLocation>config/turbine_checks.xml</configLocation> <configLocation>config/avalon_checks.xml</configLocation>
<configLocation>${basedir}/src/main/resources/doc/ui_checkstyle.xml</configLocation> -->
<excludes>com/baidu/**</excludes>
<!-- <headerLocation>${checkstyle_javaheader_file}</headerLocation> -->
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<configuration>
<aggregate>true</aggregate>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<source>${java.version}</source>
<aggregate>true</aggregate>
<!-- <doclet>gr.spinellis.umlgraph.doclet.UmlGraphDoc</doclet> <docletArtifact>
<groupId>gr.spinellis</groupId> <artifactId>UmlGraph</artifactId> <version>${maven_umlgraph_version}</version>
</docletArtifact> <additionalparam> -inferrel -inferdep -quiet -hide java.*
-collpackages java.util.* -qualify -postfixpackage -nodefontsize 9 -nodefontpackagesize
7 </additionalparam> -->
<doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
<!-- <docletPath>/path/to/UmlGraph.jar</docletPath> -->
<docletArtifact>
<groupId>org.umlgraph</groupId>
<artifactId>doclet</artifactId>
<version>5.1</version>
</docletArtifact>
<additionalparam>-views</additionalparam>
<useStandardDocletOptions>true</useStandardDocletOptions>
</configuration>
<!-- <executions> <execution> <id>attach-javadocs</id> <phase>install</phase>
<goals> <goal>jar</goal> </goals> <configuration> <encoding>UTF-8</encoding>
</configuration> </execution> </executions> -->
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>${maven_cobertura_version}</version>
<configuration>
<formats>
<format>xml</format>
<format>html</format>
</formats>
</configuration>
</plugin>
<!-- <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>emma-maven-plugin</artifactId>
<version>1.0-alpha-3</version> </plugin> -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<configuration>
<targetJdk>${java.version}</targetJdk>
<linkXref>true</linkXref>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>taglist-maven-plugin</artifactId>
<configuration>
<tags>
<tag>fixme</tag>
<tag>FixMe</tag>
<tag>FIXME</tag>
<tag>@todo</tag>
<tag>todo</tag>
<tag>TODO</tag>
<tag>@deprecated</tag>
</tags>
</configuration>
</plugin>
</reportPlugins>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。