diff --git a/.gitignore b/.gitignore index 19e55b9..7e5eda6 100644 --- a/.gitignore +++ b/.gitignore @@ -85,3 +85,4 @@ data_files/ !gradle-wrapper.jar # "Adding the JAR file to version control is expected." https://docs.gradle.org/current/userguide/gradle_wrapper.html +bin/ \ No newline at end of file diff --git a/build.gradle b/build.gradle index e5227a4..14afc01 100644 --- a/build.gradle +++ b/build.gradle @@ -52,7 +52,7 @@ plugins { // The version number below ("ext.crsTransformationVersion") should be the same as in // the method 'CrsTransformationAdapterComposite.getVersionOfImplementationAdapteeLibrary()' -ext.snapshotSuffixOrEmpty = "-SNAPSHOT" // this value should be equal to "-SNAPSHOT" or "" (for a release) +ext.snapshotSuffixOrEmpty = "" // this value should be equal to "-SNAPSHOT" or "" (for a release) ext.crsTransformationGroupId = 'com.programmerare.crs-transformation' // The below version number is used for all artifacts EXCEPT "crs-transformation-constants" which has a release number corresponding to the version number used by EPSG at http://www.epsg-registry.org diff --git a/crs-transformation-adapter-core/src/test/java/com/programmerare/crsTransformations/utils/JarFileFinderTest.java b/crs-transformation-adapter-core/src/test/java/com/programmerare/crsTransformations/utils/JarFileFinderTest.java index 322024d..08d25c3 100644 --- a/crs-transformation-adapter-core/src/test/java/com/programmerare/crsTransformations/utils/JarFileFinderTest.java +++ b/crs-transformation-adapter-core/src/test/java/com/programmerare/crsTransformations/utils/JarFileFinderTest.java @@ -5,7 +5,7 @@ public class JarFileFinderTest { - private final String expectedNameOfTestedJarFile = "junit-jupiter-api-5.8.2.jar"; + private final String expectedNameOfTestedJarFile = "junit-jupiter-api-5.9.1.jar"; private final Class theTestedClass = Test.class; @Test