bugsense-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.rciovati.tools</groupId> <artifactId>bugsense-plugin</artifactId> <version>1.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>io.github.rciovati.tools</groupId> <artifactId>bugsense-plugin</artifactId> <version>1.0.0</version> <name>Bugsense Gradle Plugin</name> <description>Upload your Proguard mapping files to BugSense as part of the build process.</description> <url>hhttps://github.com/rciovati/Bugsense-Gradle-Plugin</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>RCI</id> <name>Riccardo Ciovati</name> </developer> </developers> <scm> <connection>scm:git@github.com:rciovati/Bugsense-Gradle-Plugin.git</connection> <developerConnection>scm:git@github.com:rciovati/Bugsense-Gradle-Plugin.git</developerConnection> <url>https://github.com/rciovati/Bugsense-Gradle-Plugin</url> </scm> <dependencies> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpmime</artifactId> <version>4.3.5</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.squareup.okhttp</groupId> <artifactId>mockwebserver</artifactId> <version>2.0.0</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <dependency> <groupId>org.spockframework</groupId> <artifactId>spock-core</artifactId> <version>0.7-groovy-1.8</version> <scope>test</scope> </dependency> <dependency> <groupId>org.codehaus.groovy.modules.http-builder</groupId> <artifactId>http-builder</artifactId> <version>0.7.1</version> <scope>compile</scope> </dependency> </dependencies> </project>