PageRenderTime 48ms CodeModel.GetById 14ms RepoModel.GetById 0ms app.codeStats 0ms

/rmic-maven-plugin-1.1/pom.xml

#
XML | 183 lines | 149 code | 13 blank | 21 comment | 0 complexity | f56e5e840fc2215e52350527bcf73287 MD5 | raw file
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. * Copyright (c) 2008, Codehaus.org
  4. *
  5. * Permission is hereby granted, free of charge, to any person obtaining a copy of
  6. * this software and associated documentation files (the "Software"), to deal in
  7. * the Software without restriction, including without limitation the rights to
  8. * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
  9. * of the Software, and to permit persons to whom the Software is furnished to do
  10. * so, subject to the following conditions:
  11. *
  12. * The above copyright notice and this permission notice shall be included in all
  13. * copies or substantial portions of the Software.
  14. *
  15. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  18. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  20. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  21. * SOFTWARE.
  22. -->
  23. <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">
  24. <modelVersion>4.0.0</modelVersion>
  25. <parent>
  26. <groupId>org.codehaus.mojo</groupId>
  27. <artifactId>mojo-parent</artifactId>
  28. <version>24</version>
  29. </parent>
  30. <artifactId>rmic-maven-plugin</artifactId>
  31. <version>1.1</version>
  32. <packaging>maven-plugin</packaging>
  33. <name>RMI Compiler Maven Plugin</name>
  34. <description>RMI Compiler Maven Plugin</description>
  35. <url>http://mojo.codehaus.org/rmic-maven-plugin/</url>
  36. <inceptionYear>2006</inceptionYear>
  37. <prerequisites>
  38. <maven>2.0</maven>
  39. </prerequisites>
  40. <issueManagement>
  41. <system>jira</system>
  42. <url>http://jira.codehaus.org/browse/MRMIC</url>
  43. </issueManagement>
  44. <scm>
  45. <connection>scm:svn:http://svn.codehaus.org/mojo/tags/rmic-maven-plugin-1.1</connection>
  46. <developerConnection>scm:svn:https://svn.codehaus.org/mojo/tags/rmic-maven-plugin-1.1</developerConnection>
  47. <url>http://fisheye.codehaus.org/browse/mojo/tags/rmic-maven-plugin-1.1</url>
  48. </scm>
  49. <licenses>
  50. <license>
  51. <name>The MIT License</name>
  52. <url>http://www.opensource.org/licenses/mit-license.php</url>
  53. <distribution>repo</distribution>
  54. </license>
  55. </licenses>
  56. <developers>
  57. <developer>
  58. <id>kismet</id>
  59. <name>Stefano "Kismet" Lenzi</name>
  60. <email>protected</email>
  61. <roles>
  62. <role>Developer</role>
  63. </roles>
  64. <timezone>EST</timezone>
  65. </developer>
  66. <developer>
  67. <id>trygvis</id>
  68. <name>Trygve Laugstol</name>
  69. <email>trygvis@inamo.no</email>
  70. <roles>
  71. <role>Developer</role>
  72. </roles>
  73. </developer>
  74. <developer>
  75. <id>pgier</id>
  76. <name>Paul Gier</name>
  77. <email>pgier at redhat</email>
  78. <roles>
  79. <role>Developer</role>
  80. </roles>
  81. </developer>
  82. </developers>
  83. <dependencies>
  84. <dependency>
  85. <groupId>org.apache.maven</groupId>
  86. <artifactId>maven-plugin-api</artifactId>
  87. <version>2.0</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.apache.maven</groupId>
  91. <artifactId>maven-project</artifactId>
  92. <version>2.0</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.codehaus.plexus</groupId>
  96. <artifactId>plexus-archiver</artifactId>
  97. <version>1.0-alpha-5</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.codehaus.plexus</groupId>
  101. <artifactId>plexus-utils</artifactId>
  102. <version>1.0.4</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.codehaus.plexus</groupId>
  106. <artifactId>plexus-compiler-api</artifactId>
  107. <version>1.5.3</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.codehaus.plexus</groupId>
  111. <artifactId>plexus-container-default</artifactId>
  112. <version>1.0-alpha-9</version>
  113. </dependency>
  114. </dependencies>
  115. <reporting>
  116. <plugins>
  117. <plugin>
  118. <groupId>org.apache.maven.plugins</groupId>
  119. <artifactId>maven-checkstyle-plugin</artifactId>
  120. <version>2.2</version>
  121. <configuration>
  122. <headerLocation>License.txt</headerLocation>
  123. </configuration>
  124. </plugin>
  125. </plugins>
  126. </reporting>
  127. <profiles>
  128. <profile>
  129. <id>run-its</id>
  130. <activation>
  131. <property>
  132. <name>maven.test.skip</name>
  133. <value>!true</value>
  134. </property>
  135. </activation>
  136. <build>
  137. <plugins>
  138. <plugin>
  139. <groupId>org.apache.maven.plugins</groupId>
  140. <artifactId>maven-invoker-plugin</artifactId>
  141. <version>1.5</version>
  142. <configuration>
  143. <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
  144. <pomIncludes>
  145. <pomInclude>*/pom.xml</pomInclude>
  146. </pomIncludes>
  147. <postBuildHookScript>verify</postBuildHookScript>
  148. <localRepositoryPath>${project.build.directory}/it-repo</localRepositoryPath>
  149. <showErrors>true</showErrors>
  150. <goals>
  151. <goal>clean</goal>
  152. <goal>process-classes</goal>
  153. </goals>
  154. </configuration>
  155. <executions>
  156. <execution>
  157. <id>integration-test</id>
  158. <phase>integration-test</phase>
  159. <goals>
  160. <goal>install</goal>
  161. <goal>run</goal>
  162. </goals>
  163. </execution>
  164. </executions>
  165. </plugin>
  166. </plugins>
  167. </build>
  168. </profile>
  169. </profiles>
  170. </project>