# migrate-gradle-repo-to-mvn **Repository Path**: Firas/migrate-gradle-repo-to-mvn ## Basic Information - **Project Name**: migrate-gradle-repo-to-mvn - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-05-12 - **Last Updated**: 2021-05-12 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README Usage --- This is a bash script that move the POM and JAR files in the local Gradle repository to the local Maven repository, so that you don't need to store duplicated files (one for Gradle and one for Maven). You can use `mavenLocal()` in "gradle.build" to make use of the local Maven repository in Gradle. ``` bash migrate.sh [gradle_repo] [mvn_repo] ``` e.g. ``` bash migrate.sh ~/.gradle/caches/modules-2/files-2.1 ~/.m2/repository ```