From 474199165c3be471e97872d95b3f55f6ee48835d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Mon, 19 Mar 2018 01:00:40 +0100 Subject: [PATCH] Continued: - jcore-utils was splitted out from jcoreee to reduce project centralization (means you have to that whole fat bunch of classes but only use a few) - updated commons-lang3 to 3.7 MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- lib/nblibraries.properties | 5 +++++ nbproject/project.properties | 6 +++--- src/org/mxchange/jcontacts/model/contact/UserContact.java | 4 ++-- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/lib/nblibraries.properties b/lib/nblibraries.properties index 8d00141..6d2e94d 100644 --- a/lib/nblibraries.properties +++ b/lib/nblibraries.properties @@ -1,3 +1,8 @@ +libs.commons-lang3.classpath=\ + ${base}/commons-lang3/commons-lang3-3.7.jar +libs.commons-lang3.displayName=Commons Lang3 3.7 +libs.commons-lang3.javadoc=\ + https://commons.apache.org/proper/commons-lang/javadocs/api-release/ libs.CopyLibs.classpath=\ ${base}/CopyLibs/org-netbeans-modules-java-j2seproject-copylibstask.jar libs.CopyLibs.displayName=CopyLibs Task diff --git a/nbproject/project.properties b/nbproject/project.properties index fcc03fd..1fd1fbb 100644 --- a/nbproject/project.properties +++ b/nbproject/project.properties @@ -30,7 +30,7 @@ dist.jar=${dist.dir}/jcontacts-core.jar dist.javadoc.dir=${dist.dir}/javadoc endorsed.classpath= excludes= -file.reference.jcoreee.jar=lib/jcoreee.jar +file.reference.jcore-utils.jar=lib/jcore-utils.jar file.reference.jcountry-core.jar=lib/jcountry-core.jar file.reference.jphone-core.jar=lib/jphone-core.jar includes=** @@ -40,7 +40,7 @@ jar.index=${jnlp.enabled} javac.classpath=\ ${file.reference.jcountry-core.jar}:\ ${file.reference.jphone-core.jar}:\ - ${file.reference.jcoreee.jar}:\ + ${file.reference.jcore-utils.jar}:\ ${libs.commons-lang3.classpath}:\ ${libs.jpa20-persistence.classpath} # Space-separated list of extra javac options @@ -95,7 +95,7 @@ run.test.classpath=\ ${javac.test.classpath}:\ ${build.test.classes.dir} source.encoding=UTF-8 -source.reference.jcoreee.jar=../jcoreee/src/ +source.reference.jcore-utils.jar=../jcore-utils/src/ source.reference.jcountry-core.jar=../jcountry-core/src/ source.reference.jphone-core.jar=../jphone-core/src/ src.dir=src diff --git a/src/org/mxchange/jcontacts/model/contact/UserContact.java b/src/org/mxchange/jcontacts/model/contact/UserContact.java index 1cb52c2..0eac7be 100644 --- a/src/org/mxchange/jcontacts/model/contact/UserContact.java +++ b/src/org/mxchange/jcontacts/model/contact/UserContact.java @@ -39,8 +39,8 @@ import javax.persistence.TemporalType; import javax.persistence.Transient; import org.apache.commons.lang3.StringUtils; import org.mxchange.jcontacts.model.contact.title.PersonalTitle; -import org.mxchange.jcoreee.utils.Comparables; -import org.mxchange.jcoreee.utils.CoreNumberUtils; +import org.mxchange.jcoreutils.Comparables; +import org.mxchange.jcoreutils.CoreNumberUtils; import org.mxchange.jcountry.model.data.Country; import org.mxchange.jcountry.model.data.CountryData; import org.mxchange.jphone.model.phonenumbers.fax.DialableFaxNumber; -- 2.39.5