Настроен доступ к исходникам ядра. Немного поправлены параметры приложения. Обновлено ядро.
This commit is contained in:
@ -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
|
||||||
```
|
```
|
||||||
|
11
build.gradle
11
build.gradle
@ -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 {
|
||||||
|
@ -1 +1 @@
|
|||||||
biz.redsoft.ncore.version=1.5.366.14
|
biz.redsoft.ncore.version=1.6.69.0
|
||||||
|
@ -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>
|
Reference in New Issue
Block a user