From 49efe9d7db877022e76375df2d4daadab98619b6 Mon Sep 17 00:00:00 2001 From: nmittler Date: Fri, 8 Jan 2016 09:19:11 -0800 Subject: Restructuring protobuf to multiple modules protobuf/java will become a parent pom that will contain two modules: core - contains all of the code for the protobuf-java artifact util - contains all of the code for the protobuf-java-util artifact Also cleaned up various Maven warnings. --- java/lite/pom.xml | 158 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 158 insertions(+) create mode 100644 java/lite/pom.xml (limited to 'java/lite') diff --git a/java/lite/pom.xml b/java/lite/pom.xml new file mode 100644 index 00000000..29d8c8c4 --- /dev/null +++ b/java/lite/pom.xml @@ -0,0 +1,158 @@ + + + 4.0.0 + + com.google.protobuf + protobuf-parent + 3.0.0-beta-2 + + + protobuf-lite + bundle + + Protocol Buffers [Lite] + A trimmed-down version of the Protocol Buffers library. + + + + junit + junit + + + org.easymock + easymock + + + org.easymock + easymockclassextension + + + + + ../core + ${core.root}/src/test/proto + + + + ${core.root}/src/main/java + ${core.root}/src/test/java + + + + + maven-antrun-plugin + + + + generate-sources + generate-sources + + + + + + + run + + + + + + generate-test-sources + generate-test-sources + + + + + + + run + + + + + + + + maven-compiler-plugin + + ${generated.sources.dir} + ${generated.testsources.dir} + + **/AbstractMessageLite.java + **/AbstractParser.java + **/AbstractProtobufList.java + **/BoundedByteString.java + **/BooleanArrayList.java + **/ByteString.java + **/CodedInputStream.java + **/CodedOutputStream.java + **/DoubleArrayList.java + **/ExtensionLite.java + **/ExtensionRegistryLite.java + **/FieldSet.java + **/FloatArrayList.java + **/GeneratedMessageLite.java + **/IntArrayList.java + **/Internal.java + **/InvalidProtocolBufferException.java + **/LazyFieldLite.java + **/LazyStringArrayList.java + **/LazyStringList.java + **/LiteralByteString.java + **/LongArrayList.java + **/MapEntryLite.java + **/MapFieldLite.java + **/MessageLite.java + **/MessageLiteOrBuilder.java + **/MessageLiteToString.java + **/MutabilityOracle.java + **/NioByteString.java + **/Parser.java + **/ProtobufArrayList.java + **/ProtocolStringList.java + **/RopeByteString.java + **/SmallSortedMap.java + **/TextFormatEscaper.java + **/UninitializedMessageException.java + **/UnknownFieldSetLite.java + **/UnmodifiableLazyStringList.java + **/UnsafeByteStrings.java + **/Utf8.java + **/WireFormat.java + + + **/*Lite.java + **/BooleanArrayListTest.java + **/DoubleArrayListTest.java + **/FloatArrayListTest.java + **/IntArrayListTest.java + **/LazyMessageLiteTest.java + **/LiteTest.java + **/LongArrayListTest.java + **/NioByteStringTest.java + **/ProtobufArrayListTest.java + **/UnknownFieldSetLiteTest.java + + + + + + + org.apache.felix + maven-bundle-plugin + true + + + https://developers.google.com/protocol-buffers/ + com.google.protobuf + com.google.${project.artifactId};version=${project.version} + + + + + + + -- cgit v1.2.3