aboutsummaryrefslogtreecommitdiff
path: root/java/pom.xml
Commit message (Collapse)AuthorAgeFilesLines
...
* Update version number to 2.6.1.v2.6.1Feng Xiao2014-10-201-2/+2
|
* Update version number to 2.6.1rc1Feng Xiao2014-10-081-2/+2
|
* Replace links to code.google.com/protobuf with ↵Feng Xiao2014-10-011-4/+4
| | | | developers.google.com/protocol-buffers
* Bump version for maven-bundle-pluginJisi Liu2014-09-041-1/+1
|
* merge tags/2.6.0 into trunkjieluo@google.com2014-08-251-1/+1
|
* down integrate to svnjieluo@google.com2014-07-181-0/+10
|
* Update OSGi meta data.xiaofeng@google.com2013-03-081-1/+3
|
* Update version number in trunkxiaofeng@google.com2013-02-281-1/+1
|
* Update version to 2.5.0-preliujisi@google.com2012-11-301-1/+1
|
* Fix issue 298: add OSGi configuration to pom.xml - patch from Thomas Kockxiaofeng@google.com2012-10-251-1/+11
|
* Down-integrate from internal branchxiaofeng@google.com2012-09-221-0/+9
|
* Update mainline version to 2.4.2-pre.liujisi@google.com2011-05-031-1/+1
|
* Update mainline version to 2.4.1-pre.liujisi@google.com2011-02-021-1/+1
|
* Add missing files into pom.xml for protobuf-lite.liujisi@google.com2011-01-271-1/+6
|
* Boost version number to 2.4.0-pre, add more test cases for text_format.py ↵liujisi@google.com2010-12-091-1/+1
| | | | about unicode field.
* Submit recent changes from internal branch. See CHANGES.txt for more details.liujisi@google.com2010-11-021-0/+6
|
* Update version number in trunk to 2.3.1.kenton@google.com2010-01-091-1/+1
|
* Set version to 2.3.0-pre.kenton@google.com2009-12-181-1/+1
|
* Massive roll-up of changes. See CHANGES.txt.kenton@google.com2009-12-181-0/+1
|
* Set version number to 2.2.1 in trunk.kenton@google.com2009-08-131-1/+1
|
* Gigantic descriptors shouldn't overflow the Java string literal size limit.kenton@google.com2009-08-071-0/+1
|
* Update version number to 2.2.0-pre.kenton@google.com2009-08-061-1/+1
|
* Ensure that only the lite tests are run, even if all tests have been compiledgk58852009-08-041-0/+8
|
* This fixes some issues with the lite profile for the java build in which the ↵gk58852009-08-041-31/+20
| | | | lite jar contained the full binary.
* Update the pom to support the 'lite' profile.gk58852009-08-041-17/+51
|
* Submit recent changes from internal branch, including "lite mode" forkenton@google.com2009-07-291-0/+3
| | | | | C++ and Java. See CHANGES.txt for more details.
* Update version number in trunk.kenton@google.com2009-05-131-1/+1
|
* Update trunk version to 2.0.4-SNAPSHOT.kenton@google.com2008-12-051-1/+1
|
* Update version number to 2.0.3-SNAPSHOT.kenton@google.com2008-10-161-1/+1
|
* Integrate changes from internal Google-internal branch.kenton@google.com2008-09-241-4/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | General * License changed from Apache 2.0 to New BSD. * It is now possible to define custom "options", which are basically annotations which may be placed on definitions in a .proto file. For example, you might define a field option called "foo" like so: import "google/protobuf/descriptor.proto" extend google.protobuf.FieldOptions { optional string foo = 12345; } Then you annotate a field using the "foo" option: message MyMessage { optional int32 some_field = 1 [(foo) = "bar"] } The value of this option is then visible via the message's Descriptor: const FieldDescriptor* field = MyMessage::descriptor()->FindFieldByName("some_field"); assert(field->options().GetExtension(foo) == "bar"); This feature has been implemented and tested in C++ and Java. Other languages may or may not need to do extra work to support custom options, depending on how they construct descriptors. C++ * Fixed some GCC warnings that only occur when using -pedantic. * Improved static initialization code, making ordering more predictable among other things. * TextFormat will no longer accept messages which contain multiple instances of a singular field. Previously, the latter instance would overwrite the former. * Now works on systems that don't have hash_map. Python * Strings now use the "unicode" type rather than the "str" type. String fields may still be assigned ASCII "str" values; they will automatically be converted. * Adding a property to an object representing a repeated field now raises an exception. For example: # No longer works (and never should have). message.some_repeated_field.foo = 1
* Work around absence of hash_map.kenton@google.com2008-09-191-1/+1
| | | | | Also, update version numbers to 2.0.2-SNAPSHOT.
* 2.0.1 release.temporal2008-08-271-8/+5
|
* misc. stuff:temporal2008-07-211-2/+20
| | | | | | | | | - Improved readmes. - Fixed incorrect definition of kint32min. - Fixed absolute output paths on Windows. - Added info to Java POM that will be required when we upload the package to a Maven repo.
* Initial checkin.temporal2008-07-101-0/+107