Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
P
protobuf
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
protobuf
Commits
5ea590d5
Commit
5ea590d5
authored
Aug 04, 2009
by
gk5885
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add lite profile docs in the README
parent
5bf53616
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
1 deletion
+23
-1
README.txt
java/README.txt
+23
-1
No files found.
java/README.txt
View file @
5ea590d5
...
...
@@ -7,7 +7,7 @@ Installation - With Maven
=========================
The Protocol Buffers build is managed using Maven. If you would
rather build without Maven, see
the next section
.
rather build without Maven, see
below
.
1) Install Apache Maven if you don't have it:
...
...
@@ -39,6 +39,28 @@ rather build without Maven, see the next section.
$ mvn package
The .jar will be placed in the "target" directory.
Installation - 'Lite' Version - With Maven
=========================
Building the 'lite' version of the Java Protocol Buffers library is
the same as building the full version, except that all commands are
run using the 'lite' profile. (see
http://maven.apache.org/guides/introduction/introduction-to-profiles.html)
E.g. to install the lite version of the jar, you would run:
$ mvn install -P lite
The resulting artifact has the 'lite' classifier. To reference it
for dependency resolution, you would specify it as:
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>${version}</version>
<classifier>lite</classifier>
</dependency>
Installation - Without Maven
============================
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment