objenesis 2.2-1 source package in Ubuntu

Changelog

objenesis (2.2-1) unstable; urgency=medium

  * Imported Upstream version 2.2.
  * get-orig-source: Add --download-current-version option.
  * Move all build-dependencies to Build-Depends.
  * Update my e-mail address.
  * debian/copyright: Fix path to BEA licensed file.
  * Vcs-Browser: Use https.
  * Switch from cdbs to dh sequencer.
  * Update debian/watch file. Thanks to Bart Martens.

 -- Markus Koschany <email address hidden>  Mon, 14 Dec 2015 23:09:24 +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
Xenial release universe java

Builds

Xenial: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
objenesis_2.2-1.dsc 2.2 KiB d75d11bc33d03471315c443ada802c685c01bd5638cc2735012ef7ce848ff57a
objenesis_2.2.orig.tar.gz 106.3 KiB 3455140794ea863c58836c6dd9e18e4b2ff3369d5bb2529a1c2fb476be45b62a
objenesis_2.2-1.debian.tar.xz 4.4 KiB e5b44b07fa0ecb8fd2433a5ba40fc5fb1cf3590f0b637b5e82e15185fa9666eb

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