Настроен доступ к исходникам ядра. Немного поправлены параметры приложения. Обновлено ядро.

This commit is contained in:
2019-10-02 13:00:49 +03:00
parent 3350c886f4
commit f0a820d82d
4 changed files with 16 additions and 2 deletions

View File

@ -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 {