Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
Rosjava Bootstrap Gradle
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CeTI
ROS
ROS Java Packages
Rosjava Bootstrap Gradle
Commits
8ad2688d
Commit
8ad2688d
authored
10 years ago
by
Daniel Stonier
Browse files
Options
Downloads
Patches
Plain Diff
should be able to use the plugin solely now, refs #46.
parent
d2626ab5
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
maven.gradle
+0
-35
0 additions, 35 deletions
maven.gradle
with
0 additions
and
35 deletions
maven.gradle
deleted
100644 → 0
+
0
−
35
View file @
d2626ab5
rootProject
.
allprojects
{
String
rosMavenPath
=
System
.
getenv
(
"ROS_MAVEN_PATH"
)
String
rosMavenRepository
=
System
.
getenv
(
"ROS_MAVEN_REPOSITORY"
)
repositories
{
if
(
rosMavenPath
!=
null
)
{
rosMavenPath
.
tokenize
(
":"
).
each
{
path
->
//noinspection GroovyAssignabilityCheck
maven
{
// We can't use uri() here because we aren't running inside something
// that implements the Script interface.
url
"file:${path}"
}
}
}
//noinspection GroovyAssignabilityCheck
maven
{
url
"http://repository.springsource.com/maven/bundles/release"
}
//noinspection GroovyAssignabilityCheck
maven
{
url
"http://repository.springsource.com/maven/bundles/external"
}
if
(
rosMavenRepository
!=
null
)
{
//noinspection GroovyAssignabilityCheck
maven
{
url
rosMavenRepository
}
}
//noinspection GroovyAssignabilityCheck
maven
{
url
"https://github.com/rosjava/rosjava_mvn_repo/raw/master"
}
mavenCentral
()
}
}
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