pom.xml 922 B

123456789101112131415161718192021222324252627
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Copyright (c) 2016 Sebastian Stenzel
  4. This file is licensed under the terms of the MIT license.
  5. See the LICENSE.txt file for more info.
  6. Contributors:
  7. Sebastian Stenzel - initial API and implementation
  8. -->
  9. <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">
  10. <modelVersion>4.0.0</modelVersion>
  11. <parent>
  12. <groupId>org.cryptomator</groupId>
  13. <artifactId>main</artifactId>
  14. <version>1.1.0-SNAPSHOT</version>
  15. </parent>
  16. <artifactId>frontend-api</artifactId>
  17. <name>Cryptomator frontend: API</name>
  18. <description>API for filesystem frontends</description>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.cryptomator</groupId>
  22. <artifactId>filesystem-api</artifactId>
  23. </dependency>
  24. </dependencies>
  25. </project>