This is an automated email from the ASF dual-hosted git repository.
rmannibucau pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/bval.git.
from dd3f12e [maven-release-plugin] prepare for next development iteration
new 718ff54 Avoid memory leaks in child Avoid non needed work when no
validation constraints are found Small micro-benchmarks Fix Java 11 compilation
with Java FX as an external library
new fd29b52 Fix scopes on dependencies
new c57549a Clean up pom
new 29e2905 Refactor to move microbenchmark to a separate module
new 26b43f8 Make sure build, tests and TCK run with JDK11
new d712d46 Merge pull request #8 from jeanouii/BVAL-183_memoryleak
The 1098 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
bval-jsr/pom.xml | 20 +-
.../org/apache/bval/jsr/ParticipantFactory.java | 4 +-
.../bval/jsr/descriptor/DescriptorManager.java | 25 +-
.../java/org/apache/bval/jsr/job/ValidateBean.java | 17 ++
.../apache/bval/jsr/job/ValidateParameters.java | 3 +-
.../apache/bval/jsr/job/ValidateReturnValue.java | 3 +-
.../org/apache/bval/jsr/job/ValidationJob.java | 1 -
.../bval/jsr/valueextraction/ValueExtractors.java | 73 +++---
.../apache/bval/util/EmulatedAnnotatedType.java | 15 ++
.../org/apache/bval/jsr/BeanDescriptorTest.java | 2 +-
bval-perf/pom.xml | 86 +++++++
.../java/org/apache/bval/jsr/Jsr303Benchmark.java | 283 +++++++++++++++++++++
bval-tck/pom.xml | 36 ++-
pom.xml | 3 +-
14 files changed, 501 insertions(+), 70 deletions(-)
create mode 100644 bval-perf/pom.xml
create mode 100644
bval-perf/src/test/java/org/apache/bval/jsr/Jsr303Benchmark.java