Created
May 25, 2023 03:18
-
-
Save MarinhoFeliphe/7d865ecb917c0f5d7e76a70f57423dfa to your computer and use it in GitHub Desktop.
settings.gradle pointing to local plugins
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
buildscript { | |
dependencies { | |
classpath files("/home/... the entire path to .../liferay-portal/modules/sdk/gradle-plugins-workspace/build/tmp/jar/com.liferay.gradle.plugins.workspace-6.1.4.jar") | |
classpath files("/home/... the entire path to .../liferay-portal/modules/sdk/gradle-plugins-workspace/lib/com.liferay.workspace.bundle.url.codec-1.0.0.jar") | |
classpath group: "biz.aQute.bnd", name: "biz.aQute.bnd.gradle", version: "5.2.0" | |
classpath group: "com.bmuschko", name: "gradle-docker-plugin", version: "6.7.0" | |
classpath group: "com.fasterxml.jackson.core", name: "jackson-databind", version: "2.10.3" | |
classpath group: "com.fasterxml.jackson.dataformat", name: "jackson-dataformat-yaml", version: "2.10.3" | |
classpath group: "com.google.code.gson", name: "gson", version: "2.9.0" | |
classpath group: "com.liferay", name: "com.liferay.gradle.plugins", version: "14.0.128" | |
classpath group: "com.liferay", name: "com.liferay.gradle.plugins.poshi.runner", version: "3.0.68" | |
classpath group: "com.liferay", name: "com.liferay.gradle.plugins.target.platform", version: "3.0.10" | |
classpath group: "com.liferay", name: "com.liferay.gradle.plugins.theme.builder", version: "2.0.23" | |
classpath group: "com.liferay", name: "com.liferay.petra.lang", version: "5.1.2" | |
classpath group: "com.liferay", name: "com.liferay.petra.string", version: "5.2.0" | |
classpath group: "com.liferay", name: "com.liferay.portal.tools.bundle.support", version: "3.7.3" | |
classpath group: "de.undercouch", name: "gradle-download-task", version: "5.0.0" | |
classpath group: "net.saliman", name: "gradle-properties-plugin", version: "1.4.6" | |
} | |
repositories { | |
maven { | |
url "https://repository-cdn.liferay.com/nexus/content/groups/public" | |
} | |
maven { | |
url "https://repository.liferay.com/nexus/content/groups/public" | |
} | |
} | |
} | |
apply plugin: "com.liferay.workspace" | |
include "poshi" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment