objenesis 3.0.1-2 source package in Ubuntu

Changelog

objenesis (3.0.1-2) unstable; urgency=medium

  * Ignore surefire test failures. (Closes: #911980)

 -- Markus Koschany <email address hidden>  Sun, 28 Oct 2018 13:39:09 +0100

Upload details

Uploaded by:
Debian Java Maintainers
Uploaded to:
Sid
Original maintainer:
Debian Java Maintainers
Architectures:
all
Section:
java
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Disco: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
objenesis_3.0.1-2.dsc 2.2 KiB af9e80e6c2224decbb2cf900e3038825cfe38108c99d0d7e65aedfea0bf89d90
objenesis_3.0.1.orig.tar.gz 112.0 KiB c5688dbaa3286794e627acf7cce698e375c42250eac57201f95cd9871d2bda76
objenesis_3.0.1-2.debian.tar.xz 4.9 KiB 089be67dbc7078601541aac809966524eebedc23816aa1fd261e79073f9e355e

Available diffs

No changes file available.

Binary packages built by this source

libobjenesis-java: Java library to instantiate a new object of a particular class

 Objenesis is a small Java library that serves one purpose: to instantiate a
 new object of a particular class.
 Java already supports this dynamic instantiation of classes using
 Class.newInstance(). However, this only works if the class has an appropriate
 constructor. There are many times when a class cannot be instantiated this
 way, such as when the class contains:
  * Constructors that require arguments.
  * Constructors that have side effects.
  * Constructors that throw exceptions.
 As a result, it is common to see restrictions in libraries stating that
 classes must require a default constructor.
 Objenesis aims to overcomes these restrictions by bypassing the constructor
 on object instantiation.

libobjenesis-java-doc: Documentation for Objenesis

 Objenesis is a small Java library that serves one purpose: to instantiate a
 new object of a particular class.
 Java already supports this dynamic instantiation of classes using
 Class.newInstance(). However, this only works if the class has an appropriate
 constructor. There are many times when a class cannot be instantiated this
 way, such as when the class contains:
  * Constructors that require arguments.
  * Constructors that have side effects.
  * Constructors that throw exceptions.
 As a result, it is common to see restrictions in libraries stating that
 classes must require a default constructor.
 Objenesis aims to overcomes these restrictions by bypassing the constructor
 on object instantiation.
 .
 This is the API documentation for Objenesis