Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: third_party/protobuf/java/pom.xml

Issue 2495533002: third_party/protobuf: Update to HEAD (83d681ee2c) (Closed)
Patch Set: Make chrome settings proto generated file a component Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/protobuf/java/lite/pom.xml ('k') | third_party/protobuf/java/util/pom.xml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <?xml version="1.0" encoding="UTF-8"?> 1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" 2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/ maven-v4_0_0.xsd"> 4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/ maven-v4_0_0.xsd">
5 <modelVersion>4.0.0</modelVersion> 5 <modelVersion>4.0.0</modelVersion>
6 <parent> 6 <parent>
7 <groupId>com.google</groupId> 7 <groupId>com.google</groupId>
8 <artifactId>google</artifactId> 8 <artifactId>google</artifactId>
9 <version>1</version> 9 <version>1</version>
10 </parent> 10 </parent>
11 11
12 <groupId>com.google.protobuf</groupId> 12 <groupId>com.google.protobuf</groupId>
13 <artifactId>protobuf-parent</artifactId> 13 <artifactId>protobuf-parent</artifactId>
14 <version>3.0.0-beta-3</version> 14 <version>3.1.0</version>
15 <packaging>pom</packaging> 15 <packaging>pom</packaging>
16 16
17 <name>Protocol Buffers [Parent]</name> 17 <name>Protocol Buffers [Parent]</name>
18 <inceptionYear>2008</inceptionYear> 18 <inceptionYear>2008</inceptionYear>
19 <url>https://developers.google.com/protocol-buffers/</url> 19 <url>https://developers.google.com/protocol-buffers/</url>
20 <description> 20 <description>
21 Protocol Buffers are a way of encoding structured data in an efficient yet 21 Protocol Buffers are a way of encoding structured data in an efficient yet
22 extensible format. 22 extensible format.
23 </description> 23 </description>
24 24
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 <version>18.0</version> 87 <version>18.0</version>
88 </dependency> 88 </dependency>
89 </dependencies> 89 </dependencies>
90 </dependencyManagement> 90 </dependencyManagement>
91 91
92 <build> 92 <build>
93 <pluginManagement> 93 <pluginManagement>
94 <plugins> 94 <plugins>
95 <plugin> 95 <plugin>
96 <artifactId>maven-compiler-plugin</artifactId> 96 <artifactId>maven-compiler-plugin</artifactId>
97 <version>3.3</version> 97 <version>3.6.0</version>
98 <configuration> 98 <configuration>
99 <source>1.6</source> 99 <source>1.6</source>
100 <target>1.6</target> 100 <target>1.6</target>
101 </configuration> 101 </configuration>
102 </plugin> 102 </plugin>
103 <plugin> 103 <plugin>
104 <artifactId>maven-source-plugin</artifactId> 104 <artifactId>maven-source-plugin</artifactId>
105 <version>2.4</version> 105 <version>2.4</version>
106 <executions> 106 <executions>
107 <execution> 107 <execution>
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 </plugins> 145 </plugins>
146 </pluginManagement> 146 </pluginManagement>
147 </build> 147 </build>
148 148
149 <profiles> 149 <profiles>
150 <profile> 150 <profile>
151 <id>release</id> 151 <id>release</id>
152 <build> 152 <build>
153 <plugins> 153 <plugins>
154 <plugin> 154 <plugin>
155 <groupId>org.apache.maven.plugins</groupId>
156 <artifactId>maven-source-plugin</artifactId>
157 <version>2.2.1</version>
158 <executions>
159 <execution>
160 <id>attach-sources</id>
161 <goals>
162 <goal>jar-no-fork</goal>
163 </goals>
164 </execution>
165 </executions>
166 </plugin>
167 <plugin>
168 <groupId>org.apache.maven.plugins</groupId>
169 <artifactId>maven-javadoc-plugin</artifactId>
170 <version>2.9.1</version>
171 <executions>
172 <execution>
173 <id>attach-javadocs</id>
174 <goals>
175 <goal>jar</goal>
176 </goals>
177 </execution>
178 </executions>
179 </plugin>
180 <plugin>
155 <artifactId>maven-gpg-plugin</artifactId> 181 <artifactId>maven-gpg-plugin</artifactId>
156 <version>1.6</version> 182 <version>1.6</version>
157 <executions> 183 <executions>
158 <execution> 184 <execution>
159 <id>sign-artifacts</id> 185 <id>sign-artifacts</id>
160 <phase>verify</phase> 186 <phase>verify</phase>
161 <goals> 187 <goals>
162 <goal>sign</goal> 188 <goal>sign</goal>
163 </goals> 189 </goals>
164 </execution> 190 </execution>
(...skipping 10 matching lines...) Expand all
175 <autoReleaseAfterClose>false</autoReleaseAfterClose> 201 <autoReleaseAfterClose>false</autoReleaseAfterClose>
176 </configuration> 202 </configuration>
177 </plugin> 203 </plugin>
178 </plugins> 204 </plugins>
179 </build> 205 </build>
180 </profile> 206 </profile>
181 </profiles> 207 </profiles>
182 208
183 <modules> 209 <modules>
184 <module>core</module> 210 <module>core</module>
185 <module>lite</module> 211 <!-- <module>lite</module> -->
186 <module>util</module> 212 <module>util</module>
187 </modules> 213 </modules>
188 214
189 </project> 215 </project>
OLDNEW
« no previous file with comments | « third_party/protobuf/java/lite/pom.xml ('k') | third_party/protobuf/java/util/pom.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698