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

Side by Side Diff: third_party/protobuf/java/lite/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
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.protobuf</groupId> 7 <groupId>com.google.protobuf</groupId>
8 <artifactId>protobuf-parent</artifactId> 8 <artifactId>protobuf-parent</artifactId>
9 <version>3.0.0-beta-3</version> 9 <version>3.0.0</version>
10 </parent> 10 </parent>
11 11
12 <artifactId>protobuf-lite</artifactId> 12 <artifactId>protobuf-lite</artifactId>
13 <packaging>bundle</packaging> 13 <packaging>bundle</packaging>
14 14
15 <name>Protocol Buffers [Lite]</name> 15 <name>Protocol Buffers [Lite]</name>
16 <description>A trimmed-down version of the Protocol Buffers library.</descript ion> 16 <description>A trimmed-down version of the Protocol Buffers library.</descript ion>
17 17
18 <dependencies> 18 <dependencies>
19 <dependency> 19 <dependency>
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 </configuration> 69 </configuration>
70 <goals> 70 <goals>
71 <goal>run</goal> 71 <goal>run</goal>
72 </goals> 72 </goals>
73 </execution> 73 </execution>
74 </executions> 74 </executions>
75 </plugin> 75 </plugin>
76 76
77 <!-- Only compile a subset of the files --> 77 <!-- Only compile a subset of the files -->
78 <plugin> 78 <plugin>
79 <groupId>org.codehaus.mojo</groupId>
80 <artifactId>build-helper-maven-plugin</artifactId>
81 <executions>
82 <execution>
83 <id>add-generated-sources</id>
84 <phase>generate-sources</phase>
85 <goals>
86 <goal>add-source</goal>
87 </goals>
88 <configuration>
89 <sources>
90 <source>${generated.sources.lite.dir}</source>
91 </sources>
92 </configuration>
93 </execution>
94 <execution>
95 <id>add-generated-test-sources</id>
96 <phase>generate-test-sources</phase>
97 <goals>
98 <goal>add-test-source</goal>
99 </goals>
100 <configuration>
101 <sources>
102 <source>${generated.testsources.lite.dir}</source>
103 </sources>
104 </configuration>
105 </execution>
106 </executions>
107 </plugin>
108 <plugin>
79 <artifactId>maven-compiler-plugin</artifactId> 109 <artifactId>maven-compiler-plugin</artifactId>
80 <configuration> 110 <configuration>
81 <generatedSourcesDirectory>${generated.sources.lite.dir}</generatedSou rcesDirectory>
82 <generatedTestSourcesDirectory>${generated.testsources.lite.dir}</gene ratedTestSourcesDirectory>
83 <includes> 111 <includes>
84 <include>**/AbstractMessageLite.java</include> 112 <include>**/AbstractMessageLite.java</include>
85 <include>**/AbstractParser.java</include> 113 <include>**/AbstractParser.java</include>
86 <include>**/AbstractProtobufList.java</include> 114 <include>**/AbstractProtobufList.java</include>
87 <include>**/BooleanArrayList.java</include> 115 <include>**/BooleanArrayList.java</include>
88 <include>**/ByteString.java</include> 116 <include>**/ByteString.java</include>
89 <include>**/CodedInputStream.java</include> 117 <include>**/CodedInputStream.java</include>
90 <include>**/CodedOutputStream.java</include> 118 <include>**/CodedOutputStream.java</include>
91 <include>**/DoubleArrayList.java</include> 119 <include>**/DoubleArrayList.java</include>
92 <include>**/ExtensionLite.java</include> 120 <include>**/ExtensionLite.java</include>
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 <Bundle-DocURL>https://developers.google.com/protocol-buffers/</Bund le-DocURL> 175 <Bundle-DocURL>https://developers.google.com/protocol-buffers/</Bund le-DocURL>
148 <Bundle-SymbolicName>com.google.protobuf</Bundle-SymbolicName> 176 <Bundle-SymbolicName>com.google.protobuf</Bundle-SymbolicName>
149 <Export-Package>com.google.${project.artifactId};version=${project.v ersion}</Export-Package> 177 <Export-Package>com.google.${project.artifactId};version=${project.v ersion}</Export-Package>
150 </instructions> 178 </instructions>
151 </configuration> 179 </configuration>
152 </plugin> 180 </plugin>
153 </plugins> 181 </plugins>
154 </build> 182 </build>
155 183
156 </project> 184 </project>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698