LoginSignup
0
0

More than 5 years have passed since last update.

Gradleを使ったinteliJの設定

Last updated at Posted at 2019-04-08

build.graldeの設定

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.avast.gradle:gradle-docker-compose-plugin:0.9.1"
  }
}

apply plugin: "com.avast.gradle.docker-compose"

dockerCompose {
    waitForTcpPorts = false // turns off the waiting for exposed TCP ports opening
}

コンフィグの設定

スクリーンショット 2019-04-08 22.37.45.png

gradleの設定

スクリーンショット 2019-04-08 22.48.05.png
スクリーンショット 2019-04-08 22.48.20.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0