Skip to content

Commit caefd4c

Browse files
committed
Fuse *.gradle files into build.gradle
1 parent b2bd47f commit caefd4c

File tree

3 files changed

+30
-73
lines changed

3 files changed

+30
-73
lines changed

build.gradle

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,36 @@ apply(plugin: "osgi");
5454
apply(plugin: "idea");
5555
apply(plugin: "eclipse");
5656

57-
apply(from: "project.gradle");
57+
group = "com.github.fge";
58+
version = "1.8-SNAPSHOT";
59+
description = "JSON Patch (RFC 6902) and JSON merge-patch implementation in Java";
60+
sourceCompatibility = "1.6";
61+
targetCompatibility = "1.6"; // defaults to sourceCompatibility
62+
63+
/*
64+
* List of dependencies
65+
*/
66+
dependencies {
67+
compile(group: "com.google.code.findbugs", name: "jsr305",
68+
version: "2.0.1");
69+
compile(group: "com.github.fge", name: "jackson-coreutils",
70+
version: "1.6");
71+
testCompile(group: "org.testng", name: "testng", version: "6.8.7") {
72+
exclude(group: "junit", module: "junit");
73+
exclude(group: "org.beanshell", module: "bsh");
74+
exclude(group: "org.yaml", module: "snakeyaml");
75+
};
76+
testCompile(group: "org.mockito", name: "mockito-core", version: "1.9.5");
77+
}
78+
79+
javadoc.options.links("http://docs.oracle.com/javase/6/docs/api/");
80+
javadoc.options.links("http://jsr-305.googlecode.com/svn/trunk/javadoc/");
81+
javadoc.options.links("http://fasterxml.github.com/jackson-databind/javadoc/2.2.0/");
82+
javadoc.options.links("http://fasterxml.github.com/jackson-core/javadoc/2.2.0/");
83+
javadoc.options.links("http://fasterxml.github.com/jackson-annotations/javadoc/2.2.0/");
84+
javadoc.options.links("http://docs.guava-libraries.googlecode.com/git-history/v16.0.1/javadoc/");
85+
javadoc.options.links("http://fge.github.io/msg-simple/");
86+
javadoc.options.links("http://fge.github.io/jackson-coreutils/");
5887

5988
/*
6089
* Repositories to use

project.gradle

Lines changed: 0 additions & 52 deletions
This file was deleted.

settings.gradle

Lines changed: 0 additions & 20 deletions
This file was deleted.

0 commit comments

Comments
 (0)