Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
J
java-library-glpi
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
GLPI
java-library-glpi
Commits
60197bd4
Commit
60197bd4
authored
Oct 26, 2017
by
Rafa Hernandez
Committed by
Alexander Salas Bastidas
Oct 27, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ci(gradle): setup information on gradle properties
parent
8ee86273
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
7 deletions
+6
-7
ci/scripts/ci_gradle_properties.sh
ci/scripts/ci_gradle_properties.sh
+3
-3
glpi/build.gradle
glpi/build.gradle
+3
-4
No files found.
ci/scripts/ci_gradle_properties.sh
View file @
60197bd4
...
...
@@ -25,6 +25,6 @@
# create gradle properties
echo
org.gradle.jvmargs
=
-Xmx1536m
>>
gradle.properties
echo
glpi_user
=
$GLPI_USER
>>
gradle.properties
echo
glpi_password
=
$GLPI_PASSWORD
>>
gradle.properties
echo
glpi_url
=
$GLPI_URL
>>
gradle.properties
echo
glpi_user
=
"
$GLPI_USER
"
>>
gradle.properties
echo
glpi_password
=
"
$GLPI_PASSWORD
"
>>
gradle.properties
echo
glpi_url
=
"
$GLPI_URL
"
>>
gradle.properties
glpi/build.gradle
View file @
60197bd4
...
...
@@ -17,10 +17,9 @@ android {
buildTypes
{
buildTypes
.
each
{
def
glpi_user_val
=
glpi_user
?:
"\"\""
def
glpi_password_val
=
glpi_password
?:
"\"\""
def
glpi_url_val
=
glpi_url
?:
"\"\""
def
glpi_user_val
=
"\"${glpi_user}\""
?:
"\"\""
def
glpi_password_val
=
"\"${glpi_password}\""
?:
"\"\""
def
glpi_url_val
=
"\"${glpi_url}\""
?:
"\"\""
it
.
buildConfigField
'String'
,
'GLPI_USER'
,
glpi_user_val
it
.
buildConfigField
'String'
,
'GLPI_PASSWORD'
,
glpi_password_val
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment