You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.0 KiB
47 lines
1.0 KiB
if (!hasProperty('mainClass')) {
|
|
ext.mainClass = ''
|
|
}
|
|
|
|
repositories {
|
|
maven{
|
|
url 'http://nifty-gui.sourceforge.net/nifty-maven-repo'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile project(':jme3-core')
|
|
compile 'lessvoid:nifty:1.4.1'
|
|
compile 'lessvoid:nifty-default-controls:1.4.1'
|
|
compile 'lessvoid:nifty-style-black:1.4.1'
|
|
}
|
|
|
|
ext.pomConfig = {
|
|
name POM_NAME
|
|
description POM_DESCRIPTION
|
|
url POM_URL
|
|
inceptionYear POM_INCEPTION_YEAR
|
|
scm {
|
|
url POM_SCM_URL
|
|
connection POM_SCM_CONNECTION
|
|
developerConnection POM_SCM_DEVELOPER_CONNECTION
|
|
}
|
|
licenses {
|
|
license {
|
|
name POM_LICENSE_NAME
|
|
url POM_LICENSE_URL
|
|
distribution POM_LICENSE_DISTRIBUTION
|
|
}
|
|
}
|
|
developers {
|
|
developer {
|
|
name 'jMonkeyEngine Team'
|
|
id 'jMonkeyEngine'
|
|
}
|
|
}
|
|
repositories {
|
|
repository {
|
|
id "nifty-maven-repo.sourceforge.net"
|
|
url "http://nifty-gui.sourceforge.net/nifty-maven-repo"
|
|
}
|
|
}
|
|
} |