Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
SableCC STUPS
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
general
stups
SableCC STUPS
Commits
43c5f237
Commit
43c5f237
authored
4 months ago
by
dgelessus
Browse files
Options
Downloads
Patches
Plain Diff
Replace uses of deprecated Gradle assignment syntax
parent
15c2009b
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
build.gradle
+3
-3
3 additions, 3 deletions
build.gradle
sablecc-runtime/build.gradle
+3
-3
3 additions, 3 deletions
sablecc-runtime/build.gradle
with
6 additions
and
6 deletions
build.gradle
+
3
−
3
View file @
43c5f237
...
@@ -140,11 +140,11 @@ publishing {
...
@@ -140,11 +140,11 @@ publishing {
maven
{
maven
{
final
releasesRepoUrl
=
"https://oss.sonatype.org/service/local/staging/deploy/maven2"
final
releasesRepoUrl
=
"https://oss.sonatype.org/service/local/staging/deploy/maven2"
final
snapshotsRepoUrl
=
"https://oss.sonatype.org/content/repositories/snapshots"
final
snapshotsRepoUrl
=
"https://oss.sonatype.org/content/repositories/snapshots"
url
isSnapshot
?
snapshotsRepoUrl
:
releasesRepoUrl
url
=
isSnapshot
?
snapshotsRepoUrl
:
releasesRepoUrl
if
(
project
.
hasProperty
(
'ossrhUsername'
)
&&
project
.
hasProperty
(
'ossrhPassword'
))
{
if
(
project
.
hasProperty
(
'ossrhUsername'
)
&&
project
.
hasProperty
(
'ossrhPassword'
))
{
credentials
{
credentials
{
username
project
.
ossrhUsername
username
=
project
.
ossrhUsername
password
project
.
ossrhPassword
password
=
project
.
ossrhPassword
}
}
}
}
}
}
...
...
This diff is collapsed.
Click to expand it.
sablecc-runtime/build.gradle
+
3
−
3
View file @
43c5f237
...
@@ -60,11 +60,11 @@ publishing {
...
@@ -60,11 +60,11 @@ publishing {
maven
{
maven
{
final
releasesRepoUrl
=
"https://oss.sonatype.org/service/local/staging/deploy/maven2"
final
releasesRepoUrl
=
"https://oss.sonatype.org/service/local/staging/deploy/maven2"
final
snapshotsRepoUrl
=
"https://oss.sonatype.org/content/repositories/snapshots"
final
snapshotsRepoUrl
=
"https://oss.sonatype.org/content/repositories/snapshots"
url
isSnapshot
?
snapshotsRepoUrl
:
releasesRepoUrl
url
=
isSnapshot
?
snapshotsRepoUrl
:
releasesRepoUrl
if
(
project
.
hasProperty
(
'ossrhUsername'
)
&&
project
.
hasProperty
(
'ossrhPassword'
))
{
if
(
project
.
hasProperty
(
'ossrhUsername'
)
&&
project
.
hasProperty
(
'ossrhPassword'
))
{
credentials
{
credentials
{
username
project
.
ossrhUsername
username
=
project
.
ossrhUsername
password
project
.
ossrhPassword
password
=
project
.
ossrhPassword
}
}
}
}
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment