Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

241 rinda
8.4KB

  1. <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">
  2. <modelVersion>4.0.0</modelVersion>
  3. <parent>
  4. <groupId>org.apache.maven</groupId>
  5. <artifactId>maven-parent</artifactId>
  6. <version>37</version>
  7. <relativePath>../pom.xml</relativePath>
  8. </parent>
  9. <groupId>tmp.org.apache.maven.plugins</groupId>
  10. <artifactId>placeholder.maven-plugins</artifactId>
  11. <packaging>pom</packaging>
  12. <name>Apache Maven Plugins</name>
  13. <description>Maven Plugins</description>
  14. <url>https://maven.apache.org/plugins/</url>
  15. <ciManagement>
  16. <system>Jenkins</system>
  17. <url>https://ci-builds.apache.org/job/Maven/job/maven-box/job/maven-plugins/</url>
  18. </ciManagement>
  19. <distributionManagement>
  20. <site>
  21. <id>apache.website</id>
  22. <url>scm:svn:https://svn.apache.org/repos/asf/maven/website/components/plugins-archives/</url>
  23. </site>
  24. </distributionManagement>
  25. <properties>
  26. <maven.site.path>plugins-archives/${project.artifactId}-LATEST</maven.site.path>
  27. </properties>
  28. <dependencies>
  29. <dependency>
  30. <groupId>org.apache.maven.plugin-tools</groupId>
  31. <artifactId>maven-plugin-annotations</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.apache.maven.plugins</groupId>
  35. <artifactId>maven-plugins</artifactId>
  36. <version>37</version>
  37. </dependency>
  38. </dependencies>
  39. <build>
  40. <pluginManagement>
  41. <plugins>
  42. <plugin>
  43. <groupId>org.apache.maven.plugins</groupId>
  44. <artifactId>maven-changes-plugin</artifactId>
  45. <configuration>
  46. <issueManagementSystems>
  47. <issueManagementSystem>JIRA</issueManagementSystem>
  48. </issueManagementSystems>
  49. <maxEntries>1000</maxEntries>
  50. <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
  51. <templateDirectory>org/apache/maven/plugins</templateDirectory>
  52. <subject>[ANN] ${project.name} ${project.version} Released</subject>
  53. <toAddresses>
  54. <toAddress implementation="java.lang.String">announce@maven.apache.org</toAddress>
  55. <toAddress implementation="java.lang.String">users@maven.apache.org</toAddress>
  56. </toAddresses>
  57. <ccAddresses>
  58. <ccAddress implementation="java.lang.String">dev@maven.apache.org</ccAddress>
  59. </ccAddresses>
  60. <fromDeveloperId>${apache.availid}</fromDeveloperId>
  61. <smtpHost>${smtp.host}</smtpHost>
  62. </configuration>
  63. <dependencies>
  64. <dependency>
  65. <groupId>org.apache.maven.shared</groupId>
  66. <artifactId>maven-shared-resources</artifactId>
  67. <version>2</version>
  68. </dependency>
  69. </dependencies>
  70. </plugin>
  71. <plugin>
  72. <groupId>org.apache.maven.plugins</groupId>
  73. <artifactId>maven-release-plugin</artifactId>
  74. <configuration>
  75. <releaseProfiles>apache-release,run-its</releaseProfiles>
  76. </configuration>
  77. </plugin>
  78. <plugin>
  79. <groupId>org.apache.maven.plugins</groupId>
  80. <artifactId>maven-plugin-plugin</artifactId>
  81. <executions>
  82. <execution>
  83. <id>default-descriptor</id>
  84. <phase>process-classes</phase>
  85. </execution>
  86. <execution>
  87. <id>generate-helpmojo</id>
  88. <goals>
  89. <goal>helpmojo</goal>
  90. </goals>
  91. </execution>
  92. </executions>
  93. </plugin>
  94. <plugin>
  95. <groupId>org.apache.maven.plugins</groupId>
  96. <artifactId>maven-site-plugin</artifactId>
  97. <configuration>
  98. <skipDeploy>true</skipDeploy>
  99. </configuration>
  100. </plugin>
  101. </plugins>
  102. </pluginManagement>
  103. <plugins>
  104. <plugin>
  105. <groupId>org.apache.maven.plugins</groupId>
  106. <artifactId>maven-plugin-plugin</artifactId>
  107. </plugin>
  108. <plugin>
  109. <groupId>org.apache.maven.plugins</groupId>
  110. <artifactId>maven-scm-publish-plugin</artifactId>
  111. <configuration>
  112. <content>${project.reporting.outputDirectory}</content>
  113. </configuration>
  114. <executions>
  115. <execution>
  116. <id>scm-publish</id>
  117. <phase>site-deploy</phase>
  118. <goals>
  119. <goal>publish-scm</goal>
  120. </goals>
  121. </execution>
  122. </executions>
  123. </plugin>
  124. <plugin>
  125. <groupId>org.apache.maven.plugins</groupId>
  126. <artifactId>maven-enforcer-plugin</artifactId>
  127. <executions>
  128. <execution>
  129. <goals>
  130. <goal>enforce</goal>
  131. </goals>
  132. <id>ensure-no-container-api</id>
  133. <configuration>
  134. <rules>
  135. <bannedDependencies>
  136. <excludes>
  137. <exclude>org.codehaus.plexus:plexus-component-api</exclude>
  138. </excludes>
  139. <message>The new containers are not supported. You probably added a dependency that is missing the exclusions.</message>
  140. </bannedDependencies>
  141. </rules>
  142. <fail>true</fail>
  143. </configuration>
  144. </execution>
  145. </executions>
  146. </plugin>
  147. </plugins>
  148. </build>
  149. <reporting>
  150. <plugins>
  151. <plugin>
  152. <groupId>org.apache.maven.plugins</groupId>
  153. <artifactId>maven-plugin-plugin</artifactId>
  154. </plugin>
  155. </plugins>
  156. </reporting>
  157. <profiles>
  158. <profile>
  159. <id>quality-checks</id>
  160. <activation>
  161. <property>
  162. <name>quality-checks</name>
  163. <value>true</value>
  164. </property>
  165. </activation>
  166. <build>
  167. <plugins>
  168. <plugin>
  169. <groupId>org.apache.maven.plugins</groupId>
  170. <artifactId>maven-docck-plugin</artifactId>
  171. <executions>
  172. <execution>
  173. <id>docck-check</id>
  174. <phase>verify</phase>
  175. <goals>
  176. <goal>check</goal>
  177. </goals>
  178. </execution>
  179. </executions>
  180. </plugin>
  181. </plugins>
  182. </build>
  183. </profile>
  184. <profile>
  185. <id>run-its</id>
  186. <properties>
  187. <invoker.maven.compiler.source>${maven.compiler.source}</invoker.maven.compiler.source>
  188. <invoker.maven.compiler.target>${maven.compiler.target}</invoker.maven.compiler.target>
  189. <maven.it.failure.ignore>false</maven.it.failure.ignore>
  190. </properties>
  191. <build>
  192. <plugins>
  193. <plugin>
  194. <groupId>org.apache.maven.plugins</groupId>
  195. <artifactId>maven-invoker-plugin</artifactId>
  196. <configuration>
  197. <debug>true</debug>
  198. <projectsDirectory>src/it</projectsDirectory>
  199. <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
  200. <preBuildHookScript>setup</preBuildHookScript>
  201. <postBuildHookScript>verify</postBuildHookScript>
  202. <localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
  203. <settingsFile>src/it/settings.xml</settingsFile>
  204. <pomIncludes>
  205. <pomInclude>*/pom.xml</pomInclude>
  206. </pomIncludes>
  207. <properties>
  208. <maven.compiler.source>${invoker.maven.compiler.source}</maven.compiler.source>
  209. <maven.compiler.target>${invoker.maven.compiler.target}</maven.compiler.target>
  210. <https.protocols>${https.protocols}</https.protocols>
  211. </properties>
  212. <ignoreFailures>${maven.it.failure.ignore}</ignoreFailures>
  213. </configuration>
  214. <executions>
  215. <execution>
  216. <id>integration-test</id>
  217. <goals>
  218. <goal>install</goal>
  219. <goal>integration-test</goal>
  220. <goal>verify</goal>
  221. </goals>
  222. </execution>
  223. </executions>
  224. </plugin>
  225. </plugins>
  226. </build>
  227. </profile>
  228. <profile>
  229. <id>reporting</id>
  230. <reporting>
  231. <plugins>
  232. <plugin>
  233. <groupId>org.apache.maven.plugins</groupId>
  234. <artifactId>maven-invoker-plugin</artifactId>
  235. </plugin>
  236. </plugins>
  237. </reporting>
  238. </profile>
  239. </profiles>
  240. <version>37</version>
  241. </project>