awesomelib
Used in: 0 components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
Overview
Description
An Awesome Library
Snippets
<dependency> <groupId>com.github.pedrodimoura</groupId> <artifactId>awesomelib</artifactId> <version>1.0</version> </dependency>
Maven POM File
<?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>com.github.pedrodimoura</groupId> <artifactId>awesomelib</artifactId> <version>1.0</version> <packaging>aar</packaging> <name>Awesome Lib</name> <description>An Awesome Library</description> <url>https://github.com/pedrodimoura/PublishLib</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>pedrodimoura</id> <name>Pedro Moura</name> </developer> </developers> <scm> <connection>scm:git@github.com:pedrodimoura/PublishLib.git</connection> <developerConnection>scm:git@github.com:pedrodimoura/PublishLib.git</developerConnection> <url>https://github.com/pedrodimoura/PublishLib</url> </scm> <dependencies> <dependency> <groupId>com.github.thiagokimo</groupId> <artifactId>faker</artifactId> <version>1.4.3</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.android.support</groupId> <artifactId>appcompat-v7</artifactId> <version>26.1.0</version> <scope>compile</scope> </dependency> </dependencies> </project>