Skip to content

Commit

Permalink
update of test dependency meanbean to the new milestone version 3.0.0-M9
Browse files Browse the repository at this point in the history
- update of dependency jobj-copy to new minor version 4.2
- update of test dependency equalsverifier to new version 3.15.3
  • Loading branch information
astrapi69 committed Nov 6, 2023
1 parent 98ffdc3 commit 9d49b1b
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 9 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,18 @@ Version 10.2-SNAPSHOT

CHANGED:

- update of gradle to new version 8.4
- update of com.github.ben-manes.versions.gradle.plugin to new version 0.49.0
- update of gradle-plugin dependency 'org.ajoberstar.grgit:grgit-gradle' to new version 5.2.1
- update of gradle-plugin dependency of 'com.diffplug.spotless:spotless-plugin-gradle' in version 6.22.0
- update of dependency jobj-core to new version 8.1
- update of dependency jobj-reflect to new major version 2.4
- update of dependency jobj-copy to new minor version 4.2-SNAPSHOT
- update of dependency silly-math to new version 2.3
- update of dependency jobj-copy to new minor version 4.2
- update of test dependency equalsverifier to new version 3.15.3
- update of test dependency silly-strings to new version 9
- update of test dependency test-object to new minor version 8.2
- update of test dependency meanbean to the new milestone version 3.0.0-M9

Version 10.1
-------------
Expand Down
10 changes: 5 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -39,17 +39,17 @@ jobjCoreVersion=8.1
jobjReflectVersion=2.4
sillyCollectionVersion=27
vintageTimeVersion=6
sillyMathVersion=2.2
jobjCopyVersion=4.2-SNAPSHOT
sillyMathVersion=2.3
jobjCopyVersion=4.2
##############################
# test dependencies versions #
##############################
commonsLang3Version=3.13.0
equalsverifierVersion=3.15.3
sillyStringsVersion=9
meanbeanVersion=2.0.3
testObjectVersion=8.2
meanbeanVersion=3.0.0-M9
testngVersion=7.8.0
testObjectVersion=8.1
equalsverifierVersion=3.15.2
##########################
# for deploy on sonatype #
##########################
Expand Down
2 changes: 1 addition & 1 deletion gradle/dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ dependencies {
testImplementation("nl.jqno.equalsverifier:equalsverifier:$equalsverifierVersion")
testImplementation("io.github.astrapi69:silly-strings:$sillyStringsVersion")
testImplementation("io.github.astrapi69:test-object:$testObjectVersion")
testImplementation("org.meanbean:meanbean:$meanbeanVersion")
testImplementation("com.github.meanbeanlib:meanbean:$meanbeanVersion")
testImplementation("org.testng:testng:$testngVersion")
}
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,11 @@ public enum RandomCharacters
this.characters = characters;
}

/**
* Gets the characters
*
* @return the characters
*/
public String getCharacters()
{
return characters;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,6 @@ public static <T> T newRandomObject(final Class<T> cls, String... ignoreFieldNam
* constructor; or if the instantiation fails for some other reason.
* @throws NoSuchFieldException
* is thrown if no such field exists
* @throws ClassNotFoundException
* is thrown if the class cannot be located
*/
@SuppressWarnings("unchecked")
public static <T> T newRandomObject(final T obj, String... ignoreFieldNames)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@

import io.github.astrapi69.lang.ClassExtensions;

/**
* The class {@link PropertiesLoader} provide a method for load a {@link Properties} object from a
* given path
*/
public final class PropertiesLoader
{
private PropertiesLoader()
Expand Down

0 comments on commit 9d49b1b

Please sign in to comment.