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.

pom.xml 2.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <!--
  2. ~ Copyright 2005-2006 The Apache Software Foundation.
  3. ~
  4. ~ Licensed under the Apache License, Version 2.0 (the "License");
  5. ~ you may not use this file except in compliance with the License.
  6. ~ You may obtain a copy of the License at
  7. ~
  8. ~ http://www.apache.org/licenses/LICENSE-2.0
  9. ~
  10. ~ Unless required by applicable law or agreed to in writing, software
  11. ~ distributed under the License is distributed on an "AS IS" BASIS,
  12. ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. ~ See the License for the specific language governing permissions and
  14. ~ limitations under the License.
  15. -->
  16. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  17. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  18. <parent>
  19. <groupId>org.apache.maven.repository</groupId>
  20. <artifactId>maven-repository-manager</artifactId>
  21. <version>1.0-SNAPSHOT</version>
  22. </parent>
  23. <modelVersion>4.0.0</modelVersion>
  24. <artifactId>maven-repository-indexer</artifactId>
  25. <name>Maven Repository Indexer</name>
  26. <dependencies>
  27. <dependency>
  28. <groupId>org.apache.maven</groupId>
  29. <artifactId>maven-artifact</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.apache.maven</groupId>
  33. <artifactId>maven-artifact-manager</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.apache.maven</groupId>
  37. <artifactId>maven-model</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>lucene</groupId>
  41. <artifactId>lucene</artifactId>
  42. <version>1.4.3</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.codehaus.plexus</groupId>
  46. <artifactId>plexus-utils</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.codehaus.plexus</groupId>
  50. <artifactId>plexus-container-default</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.apache.maven.repository</groupId>
  54. <artifactId>maven-repository-utils</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.apache.maven</groupId>
  58. <artifactId>maven-repository-metadata</artifactId>
  59. </dependency>
  60. </dependencies>
  61. </project>