201

I have 2 different project build on mvn. I am trying to replace to Gradle.

Project 1 is an SDK, and project 2 is using that sdk (example).

In the time of maven it creates artifact using mvn install which adds the whole project into local repository.

I like to work in gradle like that. I like project 1 build.gradle need to post it as a gradle local repository and then example project need to use it.

In maven we do mvn install which adds a project artifact into .m2 folder but how to do in gradle so what i can add a project artefact's into the local repository.

Any way that I can do so?

peterh
  • 1
  • 15
  • 76
  • 99
Rajmahendra
  • 2,882
  • 3
  • 28
  • 40
  • 1
    http://stackoverflow.com/questions/2572811/gradle-make-a-3rd-party-jar-available-to-local-gradle-repository – clacke May 07 '13 at 09:26

4 Answers4

195

sdk/build.gradle:

apply plugin: "maven"

group = "foo"
version = "1.0"

example/build.gradle:

repositories {
    mavenLocal()
}

dependencies {
    compile "foo:sdk:1.0"
}

$sdk> gradle install

$example> gradle build
the_storyteller
  • 2,095
  • 26
  • 34
Peter Niederwieser
  • 116,995
  • 20
  • 311
  • 250
  • 2
    apply plugin: "maven" and $sdk> gradle install this will install the sdk into .m2 right ? And mavenLocal() also gets info from .m2 and .gradle ? – Rajmahendra May 26 '11 at 10:01
  • 20
    `gradle install` publishes into the local Maven repo, and `mavenLocal()` makes sure to look there for dependencies. – Peter Niederwieser May 27 '11 at 05:31
  • 1
    Is Gradle not "phase-oriented" like Maven? IOW, if I do a `gradle publish` will it not also go through an `install` phase? – Chris F Jan 07 '20 at 21:44
  • @PeterNiederwieser Do I should consider that `apply plugin: "maven"` makes available the "install" task for Gradle, right? - in some way - it is how a "transitive" (if the term fits well here) task from Maven to Gradle, right?. Consider to update your answer. Thank You – Manuel Jordan Jul 06 '21 at 15:34
  • 2
    This is no long relevant in Gradle 7+ as the `maven` plugin has been removed. Instead you need to use the `maven-publish` plugin and then use `gradle publishToMavenLocal`. – phillipuniverse Aug 16 '21 at 18:23
116

You may be looking for:

gradle publishToMavenLocal

Available with:

apply plugin: 'maven-publish'

See: Maven Publish Plugin

Manuel Jordan
  • 13,649
  • 17
  • 81
  • 128
Miguel Reyes
  • 2,104
  • 1
  • 17
  • 11
9

Check out Gradle's documentation on multi-project builds.

Here's an example, with some extra dependencies. Just call gradle install in the root folder, and all will be built and put to your local repo.

Folder structure:

root
+--> build.gradle
+--> settings.gradle
+--> sdk
|    +--> build.gradle
+--> example
     +--> build.gradle

root/build.gradle:

allprojects {
  apply plugin: 'java'
  apply plugin: 'maven'

  group = 'myGroup'
  version = '0.1-SNAPSHOT'
}

root/settings.gradle:

include 'sdk'
include 'example'

root/sdk/build.gradle:

dependencies {
  // just an example external dep.
  compile group:'commons-lang', name:'commons-lang', version:'2.3'
}

root/example/build.gradle:

dependencies {
  compile project(':sdk')
  compile group:'log4j', name:'log4j', version:'1.2.16'
}
csaba.sulyok
  • 1,792
  • 2
  • 12
  • 12
  • 7
    Is this ideal practice? What if he wants to create a new project, example2, which also relies on sdk? Now he has to put 2 unrelated projects under a root project just because they share a dependency? You would think this entire 'multi-project' setup would be 1 Git project as well. Again, is this bad for company / multi-developer workflows? – Anthony Chuinard Dec 09 '15 at 07:04
6

You need to publish your own library to your local repository. You can do that in the following way:

  1. Add maven-publish plugin:

    plugins {
        // your other plugins come here...
        id 'maven-publish'
    }
    
  2. Add the publishing section to your build file:

    publishing {
        publications {
            myCoolLibrary(MavenPublication) {
                from components.java
            }
        }
    }
    
  3. Run gradle build publishToMavenLocal

    Find more details in the documentation.

Stef
  • 21,187
  • 1
  • 18
  • 46
Sasha Shpota
  • 8,300
  • 9
  • 61
  • 125