aboutsummaryrefslogtreecommitdiffhomepage
path: root/java/pom.xml
Commit message (Collapse)AuthorAge
...
* Bump version for maven-bundle-pluginGravatar Jisi Liu2014-09-04
|
* merge tags/2.6.0 into trunkGravatar jieluo@google.com2014-08-25
|
* down integrate to svnGravatar jieluo@google.com2014-07-18
|
* Update OSGi meta data.Gravatar xiaofeng@google.com2013-03-08
|
* Update version number in trunkGravatar xiaofeng@google.com2013-02-28
|
* Update version to 2.5.0-preGravatar liujisi@google.com2012-11-30
|
* Fix issue 298: add OSGi configuration to pom.xml - patch from Thomas KockGravatar xiaofeng@google.com2012-10-25
|
* Down-integrate from internal branchGravatar xiaofeng@google.com2012-09-22
|
* Update mainline version to 2.4.2-pre.Gravatar liujisi@google.com2011-05-03
|
* Update mainline version to 2.4.1-pre.Gravatar liujisi@google.com2011-02-02
|
* Add missing files into pom.xml for protobuf-lite.Gravatar liujisi@google.com2011-01-27
|
* Boost version number to 2.4.0-pre, add more test cases for text_format.py ↵Gravatar liujisi@google.com2010-12-09
| | | | about unicode field.
* Submit recent changes from internal branch. See CHANGES.txt for more details.Gravatar liujisi@google.com2010-11-02
|
* Update version number in trunk to 2.3.1.Gravatar kenton@google.com2010-01-09
|
* Set version to 2.3.0-pre.Gravatar kenton@google.com2009-12-18
|
* Massive roll-up of changes. See CHANGES.txt.Gravatar kenton@google.com2009-12-18
|
* Set version number to 2.2.1 in trunk.Gravatar kenton@google.com2009-08-13
|
* Gigantic descriptors shouldn't overflow the Java string literal size limit.Gravatar kenton@google.com2009-08-07
|
* Update version number to 2.2.0-pre.Gravatar kenton@google.com2009-08-06
|
* Ensure that only the lite tests are run, even if all tests have been compiledGravatar gk58852009-08-04
|
* This fixes some issues with the lite profile for the java build in which the ↵Gravatar gk58852009-08-04
| | | | lite jar contained the full binary.
* Update the pom to support the 'lite' profile.Gravatar gk58852009-08-04
|
* Submit recent changes from internal branch, including "lite mode" forGravatar kenton@google.com2009-07-29
| | | | | C++ and Java. See CHANGES.txt for more details.
* Update version number in trunk.Gravatar kenton@google.com2009-05-13
|
* Update trunk version to 2.0.4-SNAPSHOT.Gravatar kenton@google.com2008-12-05
|
* Update version number to 2.0.3-SNAPSHOT.Gravatar kenton@google.com2008-10-16
|
* Integrate changes from internal Google-internal branch.Gravatar kenton@google.com2008-09-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.Gravatar kenton@google.com2008-09-19
| | | | | Also, update version numbers to 2.0.2-SNAPSHOT.
* 2.0.1 release.Gravatar temporal2008-08-27
|
* misc. stuff:Gravatar temporal2008-07-21
| | | | | | | | | - 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.Gravatar temporal2008-07-10