Skip to content
This repository has been archived by the owner on Feb 12, 2018. It is now read-only.

Commit

Permalink
#38 Documentation updates
Browse files Browse the repository at this point in the history
  • Loading branch information
sergei-ivanov committed Sep 15, 2015
1 parent 27f5cd1 commit ca50e1b
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 5 deletions.
3 changes: 3 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@
<contributor>
<name>abatalev</name>
</contributor>
<contributor>
<name>Marek Kedzierski (kedzie)</name>
</contributor>
</contributors>

<scm>
Expand Down
6 changes: 6 additions & 0 deletions src/changes/changes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@

<body>

<release version="0.4.3" date="Pending" description="Support for JavaNano, minor changes">
<action dev="sergei-ivanov" type="add" issue="38" due-to="Marek Kedzierski (kedzie)">
Added support for JavaNano generator (requires protobuf compiler version 3 or above).
</action>
</release>

<release version="0.4.2" date="2015-04-29" description="Bug fixes">
<action dev="sergei-ivanov" type="fix" issue="34">
Made the order of imports predictable and matching the order of dependencies.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public final class ProtocCompileJavaNanoMojo extends AbstractProtocCompileMojo {
private File outputDirectory;

/**
* Optional comma-separated options to be passed to the JavaNano generator.
* Additional comma-separated options to be passed to the JavaNano generator.
* <b>Cannot</b> contain colon (<tt>:</tt>) symbols.
*/
@Parameter(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class ProtocTestCompileJavaNanoMojo extends AbstractProtocTestCompileMojo
private File outputDirectory;

/**
* Optional comma-separated options to be passed to the JavaNano generator.
* Additional comma-separated options to be passed to the JavaNano generator.
* <b>Cannot</b> contain colon (<tt>:</tt>) symbols.
*/
@Parameter(
Expand Down
14 changes: 11 additions & 3 deletions src/site/apt/index.apt
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,6 @@ Maven Protoc Plugin
* {{{./compile-cpp-mojo.html}protoc:compile-cpp}}
compiles main <<<.proto>>> definitions into C++ files and attaches the generated C++ sources to the project.

* {{{./compile-custom-mojo.html}protoc:compile-custom}}
compiles main <<<.proto>>> definitions using a custom <<<protoc>>> plugin.

* {{{./test-compile-cpp-mojo.html}protoc:test-compile-cpp}}
compiles test <<<.proto>>> definitions into C++ files and attaches the generated C++ test sources to the project.

Expand All @@ -43,6 +40,17 @@ Maven Protoc Plugin
* {{{./test-compile-python-mojo.html}protoc:test-compile-python}}
compiles test <<<.proto>>> definitions into Python files and attaches the generated Python test sources to the project.

* {{{./compile-javanano-mojo.html}protoc:compile-javanano}}
uses JavaNano generator (requires protobuf compiler version 3 or above) to
compile main <<<.proto>>> definitions into Java files and attaches the generated Java sources to the project.

* {{{./test-compile-javanano-mojo.html}protoc:test-compile-javanano}}
uses JavaNano generator (requires protobuf compiler version 3 or above) to
compile test <<<.proto>>> definitions into Java files and attaches the generated Java test sources to the project.

* {{{./compile-custom-mojo.html}protoc:compile-custom}}
compiles main <<<.proto>>> definitions using a custom <<<protoc>>> plugin.

* {{{./test-compile-custom-mojo.html}protoc:test-compile-custom}}
compiles test <<<.proto>>> definitions using a custom <<<protoc>>> plugin.

Expand Down

0 comments on commit ca50e1b

Please sign in to comment.