Skip to content

Instantly share code, notes, and snippets.

@waman
waman / build.gradle
Created January 9, 2012 06:49
Gradle build file for JavaFX project
apply plugin:'java'
defaultTasks 'test'
//defaultTasks 'clean', 'build'
// 設定項目↓↓↓
group = 'org.waman' // グループ名 & implementation-vendor
version = 1.0 // アプリケーション・バージョン& implementation-version
def jdkVersion = 1.7
def enc = 'UTF-8'
@waman
waman / build.sbt
Created October 9, 2013 15:48
build.sbt (sbt build file)
name := "sbt-sample"
version := "0.1"
organization := "org.sample"
scalaVersion := "2.9.2"
//libraryDependencies += "org.apache.commons" % "commons-math3" % "3.0"