Skip to content

Commit

Permalink
Merge pull request rosjava#4 from rosjava/kinetic
Browse files Browse the repository at this point in the history
sync with rosjava/kinetic
  • Loading branch information
fmessmer authored Nov 22, 2020
2 parents d88d778 + 670f13f commit 28f0a7d
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
Changelog for package genjava
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

0.3.4 (2019-01-23)
------------------
* Updating Gradle version to 4.10.2.
* Minor fixes: cross compilation instruction, typos, dependency warnings.
* Contributors: Arne, Daniel Ingram, Johannes Meyer, Juan Ignacio Ubeira, Julian Cerruti

0.3.3 (2017-05-09)
------------------
* Updating message_generation dependency to kinetic range in template to generate messages properly.
Expand Down
2 changes: 1 addition & 1 deletion package.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<package>
<name>genjava</name>
<version>0.3.3</version>
<version>0.3.4</version>
<description>
Java ROS message and service generators.
</description>
Expand Down
Binary file modified src/genjava/gradle/gradle.tar.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion src/genjava/gradle_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def create(msg_pkg_name, output_dir):
os.makedirs(genjava_gradle_dir)
msg_package_index = create_msg_package_index()
if msg_pkg_name not in msg_package_index.keys():
raise IOError("could not find %s among message packages. Does the that package have a <build_depend> on message_generation in its package.xml?" % msg_pkg_name)
raise IOError("could not find %s among message packages. Does the package have a <build_depend> on message_generation in its package.xml?" % msg_pkg_name)

msg_dependencies = create_dependency_string(msg_pkg_name, msg_package_index)
print("msg_dependencies: %s" %msg_dependencies)
Expand Down
2 changes: 1 addition & 1 deletion src/genjava/templates/genjava_project/build.gradle.in
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

task wrapper(type: Wrapper) {
gradleVersion = '3.5.1'
gradleVersion = '4.10.2'
}

buildscript {
Expand Down

0 comments on commit 28f0a7d

Please sign in to comment.