unmeta
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.axzae</groupId> <artifactId>unmeta</artifactId> <version>1.2.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>com.axzae</groupId> <artifactId>unmeta</artifactId> <version>1.2.1</version> <name>Unmeta Kotlin Gradle Plugin for Android</name> <description>Remove @DebugMetadata annotation from your Kotlin classes</description> <url>https://github.com/axzae/unmeta-gradle-plugin</url> <organization> <name>Axzae</name> <url>https://www.axzae.com</url> </organization> <licenses> <license> <name>The MIT License</name> <url>https://opensource.org/license/mit/</url> </license> </licenses> <developers> <developer> <name>You Qi</name> </developer> </developers> <scm> <connection>scm:git:git://github.com/axzae/unmeta-gradle-plugin.git</connection> <developerConnection>scm:git:ssh://git@github.com:axzae/unmeta-gradle-plugin.git</developerConnection> <url>https://github.com/axzae/unmeta-gradle-plugin</url> </scm> <dependencies> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> <version>1.9.10</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm</artifactId> <version>9.6</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.android.tools.build</groupId> <artifactId>gradle</artifactId> <version>7.3.1</version> <scope>runtime</scope> </dependency> </dependencies> </project>