Coder Social home page Coder Social logo

valery-barysok / gradle-components Goto Github PK

View Code? Open in Web Editor NEW

This project forked from cooperok/gradle-components

0.0 2.0 0.0 112 KB

Example project to show how to separate duplicated code and duplicated gradle configurations into jars and gradle plugins

License: MIT License

Groovy 90.68% Java 9.32%

gradle-components's Introduction

gradle-components

Example project to show how to separate duplicated code and duplicated gradle configurations into jars and gradle plugins

Artifactory properties

Properties for Gradle are not set inside project. You can add them globally to Gradle inside ~/.gradle/gradle.properties file. For example

ArtifactoryUrl=http://localhost:8081
ArtifactoryUser=admin
ArtifactoryPassword=password

How to use

To compile all components and publish them you can run this command

./gradlew assemble test compileComponents artifactoryPublish

You can add dependency for every component inside another project this way

buildscript {
    repositories {
        jcenter()
        maven {
            url "$ArtifactoryUrl/libs-release-local"
            credentials {
                username = ArtifactoryUser
                password = ArtifactoryPassword
            }
        }
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:1.3.0'
        classpath 'com.example:android-library-publishing-plugin:1.0'
        classpath 'com.example:android-signing-plugin:1.0'
        classpath 'com.example:android-base-plugin:1.0'
    }
}

allprojects {
    repositories {
        jcenter()
        maven {
            url "$ArtifactoryUrl/libs-release-local"
            credentials {
                username = ArtifactoryUser
                password = ArtifactoryPassword
            }
        }
    }
}

dependencie {
    compile 'com.example:util:1.0'
    compile 'com.example:logger:1.0'
}

apply plugin: 'android-library-publishing'
apply plugin: 'android-signing'
apply plugin: 'android-base'

gradle-components's People

Contributors

cooperok avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.