@@ -64,13 +64,13 @@ tasks.test {
|
||||
|
||||
publishing {
|
||||
publications {
|
||||
create<MavenPublication>("num4j") {
|
||||
create<MavenPublication>("mathToolbox") {
|
||||
groupId = group.toString()
|
||||
artifactId = "num4j"
|
||||
artifactId = "math-toolbox"
|
||||
version = artefactVersion
|
||||
|
||||
pom {
|
||||
name = "Num4j"
|
||||
name = "OnixByte Math Toolbox"
|
||||
description =
|
||||
"This module is an easy-to-use util for mathematical calculations in Java."
|
||||
url = projectUrl
|
||||
@@ -108,7 +108,7 @@ publishing {
|
||||
from(components["java"])
|
||||
|
||||
signing {
|
||||
sign(publishing.publications["num4j"])
|
||||
sign(publishing.publications["mathToolbox"])
|
||||
}
|
||||
}
|
||||
|
||||
@@ -123,4 +123,4 @@ publishing {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -15,7 +15,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package com.onixbyte.nums;
|
||||
package com.onixbyte.math;
|
||||
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
+2
-2
@@ -15,9 +15,9 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package com.onixbyte.nums;
|
||||
package com.onixbyte.math;
|
||||
|
||||
import com.onixbyte.nums.model.QuartileBounds;
|
||||
import com.onixbyte.math.model.QuartileBounds;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
+1
-1
@@ -15,7 +15,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package com.onixbyte.nums.model;
|
||||
package com.onixbyte.math.model;
|
||||
|
||||
/**
|
||||
* A record representing the quartile bounds of a dataset.
|
||||
Reference in New Issue
Block a user