com.liferay.mobile.sdk.builder
Owner: Bruno Farache
Liferay Mobile SDK Builder Gradle Plugin
https://github.com/brunofarache/liferay-sdk-builder
Sources: https://github.com/brunofarache/liferay-sdk-builder.git
Version 1.0.2 (latest)
1.0.2
Created 09 November 2016.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
Liferay Mobile SDK Builder Gradle Plugin
Using the plugins DSL:
plugins {
id("com.liferay.mobile.sdk.builder") version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.liferay.mobile:gradle-plugin:1.0.2")
}
}
apply(plugin = "com.liferay.mobile.sdk.builder")
Using the plugins DSL:
plugins {
id "com.liferay.mobile.sdk.builder" version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.liferay.mobile:gradle-plugin:1.0.2"
}
}
apply plugin: "com.liferay.mobile.sdk.builder"