• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

GoogleCloudPlatform/app-gradle-plugin: Gradle plugin to build and deploy Google ...

原作者: [db:作者] 来自: 网络 收藏 邀请

开源软件名称(OpenSource Name):

GoogleCloudPlatform/app-gradle-plugin

开源软件地址(OpenSource Url):

https://github.com/GoogleCloudPlatform/app-gradle-plugin

开源编程语言(OpenSource Language):

Java 99.5%

开源软件介绍(OpenSource Introduction):

project status image build status image Maven Central

Google App Engine Gradle plugin

This Gradle plugin provides tasks to build and deploy Google App Engine applications.

Requirements

Gradle is required to build and run the plugin. Version compatibility is listed below.

appengine-gradle-plugin gradle version
2.0.0 + 4.0 or newer
1.3.3 + 3.4.1 or newer
1.0.0 - 1.3.2 3.0 or newer

Google Cloud SDK is required but will be automatically installed by the plugin.

How to use

The plugin needs to be defined in your build.gradle. It is directly available on Maven Central. Alternatively, you can download it from GitHub and deploy it to your local repository. The following code snippet shows an example on how to retrieve it from Maven Central:

Using plugins block

Since the appengine-gradle-plugin is not published to the gradle plugin portal, you must refrence it from the Central Maven repository. Add the maven central resolution to your settings.gradle

pluginManagement {
  repositories {
    gradlePluginPortal()
    mavenCentral()
    // add mavenLocal() if you are using a locally built version of the plugin
  }
  resolutionStrategy {
    eachPlugin {
      if (requested.id.id.startsWith('com.google.cloud.tools.appengine')) {
        useModule("com.google.cloud.tools:appengine-gradle-plugin:${requested.version}")
      }
    }
  }
}

Apply the plugin in your plugins block in your build.gradle

plugins {
  id 'com.google.cloud.tools.appengine' version '2.4.2'
}

Using buildscript block

If you wish to apply the plugin via the legacy buildscript mechanism, add the following to your build.gradle.

buildscript {
  repositories {
    mavenCentral()
  }

  dependencies {
    classpath 'com.google.cloud.tools:appengine-gradle-plugin:2.4.2'
  }
}

apply plugin: 'com.google.cloud.tools.appengine'

You can now run commands like ./gradlew appengineDeploy on your Java application.

Goals and Configuration

Please see the USER GUIDE for a full list of supported goals and configuration options.

Reference Documentation

App Engine Standard Environment:

App Engine Flexible Environment:

Contributing

If you wish to contribute to this plugin, please see the contributor instructions.




鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap