utester

Untitled

Jul 24th, 2013
322
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. <project>
  2. <pluginRepositories>
  3. <pluginRepository>
  4. <id>protoc-plugin</id>
  5. <url>http://sergei-ivanov.github.com/maven-protoc-plugin/repo/releases/</url>
  6. </pluginRepository>
  7. </pluginRepositories>
  8. <SOME OTHER CONFIG/>
  9. <dependency>
  10. <groupId>com.google.protobuf</groupId>
  11. <artifactId>protobuf-java</artifactId>
  12. <version>2.0.3</version>
  13. </dependency>
  14. <SOME OTHER CONFIG/>
  15. <profiles>
  16. <profile>
  17. <id>dev</id>
  18. <SOME OTHER CONFIG/>
  19. <build>
  20. <SOME OTHER CONFIG/>
  21. <plugins>
  22. <plugin>
  23. <groupId>com.google.protobuf.tools</groupId>
  24. <artifactId>maven-protoc-plugin</artifactId>
  25. <version>0.3.1</version>
  26. <configuration>
  27. <!--TODO: I will tweak this once I get the plugin -->
  28. <protocExecutable>/usr/local/bin/protoc</protocExecutable>
  29. </configuration>
  30. <executions>
  31. <execution>
  32. <goals>
  33. <!--PLEASE REVIEW: I made the names of these goals, is it OK? -->
  34. <goal>protobufcompile</goal>
  35. <goal>testCompile</goal>
  36. </goals>
  37. </execution>
  38. </executions>
  39. </plugin>
  40. </plugins>
  41. </build>
  42. </profile>
  43. </profiles>
  44. <SOME OTHER CONFIG>
  45. </project>
Add Comment
Please, Sign In to add comment