This website works better with JavaScript.
Explore
Help
Sign In
HuskLegacy
/
ConfigLib
forked from
public-mirrors/ConfigLib
Watch
1
Star
0
Fork
You've already forked ConfigLib
0
Code
Pull Requests
Activity
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9143762c89
master
dev
v1.4.1
v2.0.0
v2.0.1
v2.0.3
v2.1.0
v2.2.0
v3.0.0
v3.1.0
v4.0.0
v4.1.0
v4.2.0
v4.3.0
v4.4.0
v4.5.0
Branches
Tags
${ item.name }
Create tag
${ searchTerm }
Create branch
${ searchTerm }
from '9143762c89'
${ noResults }
ConfigLib
/
build.gradle.kts
5 lines
61 B
Plaintext
Raw
Normal View
History
Unescape
Escape
Migrate build scripts to Kotlin DSL.
3 years ago
allprojects {
group = "de.exlll"
Update version to 4.2.0 **Support for polymorphic serialization** This release adds the Polymorphic and PolymorphicTypes annotations that can be used on types. Serializers for polymorphic types are not selected based on the compile-time types of configuration elements, but instead are chosen at runtime based on the actual types of their values. This enables adding instances of subclasses / implementations of a polymorphic type to collections. **Add SerializeWith annotation** This annotation enforces the use of the specified serializer for a configuration element or type. It can be applied to configuration elements (i.e. class fields and record components), to types, and to other annotations. **Add SerializerContext interface** Instances of this interface contain information about the context in which a serializer was selected. They are passed to the constructors of custom serializers if the serializers are instantiated by this library, or can alternatively be accessed through the new `addSerializerFactory` method of `ConfigurationProperties` objects.
2 years ago
version = "4.2.0"
Update version to 4.1.0 * Added jitpack.io support (by @RobotHanzo) * Added two new NameFormatters (by @Insprill) - LOWER_KEBAB_CASE - UPPER_KEBAB_CASE * Fixed handling of comments that contain newlines (by @Insprill)
2 years ago
}