Skip to content

Releases: MarioAriasC/KotlinPrimavera

0.5

22 Feb 23:16
Compare
Choose a tag to compare
  • Compiled for Kotlin 1.0
  • New Spring Security Module
  • sysProperty["myProperty"] alias for System.getProperty("myProperty")
  • sysProperty["myProperty"] = "foo" alias for System.setProperty("myProperty", "foo")

0.4_M14

04 Oct 01:00
Compare
Choose a tag to compare

Release for Kotlin M14

0.4_M12

14 Jun 22:31
Compare
Choose a tag to compare
  • Updated to M12
  • Experiment with a script to wrap static methods inside utils classes in extension functions, like :
@throws(BeanInstantiationException::class)
public fun<T> Class<T>.instantiate(): T {
    return BeanUtils.instantiate(this)
}

I already wrap all utils classes inside beans module. The classes wrapper were:

If there is no objections over this. I'll start wrapping more utils classes