summaryrefslogtreecommitdiffstats
path: root/pkgs/development/java-modules/maven/plugin-registry.nix
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2016-10-30 11:44:56 -0400
committerTim Steinbach <tim@nequissimus.com>2016-11-14 15:19:33 -0500
commit1f2e19b67cdb68a89fc99a70eff5b851e488ab97 (patch)
tree9b53b7e280fdb0fc5e632b4a9655dfe28144341d /pkgs/development/java-modules/maven/plugin-registry.nix
parentd849c0e2e1236b22e298254e75f8d30a665af66f (diff)
Partial junit_4_12
Diffstat (limited to 'pkgs/development/java-modules/maven/plugin-registry.nix')
-rw-r--r--pkgs/development/java-modules/maven/plugin-registry.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/pkgs/development/java-modules/maven/plugin-registry.nix b/pkgs/development/java-modules/maven/plugin-registry.nix
new file mode 100644
index 000000000000..baccc1aeb765
--- /dev/null
+++ b/pkgs/development/java-modules/maven/plugin-registry.nix
@@ -0,0 +1,14 @@
+{ fetchMaven }:
+
+rec {
+ mavenPluginRegistry_2_0_9 = map (obj: fetchMaven {
+ version = "2.0.9";
+ baseName = "maven-plugin-registry";
+ package = "/org/apache/maven";
+ sha512 = obj.sha512;
+ type = obj.type;
+ }) [
+ { type = "jar"; sha512 = "14mkwxvj0rbj28df9gjnkvr20paayqdmsg0vrzcb23d3xng3zc1fy5hvkifnp7xg73qxpdz0nij56lnnj7q2dqxcnmqvh0vslhc2xja"; }
+ { type = "pom"; sha512 = "0c09imgd44b3pgnj1bjak7xn2z3mpwy9nhbchagfqkicras4djmn2dqwpm1z6p1d4khwx830x9grjrw45przan8lgc7wxzkalnnaqkf"; }
+ ];
+}