Created
August 22, 2018 17:32
-
-
Save trevjonez/62b3d7907c13ca0728139d85ddf9cfbb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"formatVersion": "0.4", | |
"component": { | |
"group": "com.trevjonez", | |
"module": "and-lib", | |
"version": "0.1.0", | |
"attributes": { | |
"org.gradle.status": "release" | |
} | |
}, | |
"createdBy": { | |
"gradle": { | |
"version": "4.9", | |
"buildId": "imwaoaktkfdbtej6lelugkn3ym" | |
} | |
}, | |
"variants": [ | |
{ | |
"name": "legacy-support-redirect", | |
"attributes": { | |
"org.gradle.usage": "java-api" | |
}, | |
"dependencies": [ | |
{ | |
"group": "com.trevjonez", | |
"module": "and-lib_release", | |
"version": { | |
"prefers": "0.1.0" | |
} | |
} | |
] | |
}, | |
{ | |
"name": "debugApi", | |
"attributes": { | |
"com.android.build.api.attributes.BuildTypeAttr": "debug", | |
"com.android.build.gradle.internal.dependency.AndroidTypeAttr": "Aar", | |
"org.gradle.usage": "java-api" | |
}, | |
"available-at": { | |
"url": "../../and-lib_debug/0.1.0/and-lib_debug-0.1.0.module", | |
"group": "com.trevjonez", | |
"module": "and-lib_debug", | |
"version": "0.1.0" | |
} | |
}, | |
{ | |
"name": "debugRuntime", | |
"attributes": { | |
"com.android.build.api.attributes.BuildTypeAttr": "debug", | |
"com.android.build.gradle.internal.dependency.AndroidTypeAttr": "Aar", | |
"org.gradle.usage": "java-runtime" | |
}, | |
"available-at": { | |
"url": "../../and-lib_debug/0.1.0/and-lib_debug-0.1.0.module", | |
"group": "com.trevjonez", | |
"module": "and-lib_debug", | |
"version": "0.1.0" | |
} | |
}, | |
{ | |
"name": "releaseApi", | |
"attributes": { | |
"com.android.build.api.attributes.BuildTypeAttr": "release", | |
"com.android.build.gradle.internal.dependency.AndroidTypeAttr": "Aar", | |
"org.gradle.usage": "java-api" | |
}, | |
"available-at": { | |
"url": "../../and-lib_release/0.1.0/and-lib_release-0.1.0.module", | |
"group": "com.trevjonez", | |
"module": "and-lib_release", | |
"version": "0.1.0" | |
} | |
}, | |
{ | |
"name": "releaseRuntime", | |
"attributes": { | |
"com.android.build.api.attributes.BuildTypeAttr": "release", | |
"com.android.build.gradle.internal.dependency.AndroidTypeAttr": "Aar", | |
"org.gradle.usage": "java-runtime" | |
}, | |
"available-at": { | |
"url": "../../and-lib_release/0.1.0/and-lib_release-0.1.0.module", | |
"group": "com.trevjonez", | |
"module": "and-lib_release", | |
"version": "0.1.0" | |
} | |
} | |
] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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.trevjonez</groupId> | |
<artifactId>and-lib</artifactId> | |
<version>0.1.0</version> | |
<packaging>pom</packaging> | |
<dependencies> | |
<dependency> | |
<groupId>com.trevjonez</groupId> | |
<artifactId>and-lib_release</artifactId> | |
<version>0.1.0</version> | |
<scope>compile</scope> | |
</dependency> | |
</dependencies> | |
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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.trevjonez</groupId> | |
<artifactId>and-lib_release</artifactId> | |
<version>0.1.0</version> | |
<packaging>aar</packaging> | |
<dependencies> | |
<dependency> | |
<groupId>io.reactivex.rxjava2</groupId> | |
<artifactId>rxjava</artifactId> | |
<version>2.2.0</version> | |
<scope>compile</scope> | |
</dependency> | |
<dependency> | |
<groupId>com.squareup.moshi</groupId> | |
<artifactId>moshi</artifactId> | |
<version>1.6.0</version> | |
<scope>runtime</scope> | |
</dependency> | |
</dependencies> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment