Mercurial > hg > Database > Alice
view build.gradle @ 614:9324ef9728c0 dispose
Alice.iml
author | suruga |
---|---|
date | Mon, 24 Jul 2017 19:15:01 +0900 |
parents | ae13e4854c55 |
children | 82736f6fae50 |
line wrap: on
line source
apply plugin: 'java' apply plugin: 'eclipse' apply plugin: 'maven' sourceCompatibility = 1.8 targetCompatibility = 1.8 [compileJava, compileTestJava]*.options*.encoding = 'UTF-8' group = 'cr.ie.u_ryukyu.ac.jp' version = '1.1' repositories { mavenCentral() maven { url "http://www.cr.ie.u-ryukyu.ac.jp/maven"} } dependencies { compile fileTree(dir: 'lib', include: '*.jar') compile group: 'com.massisframework.j3d', name: 'java3d-core', version: '1.6.0' compile group: 'com.massisframework.j3d', name: 'vecmath', version: '1.6.0.1' } jar { manifest { attributes 'Implementation-Title': 'Gradle Quickstart', 'Implementation-Version': version } from configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } archiveName = 'Alice.jar' } ext { mavenRepository = System.getenv()['HOME']+'/workspace/maven' } uploadArchives { repositories { mavenDeployer { repository(url: uri(mavenRepository)) } } }