Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
ROS Java Build Tools
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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CeTI
ROS
ROS Java Packages
ROS Java Build Tools
Commits
677fdd87
Commit
677fdd87
authored
Feb 18, 2015
by
Daniel Stonier
Browse files
Options
Downloads
Patches
Plain Diff
create custom msg projects is obsolete in indigo.
parent
d0ebbf8a
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
scripts/catkin_create_rosjava_msg_project
+0
-26
0 additions, 26 deletions
scripts/catkin_create_rosjava_msg_project
setup.py
+0
-2
0 additions, 2 deletions
setup.py
with
0 additions
and
28 deletions
scripts/catkin_create_rosjava_msg_project
deleted
100755 → 0
+
0
−
26
View file @
d0ebbf8a
#!/usr/bin/env python
"""
This script creates the skeleton of a rosjava message project
"""
##############################################################################
# Imports
##############################################################################
from
__future__
import
print_function
import
argparse
import
os
import
sys
from
rosjava_build_tools
import
create_rosjava_msg_project
import
rosjava_build_tools.console
as
console
##############################################################################
# Main
##############################################################################
if
__name__
==
"
__main__
"
:
try
:
sys
.
exit
(
create_rosjava_msg_project
())
except
Exception
as
e
:
console
.
logerror
(
"
%s : %s
"
%
(
str
(
e
),
type
(
e
)))
sys
.
exit
(
1
)
This diff is collapsed.
Click to expand it.
setup.py
+
0
−
2
View file @
677fdd87
...
...
@@ -12,13 +12,11 @@ d = generate_distutils_setup(
'
scripts/catkin_create_rosjava_pkg
'
,
'
scripts/catkin_create_rosjava_project
'
,
'
scripts/catkin_create_rosjava_library_project
'
,
'
scripts/catkin_create_rosjava_msg_project
'
,
],
package_data
=
{
'
rosjava_build_tools
'
:
[
'
templates/android_package/*
'
,
'
templates/android_project/*
'
,
'
templates/rosjava_library_project/*
'
,
'
templates/rosjava_msg_project/*
'
,
'
templates/rosjava_package/*
'
,
'
templates/rosjava_project/*
'
,
'
templates/init_repo/*
'
,
...
...
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