-
Notifications
You must be signed in to change notification settings - Fork 129
/
README
86 lines (69 loc) · 2.92 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
**********************************************
*** Maven Protocol Buffers (protoc) Plugin ***
**********************************************
A minimal configuration to invoke this plugin would be:
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.mycompany.example</groupId>
<artifactId>example-protoc</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>protoc-example</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<groupId>com.google.protobuf.tools</groupId>
<artifactId>maven-protoc-plugin</artifactId>
<configuration>
<protocExecutable>/usr/local/bin/protoc</protocExecutable>
</configuration>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>2.3.0</version>
</dependency>
</dependencies>
</project>
You must:
+ Use Java 1.5 or newer due to the usage of Generics
+ Either ensure the "protoc" executable is in your PATH or set the
<protocExecutable> parameter to the correct location.
+ Define the executions you want (you probably don't need the testCompile
unless you have custom protocol buffer objects in your tests.
+ Include the dependency on protobuf-java or your compile will fail.
Once this is all done add your *.proto files to the directory: src/main/proto
Everything should then build with a: mvn clean install
You may also need to add the following to your settings.xml to download the
plugin:
<pluginRepositories>
<pluginRepository>
<id>dtrott</id>
<url>http://maven.davidtrott.com/repository</url>
</pluginRepository>
</pluginRepositories>
Normally this plug-in executes the protoc compilation on every execution
this can be overriden by setting:
<checkStaleness>true</checkStaleness>
If you build on NFS you may also need the following setting:
<staleMillis>10000</staleMillis>