mvn.pom 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
  4. http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>org.ethereum</groupId>
  7. <artifactId>geth</artifactId>
  8. <version>{{.Version}}</version>
  9. <packaging>aar</packaging>
  10. <name>Android Ethereum Client</name>
  11. <description>Android port of the go-ethereum libraries and node</description>
  12. <url>https://github.com/ethereum/go-ethereum</url>
  13. <inceptionYear>2015</inceptionYear>
  14. <licenses>
  15. <license>
  16. <name>GNU Lesser General Public License, Version 3.0</name>
  17. <url>https://www.gnu.org/licenses/lgpl-3.0.en.html</url>
  18. <distribution>repo</distribution>
  19. </license>
  20. </licenses>
  21. <organization>
  22. <name>Ethereum</name>
  23. <url>https://ethereum.org</url>
  24. </organization>
  25. <developers>
  26. <developer>
  27. <id>karalabe</id>
  28. <name>Péter Szilágyi</name>
  29. <email>peterke@gmail.com</email>
  30. <url>https://github.com/karalabe</url>
  31. <properties>
  32. <picUrl>https://www.gravatar.com/avatar/2ecbf0f5b4b79eebf8c193e5d324357f?s=256</picUrl>
  33. </properties>
  34. </developer>
  35. </developers>
  36. <contributors>{{range .Contributors}}
  37. <contributor>
  38. <name>{{.Name}}</name>
  39. <email>{{.Email}}</email>
  40. </contributor>{{end}}
  41. </contributors>
  42. <issueManagement>
  43. <system>GitHub Issues</system>
  44. <url>https://github.com/ethereum/go-ethereum/issues/</url>
  45. </issueManagement>
  46. <scm>
  47. <url>https://github.com/ethereum/go-ethereum</url>
  48. </scm>
  49. </project>