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 1.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>archiva-base</artifactId>
  7. <groupId>org.apache.archiva</groupId>
  8. <version>3.0.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>archiva-storage-fs</artifactId>
  12. <name>Archiva Base :: Storage Filesystem Based</name>
  13. <properties>
  14. <site.staging.base>${project.parent.parent.basedir}</site.staging.base>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.apache.archiva</groupId>
  19. <artifactId>archiva-storage-api</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.apache.archiva</groupId>
  23. <artifactId>archiva-filelock</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>commons-io</groupId>
  27. <artifactId>commons-io</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>junit</groupId>
  31. <artifactId>junit</artifactId>
  32. <scope>test</scope>
  33. </dependency>
  34. </dependencies>
  35. <build>
  36. <plugins>
  37. <plugin>
  38. <groupId>org.apache.maven.plugins</groupId>
  39. <artifactId>maven-surefire-plugin</artifactId>
  40. <configuration>
  41. <systemPropertyVariables>
  42. <basedir>${basedir}</basedir>
  43. </systemPropertyVariables>
  44. </configuration>
  45. </plugin>
  46. </plugins>
  47. </build>
  48. </project>