| | |
| | | <modelVersion>4.0.0</modelVersion> |
| | | <groupId>com.hbbohua</groupId> |
| | | <artifactId>git_study</artifactId> |
| | | <version>1.0-SNAPSHOT</version> |
| | | <version>1.9.0</version> |
| | | <packaging>war</packaging> |
| | | <dependencies> |
| | | <dependency> |
| | |
| | | <maven.compiler.source>8</maven.compiler.source> |
| | | <maven.compiler.target>8</maven.compiler.target> |
| | | <!--当前项目版本号--> |
| | | <revision>1.9.0-SNAPSHOT</revision> |
| | | <revision>1.9.0</revision> |
| | | <maven.deploy.skip>true</maven.deploy.skip> |
| | | </properties> |
| | | <build> |
| | |
| | | <artifactId>maven-surefire-plugin</artifactId> |
| | | <configuration> |
| | | <testFailureIgnore>true</testFailureIgnore> |
| | | </configuration> |
| | | </plugin> |
| | | <plugin> |
| | | <artifactId>maven-war-plugin</artifactId> |
| | | <groupId>org.apache.maven.plugins</groupId> |
| | | <version>2.2</version> |
| | | <configuration> |
| | | <!--如果想在没有web.xml文件的情况下构建WAR,请设置为false。--> |
| | | <failOnMissingWebXml>false</failOnMissingWebXml> |
| | | </configuration> |
| | | </plugin> |
| | | </plugins> |