You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

plexus-spring-1.2.pom 7.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Licensed under the Apache License, Version 2.0 (the "License");
  4. ~ you may not use this file except in compliance with the License.
  5. ~ You may obtain a copy of the License at
  6. ~
  7. ~ http://www.apache.org/licenses/LICENSE-2.0
  8. ~
  9. ~ Unless required by applicable law or agreed to in writing, software
  10. ~ distributed under the License is distributed on an "AS IS" BASIS,
  11. ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. ~ See the License for the specific language governing permissions and
  13. ~ limitations under the License.
  14. -->
  15. <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/maven-v4_0_0.xsd">
  16. <parent>
  17. <groupId>org.codehaus.plexus</groupId>
  18. <artifactId>plexus-components</artifactId>
  19. <version>1.1.12</version>
  20. </parent>
  21. <modelVersion>4.0.0</modelVersion>
  22. <groupId>org.codehaus.plexus</groupId>
  23. <artifactId>plexus-spring</artifactId>
  24. <version>1.2</version>
  25. <name>Plexus to Spring Adapter</name>
  26. <description>Bridge utility to use plexus components in a SpringFramework context.</description>
  27. <properties>
  28. <springVersion>2.5.5</springVersion>
  29. </properties>
  30. <dependencies>
  31. <dependency>
  32. <groupId>org.springframework</groupId>
  33. <artifactId>spring-context</artifactId>
  34. <version>${springVersion}</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework</groupId>
  38. <artifactId>spring-web</artifactId>
  39. <version>${springVersion}</version>
  40. <optional>true</optional>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework</groupId>
  44. <artifactId>spring-test</artifactId>
  45. <version>${springVersion}</version>
  46. <scope>test</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>commons-lang</groupId>
  50. <artifactId>commons-lang</artifactId>
  51. <version>2.4</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.codehaus.plexus</groupId>
  55. <artifactId>plexus-component-api</artifactId>
  56. <version>1.0-alpha-22</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.opensymphony</groupId>
  60. <artifactId>webwork</artifactId>
  61. <version>2.2.6</version>
  62. <optional>true</optional>
  63. </dependency>
  64. <dependency>
  65. <groupId>javax.servlet</groupId>
  66. <artifactId>servlet-api</artifactId>
  67. <version>2.3</version>
  68. <optional>true</optional>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.codehaus.plexus</groupId>
  72. <artifactId>plexus-utils</artifactId>
  73. <version>1.5.1</version>
  74. </dependency>
  75. <!-- for struts2 integration -->
  76. <dependency>
  77. <groupId>org.apache.struts</groupId>
  78. <artifactId>struts2-spring-plugin</artifactId>
  79. <version>2.1.2</version>
  80. <optional>true</optional>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.slf4j</groupId>
  84. <artifactId>slf4j-api</artifactId>
  85. <version>1.5.0</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.slf4j</groupId>
  89. <artifactId>slf4j-log4j12</artifactId>
  90. <version>1.5.0</version>
  91. <scope>test</scope>
  92. </dependency>
  93. <dependency>
  94. <groupId>junit</groupId>
  95. <artifactId>junit</artifactId>
  96. <version>3.8.2</version>
  97. <scope>compile</scope>
  98. <optional>true</optional>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.codehaus.plexus</groupId>
  102. <artifactId>plexus-log4j-logging</artifactId>
  103. <version>1.1-alpha-3</version>
  104. <scope>test</scope>
  105. <exclusions>
  106. <exclusion>
  107. <groupId>log4j</groupId>
  108. <artifactId>log4j</artifactId>
  109. </exclusion>
  110. </exclusions>
  111. </dependency>
  112. <dependency>
  113. <groupId>log4j</groupId>
  114. <artifactId>log4j</artifactId>
  115. <version>1.2.14</version>
  116. <scope>test</scope>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.apache.maven</groupId>
  120. <artifactId>maven-artifact</artifactId>
  121. <scope>test</scope>
  122. <version>2.0.8</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.apache.maven</groupId>
  126. <artifactId>maven-project</artifactId>
  127. <version>2.0.8</version>
  128. <scope>test</scope>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.apache.maven</groupId>
  132. <artifactId>maven-core</artifactId>
  133. <version>2.0.8</version>
  134. <scope>test</scope>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.apache.maven</groupId>
  138. <artifactId>maven-settings</artifactId>
  139. <version>2.0.8</version>
  140. <scope>test</scope>
  141. </dependency>
  142. <dependency>
  143. <groupId>org.apache.maven</groupId>
  144. <artifactId>maven-model</artifactId>
  145. <version>2.0.8</version>
  146. <scope>test</scope>
  147. </dependency>
  148. <dependency>
  149. <groupId>org.codehaus.plexus</groupId>
  150. <artifactId>plexus-command-line</artifactId>
  151. <version>1.0-alpha-2</version>
  152. <scope>test</scope>
  153. <exclusions>
  154. <exclusion>
  155. <groupId>org.codehaus.plexus</groupId>
  156. <artifactId>plexus-utils</artifactId>
  157. </exclusion>
  158. </exclusions>
  159. </dependency>
  160. <dependency>
  161. <groupId>org.codehaus.plexus.registry</groupId>
  162. <artifactId>plexus-registry-commons</artifactId>
  163. <version>1.0-alpha-3</version>
  164. <scope>test</scope>
  165. <exclusions>
  166. <exclusion>
  167. <groupId>ant</groupId>
  168. <artifactId>ant-optional</artifactId>
  169. </exclusion>
  170. <exclusion>
  171. <groupId>jdom</groupId>
  172. <artifactId>jdom</artifactId>
  173. </exclusion>
  174. <exclusion>
  175. <groupId>commons-logging</groupId>
  176. <artifactId>commons-logging-api</artifactId>
  177. </exclusion>
  178. </exclusions>
  179. </dependency>
  180. <dependency>
  181. <groupId>org.codehaus.plexus.registry</groupId>
  182. <artifactId>plexus-registry-api</artifactId>
  183. <version>1.0-alpha-3</version>
  184. <scope>test</scope>
  185. </dependency>
  186. </dependencies>
  187. <developers>
  188. <developer>
  189. <email>nicolas@apache.org</email>
  190. <name>Nicolas De Loof</name>
  191. </developer>
  192. </developers>
  193. <build>
  194. <plugins>
  195. <plugin>
  196. <artifactId>maven-compiler-plugin</artifactId>
  197. <version>2.0.2</version>
  198. <configuration>
  199. <source>1.5</source>
  200. <target>1.5</target>
  201. </configuration>
  202. </plugin>
  203. <plugin>
  204. <artifactId>maven-release-plugin</artifactId>
  205. <version>2.0-beta-7</version>
  206. <configuration>
  207. <useReleaseProfile>true</useReleaseProfile>
  208. <tagBase>https://svn.codehaus.org/plexus/plexus-components/tags/</tagBase>
  209. <arguments>-Prelease</arguments>
  210. </configuration>
  211. </plugin>
  212. </plugins>
  213. </build>
  214. <scm>
  215. <connection>scm:svn:http://svn.codehaus.org/plexus/plexus-components/tags/plexus-spring-1.2</connection>
  216. <developerConnection>scm:svn:https://svn.codehaus.org/plexus/plexus-components/tags/plexus-spring-1.2</developerConnection>
  217. <url>http://fisheye.codehaus.org/browse/plexus/plexus-components/tags/plexus-spring-1.2</url>
  218. </scm>
  219. </project>