forked from ros/pluginlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.xml
35 lines (30 loc) · 1.16 KB
/
package.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<package>
<name>pluginlib</name>
<version>1.9.23</version>
<description>
The pluginlib package provides tools for writing and dynamically loading plugins using the ROS build infrastructure.
To work, these tools require plugin providers to register their plugins in the package.xml of their package.
</description>
<maintainer email="[email protected]">Mirza Shah</maintainer>
<license>BSD</license>
<license>Boost Software License</license>
<url>http://www.ros.org/wiki/pluginlib</url>
<author>Eitan Marder-Eppstein</author>
<author>Tully Foote</author>
<author>Dirk Thomas</author>
<author>Mirza Shah</author>
<buildtool_depend version_gte="0.5.68">catkin</buildtool_depend>
<build_depend>boost</build_depend>
<build_depend>class_loader</build_depend>
<build_depend>rosconsole</build_depend>
<build_depend>roslib</build_depend>
<build_depend>tinyxml</build_depend>
<run_depend>boost</run_depend>
<run_depend>class_loader</run_depend>
<run_depend>rosconsole</run_depend>
<run_depend>roslib</run_depend>
<run_depend>tinyxml</run_depend>
<export>
<pluginlib plugin="${prefix}/test/test_plugins.xml"/>
</export>
</package>