2
0
Fork 0
mirror of https://github.com/ethauvin/bld.git synced 2025-04-25 16:27:11 -07:00

Regression fix to version handling

This commit is contained in:
Geert Bevin 2024-07-19 23:16:18 -04:00
parent 0f65e1d232
commit 19991e84c4
2 changed files with 3 additions and 8 deletions

Binary file not shown.

View file

@ -8,13 +8,8 @@ import rife.bld.dependencies.*;
import rife.bld.help.*;
import rife.bld.operations.*;
import rife.tools.FileUtils;
import rife.tools.StringUtils;
import rife.tools.exceptions.FileUtilsErrorException;
import java.io.File;
import java.nio.charset.StandardCharsets;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import java.util.*;
import java.util.regex.Pattern;
@ -803,7 +798,7 @@ public class BaseProject extends BuildExecutor {
* @return a newly created {@code Dependency} instance
* @since 1.5
*/
public Dependency dependency(String groupId, String artifactId, VersionNumber version) {
public Dependency dependency(String groupId, String artifactId, Version version) {
return new Dependency(groupId, artifactId, version);
}
@ -817,7 +812,7 @@ public class BaseProject extends BuildExecutor {
* @return a newly created {@code Dependency} instance
* @since 1.5
*/
public Dependency dependency(String groupId, String artifactId, VersionNumber version, String classifier) {
public Dependency dependency(String groupId, String artifactId, Version version, String classifier) {
return new Dependency(groupId, artifactId, version, classifier);
}
@ -832,7 +827,7 @@ public class BaseProject extends BuildExecutor {
* @return a newly created {@code Dependency} instance
* @since 1.5
*/
public Dependency dependency(String groupId, String artifactId, VersionNumber version, String classifier, String type) {
public Dependency dependency(String groupId, String artifactId, Version version, String classifier, String type) {
return new Dependency(groupId, artifactId, version, classifier, type);
}