Переезд на новый градл

This commit is contained in:
2025-02-25 17:44:13 +03:00
parent ef032b8181
commit bb2c8502c5
4 changed files with 82 additions and 16 deletions

81
.gitattributes vendored
View File

@ -1,2 +1,79 @@
*.bat text eol=crlf
gradlew text eol=lf
# Explicitly declare text=auto files you want to always be normalized and converted
# 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

View File

@ -1,8 +1,7 @@
repositories {
mavenCentral()
mavenLocal()
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) {
credentials {
username project.credentials.user

View File

@ -1,13 +1,6 @@
#!/bin/bash
$(dirname $0)/starter patch updates
if [ $? -ne 0 ] ; then
echo Error patch loading
exit 10
fi
$(dirname $0)/starter update -fullSync
$(dirname $0)/starter update -fullSync -skipUpdate
if [ $? -ne 0 ] ; then
echo Error updating database

View File

@ -1,7 +1,4 @@
@echo off
call "%~dp0\starter.bat" patch updates
if ERRORLEVEL == 1 goto :EOF
call "%~dp0\starter.bat" update -fullSync
call "%~dp0\starter.bat" update -fullSync -skipUpdate
@pause