kaidl-runtime-1.15.pom 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <!-- This module was also published with a richer model, Gradle metadata, -->
  5. <!-- which should be used instead. Do not delete the following line which -->
  6. <!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
  7. <!-- that they should prefer consuming it instead. -->
  8. <!-- do_not_remove: published-with-gradle-metadata -->
  9. <modelVersion>4.0.0</modelVersion>
  10. <groupId>com.github.kr328.kaidl</groupId>
  11. <artifactId>kaidl-runtime</artifactId>
  12. <version>1.15</version>
  13. <packaging>aar</packaging>
  14. <name>kaidl</name>
  15. <description>Generate AIDL-like android binder interface with Kotlin</description>
  16. <url>https://github.com/Kr328/kaidl</url>
  17. <licenses>
  18. <license>
  19. <name>MIT License</name>
  20. <url>http://www.opensource.org/licenses/mit-license.php</url>
  21. </license>
  22. </licenses>
  23. <developers>
  24. <developer>
  25. <id>kr328</id>
  26. <name>Kr328</name>
  27. <email>kr328app@outlook.com</email>
  28. </developer>
  29. </developers>
  30. <dependencies>
  31. <dependency>
  32. <groupId>org.jetbrains.kotlin</groupId>
  33. <artifactId>kotlin-stdlib-jdk8</artifactId>
  34. <version>1.5.30</version>
  35. <scope>compile</scope>
  36. </dependency>
  37. </dependencies>
  38. </project>