protoc-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.dongliu</groupId> <artifactId>protoc-maven-plugin</artifactId> <version>0.3.6</version> </dependency>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>net.dongliu</groupId> <artifactId>protoc-maven-plugin</artifactId> <packaging>maven-plugin</packaging> <name>Maven Protoc Plugin for Protoc and Prettypb</name> <version>0.3.6</version> <prerequisites> <maven>3.0</maven> </prerequisites> <dependencies> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.3.2</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>3.0</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>3.0</version> </dependency> </dependencies> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <url>https://github.com/xiaxiaocao/protoc-maven-plugin</url> <developers> <developer> <id>xiaxiacao</id> <name>Dong Liu</name> <email>dongliu@live.cn</email> </developer> </developers> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git@github.com:xiaxiaocao/protoc-maven-plugin.git</connection> <url>https://github.com/xiaxiaocao/protoc-maven-plugin</url> <developerConnection>scm:git:git@github.com:xiaxiaocao/protoc-maven-plugin.git </developerConnection> <tag>protoc-maven-plugin-0.3.6</tag> </scm> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.7</source> <target>1.7</target> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> <configuration> <filesets> <fileset> <directory>logs</directory> <followSymlinks>false</followSymlinks> </fileset> </filesets> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <configuration> <tags> <tag> <name>phase</name> <placement>X</placement> </tag> <tag> <name>goal</name> <placement>X</placement> </tag> <tag> <name>requiresDependencyResolution</name> <placement>X</placement> </tag> <tag> <name>parameter</name> <placement>X</placement> </tag> <tag> <name>required</name> <placement>X</placement> </tag> <tag> <name>readonly</name> <placement>X</placement> </tag> <tag> <name>component</name> <placement>X</placement> </tag> </tags> </configuration> <executions> <execution> <id>attach-javadoc</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5</version> </plugin> </plugins> </build> </project>