summaryrefslogtreecommitdiffstats
path: root/pkgs/development/java-modules/mojo/java-boot-classpath-detector.nix
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2016-11-15 14:18:19 -0500
committerTim Steinbach <tim@nequissimus.com>2016-11-15 14:18:19 -0500
commit63a46e0914fb1eb40c1903998faf10ffe3383cc5 (patch)
tree430daa662fa30d3d90648d160df7f9d5a8abcc77 /pkgs/development/java-modules/mojo/java-boot-classpath-detector.nix
parent0e10bfa24646637e7054eb8235b260e02c6953a0 (diff)
Complete hello world with test
Diffstat (limited to 'pkgs/development/java-modules/mojo/java-boot-classpath-detector.nix')
-rw-r--r--pkgs/development/java-modules/mojo/java-boot-classpath-detector.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/pkgs/development/java-modules/mojo/java-boot-classpath-detector.nix b/pkgs/development/java-modules/mojo/java-boot-classpath-detector.nix
new file mode 100644
index 000000000000..95eb52ae3e80
--- /dev/null
+++ b/pkgs/development/java-modules/mojo/java-boot-classpath-detector.nix
@@ -0,0 +1,14 @@
+{ fetchMaven }:
+
+rec {
+ mojoJavaBootClasspathDetector_1_11 = map (obj: fetchMaven {
+ version = "1.11";
+ baseName = "java-boot-classpath-detector";
+ package = "/org/codehaus/mojo";
+ sha512 = obj.sha512;
+ type = obj.type;
+ }) [
+ { type = "jar"; sha512 = "0dn0ry30n47544bbhp8j3r5fm6ip7cs1i8wg0wdfr735ak7r38wpb297q0k5kfaqrlqwi8cmnz4lngjan223lpwywjc806v27adjh57"; }
+ { type = "pom"; sha512 = "1ndzid9lik3a3bh8d2n9fqql29wypx4cw4ybvjgqhx63rs8hbb038irmcdr18jsalb8v2sj0bmjv6nmrr58wgf158r1zjv311m95yw0"; }
+ ];
+}