Search Gradle plugins

com.boxfuse.client

Owner: Boxfuse

Boxfuse is the easiest way to deploy your JVM-based applications to AWS. Boxfuse builds minimal fully-provisioned images in seconds. These images are immutable and tailor-made to do only one thing: run your app as efficiently as possible on the cloud. There is no ssh, no general purpose operating system and no tedious provisioning. Boxfuse images are lean, secure and efficient. You can run them on VirtualBox for development and deploy them unchanged and with zero downtime on AWS for test and production. While Boxfuse works with any .jar or .war file, it is especially optimized for Spring Boot, Dropwizard, Tomcat and TomEE. All you need is a GitHub user to get started. The Boxfuse free plan aligns perfectly with the AWS free tier, so you can deploy your application to EC2 completely free. Find out more and get started at https://boxfuse.com

https://cloudcaptain.sh/

Sources: https://github.com/boxfuse/boxfuse-issues

Version 1.17.0.878

Created 12 February 2016.

Boxfuse is the easiest way to deploy your JVM-based applications to AWS. Boxfuse builds minimal fully-provisioned images in seconds. These images are immutable and tailor-made to do only one thing: run your app as efficiently as possible on the cloud. There is no ssh, no general purpose operating system and no tedious provisioning. Boxfuse images are lean, secure and efficient. You can run them on VirtualBox for development and deploy them unchanged and with zero downtime on AWS for test and production. While Boxfuse works with any .jar or .war file, it is especially optimized for Spring Boot, Dropwizard, Play, Tomcat and TomEE. All you need is a GitHub user to get started. The Boxfuse free plan aligns perfectly with the AWS free tier, so you can deploy your application to EC2 completely free. Find out more and get started at https://boxfuse.com

Using the plugins DSL:

plugins {
  id("com.boxfuse.client") version "1.17.0.878"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.boxfuse.client:client:1.17.0.878")
  }
}

apply(plugin = "com.boxfuse.client")

Using the plugins DSL:

plugins {
  id "com.boxfuse.client" version "1.17.0.878"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.boxfuse.client:client:1.17.0.878"
  }
}

apply plugin: "com.boxfuse.client"

Learn how to apply plugins to subprojects