タグ

関連タグで絞り込む (0)

  • 関連タグはありません

タグの絞り込みを解除

javaとJavaとgradleに関するoinumeのブックマーク (3)

  • The Java Plugin

    The Java plugin adds Java compilation along with testing and bundling capabilities to a project. It serves as the basis for many of the other JVM language Gradle plugins. You can find a comprehensive introduction and overview to the Java Plugin in the Building Java Projects chapter. As indicated above, this plugin adds basic building blocks for working with JVM projects. Its feature set has been s

  • Gradle初心者によるGradle事始め - Qiita

    はじめに この記事はG*Advent Calendar(Groovy,Grails,Gradle,Spock...) Advent Calendar 2016 の22日目の記事です。 今回は、Gradleを使ってJavaのソースコードをコンパイルしてJARファイルにまとめてテストを実行するまでを書こうと思います。 (IDEに依存しないためにコンソールベースで記述しますのであしからず) Gradleとは? Gradleとは、Groovyで記述するビルド自動化システムです。 Javaで古くから使われていたAntやMavenはXMLで記述するのに対し、GradleはGroovyで記述できるため柔軟で強力なビルド自動化システムと言えます。 「規約によるビルド」 MavenやGradleは「規約によるビルド」システムと言われています。 一方、古くからあるmakeやAntは「手続き的なビルド」システム

    Gradle初心者によるGradle事始め - Qiita
  • JitPack | Publish JVM and Android libraries

    Add it in your root settings.gradle at the end of repositories: dependencyResolutionManagement { repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) repositories { mavenCentral() maven { url 'https://jitpack.io' } } } Add it in your settings.gradle.kts at the end of repositories: dependencyResolutionManagement { repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) repositories { m

    JitPack | Publish JVM and Android libraries
    oinume
    oinume 2015/04/06
    bintrayの競合?
  • 1