gradle-plugin-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>dev.teogor.stitch</groupId> <artifactId>gradle-plugin-api</artifactId> <version>1.0.0-alpha02</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>dev.teogor.stitch</groupId> <artifactId>gradle-plugin-api</artifactId> <version>1.0.0-alpha02</version> <name>Stitch Gradle Plugin API</name> <description>🪡 Stitch handles the Room boilerplate, including automatic generation of repositories, dependency injection integration, and flexible customizations.</description> <url>https://source.teogor.dev/stitch</url> <inceptionYear>2024</inceptionYear> <licenses> <license> <name>APACHE_2_0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>http://www.apache.org/licenses/LICENSE-2.0.txt</distribution> </license> </licenses> <developers> <developer> <id>teogor</id> <name>Teodor Grigor</name> <email>open-source@teogor.dev</email> <url>https://teogor.dev</url> <organization>Teogor</organization> <organizationUrl>https://github.com/teogor</organizationUrl> <roles> <role>Code Owner</role> <role>Developer</role> <role>Designer</role> <role>Maintainer</role> </roles> <timezone>UTC+2</timezone> </developer> </developers> <scm> <connection>https://github.com/teogor/stitch.git</connection> <developerConnection>ssh://git@github.com/teogor/stitch.git</developerConnection> <url>https://github.com/teogor/stitch</url> </scm> <dependencies> <dependency> <groupId>com.android.tools.build</groupId> <artifactId>gradle</artifactId> <version>8.2.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-gradle-plugin</artifactId> <version>1.9.22</version> <scope>compile</scope> </dependency> </dependencies> </project>