summaryrefslogtreecommitdiffstats
path: root/pkgs/development/java-modules/hamcrest
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2016-11-16 12:39:59 -0500
committerTim Steinbach <tim@nequissimus.com>2017-02-13 18:40:13 -0500
commit8a7a44c9181217e3640534b49b7a135023d22890 (patch)
tree9124a1770522de78230acf5751b6e7ac3d6f78ab /pkgs/development/java-modules/hamcrest
parent82c1ff501aec3f625ad423c795e53fbe5ea761be (diff)
javaPackages: Use artifactId/groupId
Diffstat (limited to 'pkgs/development/java-modules/hamcrest')
-rw-r--r--pkgs/development/java-modules/hamcrest/all.nix4
-rw-r--r--pkgs/development/java-modules/hamcrest/core.nix4
2 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/java-modules/hamcrest/all.nix b/pkgs/development/java-modules/hamcrest/all.nix
index 2bba1ac92491..bab9e1b115d0 100644
--- a/pkgs/development/java-modules/hamcrest/all.nix
+++ b/pkgs/development/java-modules/hamcrest/all.nix
@@ -3,8 +3,8 @@
rec {
hamcrestAll_1_3 = map (obj: fetchMaven {
version = "1.3";
- baseName = "hamcrest-all";
- package = "/org/hamcrest";
+ artifactId = "hamcrest-all";
+ groupId = "org.hamcrest";
sha512 = obj.sha512;
type = obj.type;
}) [
diff --git a/pkgs/development/java-modules/hamcrest/core.nix b/pkgs/development/java-modules/hamcrest/core.nix
index 104331f6f138..3842b8c5afa0 100644
--- a/pkgs/development/java-modules/hamcrest/core.nix
+++ b/pkgs/development/java-modules/hamcrest/core.nix
@@ -3,8 +3,8 @@
rec {
hamcrestCore_1_3 = map (obj: fetchMaven {
version = "1.3";
- baseName = "hamcrest-core";
- package = "/org/hamcrest";
+ artifactId = "hamcrest-core";
+ groupId = "org.hamcrest";
sha512 = obj.sha512;
type = obj.type;
}) [