Переезд на новый градл
This commit is contained in:
81
.gitattributes
vendored
81
.gitattributes
vendored
@ -1,2 +1,79 @@
|
|||||||
*.bat text eol=crlf
|
# Explicitly declare text=auto files you want to always be normalized and converted
|
||||||
gradlew text eol=lf
|
# to native line endings on checkout.
|
||||||
|
* text=auto
|
||||||
|
*.txt text
|
||||||
|
*.log text
|
||||||
|
*.sql text
|
||||||
|
*.template text
|
||||||
|
*.properties text
|
||||||
|
*.rc text
|
||||||
|
*.ini text
|
||||||
|
*.tpl text
|
||||||
|
*.cfg text
|
||||||
|
*.bat text
|
||||||
|
*.cmd text
|
||||||
|
*.iss text
|
||||||
|
*.ipr text
|
||||||
|
*.iml text
|
||||||
|
*.iws text
|
||||||
|
*.java text
|
||||||
|
*.jj text
|
||||||
|
*.cup text
|
||||||
|
*.pl text
|
||||||
|
*.pas text
|
||||||
|
*.pp text
|
||||||
|
*.inc text
|
||||||
|
*.dpk text
|
||||||
|
*.bpk text
|
||||||
|
*.dfm text
|
||||||
|
*.xfm text
|
||||||
|
*.lfm text
|
||||||
|
*.dpr text
|
||||||
|
*.bpr text
|
||||||
|
*.bpg text
|
||||||
|
*.lpr text
|
||||||
|
*.lrs text
|
||||||
|
*.frc text
|
||||||
|
*.lpk text
|
||||||
|
*.lpi text
|
||||||
|
*.dproj text
|
||||||
|
*.bdsproj text
|
||||||
|
*.bdsgroup text
|
||||||
|
*.groupproj text
|
||||||
|
*.cbproj text
|
||||||
|
*.dof text
|
||||||
|
*.cpp text
|
||||||
|
*.c text
|
||||||
|
*.h text
|
||||||
|
*.awk text
|
||||||
|
*.sh text eol=lf
|
||||||
|
*.csv text
|
||||||
|
*.url text
|
||||||
|
*.tld text
|
||||||
|
*.xml text
|
||||||
|
*.xsl text
|
||||||
|
*.xsd text
|
||||||
|
*.jrxml text
|
||||||
|
*.dtd text
|
||||||
|
*.js text
|
||||||
|
*.json text
|
||||||
|
*.css text
|
||||||
|
*.jsp text
|
||||||
|
*.htm text
|
||||||
|
*.html text
|
||||||
|
*.rtx text
|
||||||
|
*.tsv text
|
||||||
|
*.etx text
|
||||||
|
*.sgm text
|
||||||
|
*.sgml text
|
||||||
|
*.talk text
|
||||||
|
*.vcf text
|
||||||
|
makefile text eol=lf
|
||||||
|
COPYING text
|
||||||
|
.gitattributes text
|
||||||
|
.gitignore text
|
||||||
|
*.gradle text
|
||||||
|
.*src text
|
||||||
|
*.stg text
|
||||||
|
*.g text
|
||||||
|
*. eol=lf
|
||||||
|
@ -1,8 +1,7 @@
|
|||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
|
||||||
mavenLocal()
|
mavenLocal()
|
||||||
maven {
|
maven {
|
||||||
url 'https://nexus.red-soft.ru/repository/public'
|
url 'https://ncore-repo.red-soft.ru/repository/public'
|
||||||
if (project.credentials.user != null && project.credentials.password != null) {
|
if (project.credentials.user != null && project.credentials.password != null) {
|
||||||
credentials {
|
credentials {
|
||||||
username project.credentials.user
|
username project.credentials.user
|
||||||
|
9
src/dist/bin/sync-full
vendored
9
src/dist/bin/sync-full
vendored
@ -1,13 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
$(dirname $0)/starter patch updates
|
$(dirname $0)/starter update -fullSync -skipUpdate
|
||||||
|
|
||||||
if [ $? -ne 0 ] ; then
|
|
||||||
echo Error patch loading
|
|
||||||
exit 10
|
|
||||||
fi
|
|
||||||
|
|
||||||
$(dirname $0)/starter update -fullSync
|
|
||||||
|
|
||||||
if [ $? -ne 0 ] ; then
|
if [ $? -ne 0 ] ; then
|
||||||
echo Error updating database
|
echo Error updating database
|
||||||
|
5
src/dist/bin/sync-full.bat
vendored
5
src/dist/bin/sync-full.bat
vendored
@ -1,7 +1,4 @@
|
|||||||
@echo off
|
@echo off
|
||||||
|
|
||||||
call "%~dp0\starter.bat" patch updates
|
call "%~dp0\starter.bat" update -fullSync -skipUpdate
|
||||||
if ERRORLEVEL == 1 goto :EOF
|
|
||||||
|
|
||||||
call "%~dp0\starter.bat" update -fullSync
|
|
||||||
@pause
|
@pause
|
Reference in New Issue
Block a user