summaryrefslogtreecommitdiff
path: root/pom.xml
AgeCommit message (Collapse)AuthorFilesLines
2021-08-14update Java version to 2.0.3Wouter van Oortmerssen1-1/+1
2021-08-05java: Use maven profile to target Java 8 bytecode (#6764)Björn Harrtell1-96/+105
2021-06-03avoiding more NoSuchMethod exceptions (#6671)Kamil Rojewski1-1/+1
refs #6657
2021-05-24Prepare for Java 2.0.1 releaseWouter van Oortmerssen1-1/+1
see https://github.com/google/flatbuffers/pull/6658
2021-05-10Updated main version numbers to 2.0Wouter van Oortmerssen1-1/+1
2020-03-16updated maven build filesv1.12.1Wouter van Oortmerssen1-1/+7
Change-Id: I33c69978fe7a22485a7fd5ceb7a480e84e8bcdb3
2020-03-12pre-tag version bump for 1.12v1.12.0Wouter van Oortmerssen1-1/+1
Change-Id: I84a9365e9d8a1afe333b1df85058401ffe0a6b7c
2019-05-31Enforce matching version in Java and C#.Wouter van Oortmerssen1-1/+1
Change-Id: I7f1f12f2f97e5227e0dabc2965ce66a6d41c229c
2019-04-24[maven-release-plugin] prepare for next development iterationWouter van Oortmerssen1-2/+2
Change-Id: I402d857eef9f3e5f3765427c5d3b868ed5a3a22e
2019-04-24[maven-release-plugin] prepare release 1.11.01.11.0Wouter van Oortmerssen1-4/+3
Change-Id: I716f6b915adfa6682b5d864857abf7d491d788b5
2019-04-24Bumped version to 1.11.0v1.11.0Wouter van Oortmerssen1-1/+1
Change-Id: I0c87ad2cf8f8768cf40c5b7abea0add087a5518a
2018-12-17Java: Pulling in protobuf's faster UTF-8 encoder. (#5035)Owen O'Malley1-1/+5
* Pulling in protobuf's faster UTF-8 encoder. * Remove Utf8 unsafe code.
2018-10-03Bumped version to 1.10.1 for all languages.v1.10.0Wouter van Oortmerssen1-1/+1
Change-Id: I9a6256d90ea800834a887afdcf888df412018933
2018-05-14Vector of unions support for java and c# (#4735)Kamil Rojewski1-2/+2
* Eclipse ignore * TypeScript support * Prefixing enums * Test results * Merged JS and TS generators * Fixed AppVeyor build problems * Fixed more AppVeyor build problems * Fixed more AppVeyor build problems * Changed TS flag to options struct * Storing options by value * Removed unneeded const * Re-export support for unions * Uint support * Casting bools to numbers for mutation * TS shell tests * Reverted generates js test file to original version * Backing up js tests and properly generating test data * Not importing flatbuffers for TS test generation * Not overwriting generated js for tests * AppVeyor test fixes * Generating the most strict TS code possible * Not returning null when creating vectors * Not returning null from struct contructors * Vector of unions for ts/js * Sanity check for languages * Indentation fix + output test files * Vectors of unions for php * Fixes to union vector handling + tests * Fix for strictPropertyInitialization * Fix for new aligned operator new for gcc >= 7.1 * Not generating imports/ns prefixes with --gen-all * TypeScript docs * Missing imports of enums * Missing TS links * Enabled vector of unions for java, since it seems to work * Added jitpack config * Added obj to vector of unions getter * Removed unneeded accessor * Bumped jdk version in pom.xml * Vector of unions support for c#
2018-04-05Update version number to 1.9v1.9.0Wouter van Oortmerssen1-1/+1
Change-Id: I0b0ed43129c4d8fc88a177792df50adfeb52a1e3
2017-11-20Updated version numbers to 1.8.0v1.8.0Wouter van Oortmerssen1-1/+1
Change-Id: I9cf9fe1e2572d3f9c4066624a87249ca1e62a297
2017-10-26Updated pom.xml to be able to deploy to Maven central.Wouter van Oortmerssen1-3/+48
Change-Id: Ie28dda5e1854eeff3e254e975925ff846c137008
2017-08-10Forgot to update pom.xml in recent 1.7.1 release.Wouter van Oortmerssen1-1/+1
Change-Id: Ia6d6967546c0a2a5340a93e54c46d2630fff92fe
2017-06-16Updated version numbers to 1.7.0v1.7.0Wouter van Oortmerssen1-1/+1
Change-Id: If2802ca48b61cfa7e5ec131e2a268400523217e2
2017-02-15Updated version numbers to 1.6v1.6.0Wouter van Oortmerssen1-1/+1
Change-Id: I215fcc7581253f14171b513d4fc75da960b2064a
2017-01-03Updated version to 1.5v1.5.0Wouter van Oortmerssen1-1/+1
Change-Id: I34007829cdd3ad024df21f68bb369016d5d21131
2016-08-151.4 prep fixesv1.4.0Wouter van Oortmerssen1-1/+1
Change-Id: I001ad8dd5f95e6e5ad43daf956663218d19f5c96
2016-07-15Added OSGi header generation for maven project.Romain Gilles1-1/+7
This allow jar generated with maven to be used in OSGi environment.
2016-07-05Move maven `pom.xml` from the java folder to the root folder.Romain Gilles1-0/+84
This avoid to put the pom.xml file into the source directory. Normally the pom file is in a parent (/parent) folder and it is not mixed with the java source code. An other thing is: this will make import of the project more easy from a IDE. The side effect is that the target folder where maven build artifacts will move from the <flatbuffers>/java/target to <flatbuffers>/target therefore the gitignore file has been updated in consequences.