Skip to content

Commit 1916be0

Browse files
committed
reintroduce the license.
1 parent cb70184 commit 1916be0

File tree

9 files changed

+21
-29
lines changed

9 files changed

+21
-29
lines changed

CMakeLists.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,8 @@ install(
3737
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
3838
)
3939

40+
install(
41+
FILES LICENSE
42+
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
43+
)
44+

LICENSE

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/*
2+
* Copyright (C) 2013 Yujin Robot.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
5+
* use this file except in compliance with the License. You may obtain a copy of
6+
* the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12+
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13+
* License for the specific language governing permissions and limitations under
14+
* the License.
15+
*/

src/rosjava_build_tools/__init__.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
11
#!/usr/bin/env python
2-
#
3-
# License: Apache 2.0
4-
# https://raw.github.com/rosjava/rosjava_build_tools/license/LICENSE
5-
#
62

73
##############################################################################
84
# Imports

src/rosjava_build_tools/console.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
11
#!/usr/bin/env python
2-
#
3-
# License: Apache 2.0
4-
# https://raw.github.com/rosjava/rosjava_build_tools/license/LICENSE
5-
#
62

73
##############################################################################
84
# Imports

src/rosjava_build_tools/create_android_project.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
11
#!/usr/bin/env python
2-
#
3-
# License: Apache 2.0
4-
# https://raw.github.com/rosjava/rosjava_build_tools/license/LICENSE
5-
#
62

73
##############################################################################
84
# Imports

src/rosjava_build_tools/create_package.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
11
#!/usr/bin/env python
2-
#
3-
# License: Apache 2.0
4-
# https://raw.github.com/rosjava/rosjava_build_tools/license/LICENSE
5-
#
62

73
##############################################################################
84
# Imports

src/rosjava_build_tools/create_rosjava_project.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
11
#!/usr/bin/env python
2-
#
3-
# License: Apache 2.0
4-
# https://raw.github.com/rosjava/rosjava_build_tools/license/LICENSE
5-
#
62

73
##############################################################################
84
# Imports

src/rosjava_build_tools/release.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
11
#!/usr/bin/env python
2-
#
3-
# License: Apache 2.0
4-
# https://raw.github.com/rosjava/rosjava_build_tools/license/LICENSE
5-
#
62

73
##############################################################################
84
# Imports
@@ -34,4 +30,4 @@ def scrape_for_release_message_packages(track):
3430
version = value['version'].split('/')[-1].split('-')[0]
3531
pkg = {'name': name, 'version': version}
3632
packages.append(pkg)
37-
return packages
33+
return packages

src/rosjava_build_tools/utils.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
11
#!/usr/bin/env python
2-
#
3-
# License: Apache 2.0
4-
# https://raw.github.com/rosjava/rosjava_build_tools/license/LICENSE
5-
#
62

73
##############################################################################
84
# Imports

0 commit comments

Comments
 (0)