Merge branch 'master' of http://gitlab.red-soft.biz/ncore/ncore-sample
This commit is contained in:
@ -17,6 +17,8 @@ apply plugin: 'application'
|
|||||||
apply plugin: 'war'
|
apply plugin: 'war'
|
||||||
apply plugin: 'ncore'
|
apply plugin: 'ncore'
|
||||||
|
|
||||||
|
apply from: "dependencies.gradle"
|
||||||
|
|
||||||
targetCompatibility = 1.8
|
targetCompatibility = 1.8
|
||||||
|
|
||||||
ncore {
|
ncore {
|
||||||
|
13
dependencies.gradle
Normal file
13
dependencies.gradle
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
mavenLocal()
|
||||||
|
maven {
|
||||||
|
url 'https://nexus.red-soft.ru/repository/public'
|
||||||
|
if (project.credentials.user != null && project.credentials.password != null) {
|
||||||
|
credentials {
|
||||||
|
username project.credentials.user
|
||||||
|
password project.credentials.password
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -3,4 +3,7 @@
|
|||||||
<properties>
|
<properties>
|
||||||
<entry key="ncore.developer.mode">true</entry>
|
<entry key="ncore.developer.mode">true</entry>
|
||||||
<!-- <entry key="ncore.db.url">jdbc:firebirdsql:localhost:ncore-sample-dev?lc_ctype=WIN1251</entry> -->
|
<!-- <entry key="ncore.db.url">jdbc:firebirdsql:localhost:ncore-sample-dev?lc_ctype=WIN1251</entry> -->
|
||||||
|
<!-- Для автоматизированного рестора базы данных запустить gradlew nRDB-->
|
||||||
|
<entry key="ncore.db.backup.path">db/ncore.zip</entry>
|
||||||
|
<entry key="ncore.db.restore.path">~/sample-db/ncore-sample.fdb</entry>
|
||||||
</properties>
|
</properties>
|
||||||
|
Reference in New Issue
Block a user