Maven Protocol Buffers Plugin 0.5.0 Released

We are happy to announce the first official release of Maven Protocol Buffers Plugin, which is now available in Maven Central.

You can include the plugin in your POM in the following way:

<project>
  ...
  <build>
    <!-- To define the plugin version in your parent POM -->
    <pluginManagement>
      <plugins>
        <plugin>
          <groupId>org.xolstice.maven.plugins</groupId>
          <artifactId>protobuf-maven-plugin</artifactId>
          <version>0.5.0</version>
        </plugin>
        ...
      </plugins>
    </pluginManagement>
    <!-- To use the plugin goals in your POM or parent POM -->
    <plugins>
      <plugin>
        <groupId>org.xolstice.maven.plugins</groupId>
        <artifactId>protobuf-maven-plugin</artifactId>
        <version>0.5.0</version>
      </plugin>
      ...
    </plugins>
  </build>
  ...
</project>

Full plugin documentation is available on the plugin web site.

Written on February 14, 2016