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

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

@ -96,5 +96,5 @@ rootProject.name = 'biz.redsoft.myproject'
8. Актуальная версия ядра указывается в файле gradle.properties: 8. Актуальная версия ядра указывается в файле gradle.properties:
``` ```
biz.redsoft.ncore.version=1.5.366.14 biz.redsoft.ncore.version=1.6.69.0
``` ```

View File

@ -5,11 +5,13 @@ buildscript {
} }
dependencies { dependencies {
classpath 'biz.redsoft.gradle.ncore:gradle-ncore:+' classpath 'biz.redsoft.gradle.ncore:gradle-ncore:+'
classpath 'nu.studer:gradle-credentials-plugin:1.0.4'
} }
} }
group = 'biz.redsoft.sample' group = 'biz.redsoft.sample'
apply plugin: 'nu.studer.credentials'
apply plugin: 'idea' apply plugin: 'idea'
apply plugin: 'application' apply plugin: 'application'
apply plugin: 'war' apply plugin: 'war'
@ -24,6 +26,15 @@ ncore {
repositories { repositories {
mavenLocal() 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 { dependencies {

View File

@ -1 +1 @@
biz.redsoft.ncore.version=1.5.366.14 biz.redsoft.ncore.version=1.6.69.0

View File

@ -13,4 +13,7 @@
<entry key="ncore.db.user">SYSDBA</entry> <entry key="ncore.db.user">SYSDBA</entry>
<entry key="ncore.db.password">masterkey</entry> <entry key="ncore.db.password">masterkey</entry>
<!-- Other settings -->
<entry key="security.cryptoapi.disable">yes</entry>--> <!-- Disable usage of cryptographic functions -->
<entry key="ncore.client.queryexit">yes</entry> <!-- Query before system exit -->
</properties> </properties>