Partial junit_4_12

This commit is contained in:
Tim Steinbach
2016-10-30 11:44:56 -04:00
parent d849c0e2e1
commit 1f2e19b67c
34 changed files with 1101 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
{ fetchMaven }:
rec {
mavenDependencyTree_2_1 = map (obj: fetchMaven {
version = "2.1";
baseName = "maven-dependency-tree";
package = "/org/apache/maven/shared";
sha512 = obj.sha512;
type = obj.type;
}) [
{ type = "pom"; sha512 = "29ibiyc1x20yrnxgcpvvf3k0pcjq63l98lakk10gipmx8a7bqs6m7npcqhzq6a3xrrcnz4pp7mj9gkmcs1svhg3qj4778cdax5pfy39"; }
{ type = "jar"; sha512 = "3mr5ph5yngfvqwvrbiwvs66d8gbhpjsp009q5hrarkg53kwlphy6rmvdkfzp4j5rz8dd4cirv7vf6nhhrpdnjy2fc8bhx2s61zissnd"; }
];
}