Настроен доступ к исходникам ядра. Немного поправлены параметры приложения. Обновлено ядро.
This commit is contained in:
11
build.gradle
11
build.gradle
@ -5,11 +5,13 @@ buildscript {
|
||||
}
|
||||
dependencies {
|
||||
classpath 'biz.redsoft.gradle.ncore:gradle-ncore:+'
|
||||
classpath 'nu.studer:gradle-credentials-plugin:1.0.4'
|
||||
}
|
||||
}
|
||||
|
||||
group = 'biz.redsoft.sample'
|
||||
|
||||
apply plugin: 'nu.studer.credentials'
|
||||
apply plugin: 'idea'
|
||||
apply plugin: 'application'
|
||||
apply plugin: 'war'
|
||||
@ -24,6 +26,15 @@ ncore {
|
||||
|
||||
repositories {
|
||||
mavenLocal()
|
||||
maven {
|
||||
url 'http://nexus.red-soft.biz/repository/public'
|
||||
if (project.credentials.user != null && project.credentials.password != null) {
|
||||
credentials {
|
||||
username project.credentials.user
|
||||
password project.credentials.password
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
Reference in New Issue
Block a user