Maven:父POM文件,Effective POM for project

匿名 (未验证) 提交于 2019-12-02 23:05:13
<?xml version="1.0" encoding="GBK"?> <!-- ====================================================================== --> <!--                                                                        --> <!-- Generated by Maven Help Plugin on 2019-02-02T21:18:23+08:00            --> <!-- See: http://maven.apache.org/plugins/maven-help-plugin/                --> <!--                                                                        --> <!-- ====================================================================== --> <!-- ====================================================================== --> <!--                                                                        --> <!-- Effective POM for project                                              --> <!-- 'com.companyname.project-group:project:jar:1.0'                        --> <!--                                                                        --> <!-- ====================================================================== --> <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.companyname.project-group</groupId>   <artifactId>project</artifactId>   <version>1.0</version>   <repositories>     <repository>       <snapshots>         <enabled>false</enabled>       </snapshots>       <id>central</id>       <name>Central Repository</name>       <url>https://repo.maven.apache.org/maven2</url>     </repository>   </repositories>   <pluginRepositories>     <pluginRepository>       <releases>         <updatePolicy>never</updatePolicy>       </releases>       <snapshots>         <enabled>false</enabled>       </snapshots>       <id>central</id>       <name>Central Repository</name>       <url>https://repo.maven.apache.org/maven2</url>     </pluginRepository>   </pluginRepositories>   <build>     <sourceDirectory>C:\Users\ysq2018China\Desktop\mvn\mvn-01\src\main\java</sourceDirectory>     <scriptSourceDirectory>C:\Users\ysq2018China\Desktop\mvn\mvn-01\src\main\scripts</scriptSourceDirectory>     <testSourceDirectory>C:\Users\ysq2018China\Desktop\mvn\mvn-01\src\test\java</testSourceDirectory>     <outputDirectory>C:\Users\ysq2018China\Desktop\mvn\mvn-01\target\classes</outputDirectory>     <testOutputDirectory>C:\Users\ysq2018China\Desktop\mvn\mvn-01\target\test-classes</testOutputDirectory>     <resources>       <resource>         <directory>C:\Users\ysq2018China\Desktop\mvn\mvn-01\src\main\resources</directory>       </resource>     </resources>     <testResources>       <testResource>         <directory>C:\Users\ysq2018China\Desktop\mvn\mvn-01\src\test\resources</directory>       </testResource>     </testResources>     <directory>C:\Users\ysq2018China\Desktop\mvn\mvn-01\target</directory>     <finalName>project-1.0</finalName>     <pluginManagement>       <plugins>         <plugin>           <artifactId>maven-antrun-plugin</artifactId>           <version>1.3</version>         </plugin>         <plugin>           <artifactId>maven-assembly-plugin</artifactId>           <version>2.2-beta-5</version>         </plugin>         <plugin>           <artifactId>maven-dependency-plugin</artifactId>           <version>2.8</version>         </plugin>         <plugin>           <artifactId>maven-release-plugin</artifactId>           <version>2.5.3</version>         </plugin>       </plugins>     </pluginManagement>     <plugins>       <plugin>         <artifactId>maven-clean-plugin</artifactId>         <version>2.5</version>         <executions>           <execution>             <id>default-clean</id>             <phase>clean</phase>             <goals>               <goal>clean</goal>             </goals>           </execution>         </executions>       </plugin>       <plugin>         <artifactId>maven-resources-plugin</artifactId>         <version>2.6</version>         <executions>           <execution>             <id>default-testResources</id>             <phase>process-test-resources</phase>             <goals>               <goal>testResources</goal>             </goals>           </execution>           <execution>             <id>default-resources</id>             <phase>process-resources</phase>             <goals>               <goal>resources</goal>             </goals>           </execution>         </executions>       </plugin>       <plugin>         <artifactId>maven-jar-plugin</artifactId>         <version>2.4</version>         <executions>           <execution>             <id>default-jar</id>             <phase>package</phase>             <goals>               <goal>jar</goal>             </goals>           </execution>         </executions>       </plugin>       <plugin>         <artifactId>maven-compiler-plugin</artifactId>         <version>3.1</version>         <executions>           <execution>             <id>default-compile</id>             <phase>compile</phase>             <goals>               <goal>compile</goal>             </goals>           </execution>           <execution>             <id>default-testCompile</id>             <phase>test-compile</phase>             <goals>               <goal>testCompile</goal>             </goals>           </execution>         </executions>       </plugin>       <plugin>         <artifactId>maven-surefire-plugin</artifactId>         <version>2.12.4</version>         <executions>           <execution>             <id>default-test</id>             <phase>test</phase>             <goals>               <goal>test</goal>             </goals>           </execution>         </executions>       </plugin>       <plugin>         <artifactId>maven-install-plugin</artifactId>         <version>2.4</version>         <executions>           <execution>             <id>default-install</id>             <phase>install</phase>             <goals>               <goal>install</goal>             </goals>           </execution>         </executions>       </plugin>       <plugin>         <artifactId>maven-deploy-plugin</artifactId>         <version>2.7</version>         <executions>           <execution>             <id>default-deploy</id>             <phase>deploy</phase>             <goals>               <goal>deploy</goal>             </goals>           </execution>         </executions>       </plugin>       <plugin>         <artifactId>maven-site-plugin</artifactId>         <version>3.3</version>         <executions>           <execution>             <id>default-site</id>             <phase>site</phase>             <goals>               <goal>site</goal>             </goals>             <configuration>               <outputDirectory>C:\Users\ysq2018China\Desktop\mvn\mvn-01\target\site</outputDirectory>               <reportPlugins>                 <reportPlugin>                   <groupId>org.apache.maven.plugins</groupId>                   <artifactId>maven-project-info-reports-plugin</artifactId>                 </reportPlugin>               </reportPlugins>             </configuration>           </execution>           <execution>             <id>default-deploy</id>             <phase>site-deploy</phase>             <goals>               <goal>deploy</goal>             </goals>             <configuration>               <outputDirectory>C:\Users\ysq2018China\Desktop\mvn\mvn-01\target\site</outputDirectory>               <reportPlugins>                 <reportPlugin>                   <groupId>org.apache.maven.plugins</groupId>                   <artifactId>maven-project-info-reports-plugin</artifactId>                 </reportPlugin>               </reportPlugins>             </configuration>           </execution>         </executions>         <configuration>           <outputDirectory>C:\Users\ysq2018China\Desktop\mvn\mvn-01\target\site</outputDirectory>           <reportPlugins>             <reportPlugin>               <groupId>org.apache.maven.plugins</groupId>               <artifactId>maven-project-info-reports-plugin</artifactId>             </reportPlugin>           </reportPlugins>         </configuration>       </plugin>     </plugins>   </build>   <reporting>     <outputDirectory>C:\Users\ysq2018China\Desktop\mvn\mvn-01\target\site</outputDirectory>   </reporting> </project>

 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!