Skip to content

Commit 7999395

Browse files
committed
Fuse *.gradle files
Signed-off-by: Francis Galiegue <[email protected]>
1 parent a3ff02b commit 7999395

File tree

3 files changed

+42
-85
lines changed

3 files changed

+42
-85
lines changed

build.gradle

Lines changed: 42 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,14 @@ apply(plugin: "idea");
6565
apply(plugin: "eclipse");
6666
apply(plugin: "gradle-one-jar");
6767

68-
apply(from: "project.gradle");
68+
group = "com.github.fge";
69+
version = "2.2.5-SNAPSHOT";
70+
sourceCompatibility = "1.6";
71+
targetCompatibility = "1.6"; // defaults to sourceCompatibility
72+
73+
project.ext {
74+
description = "A Java implementation of the JSON Schema specification";
75+
};
6976

7077
/*
7178
* Repositories to use
@@ -74,6 +81,40 @@ repositories {
7481
mavenCentral();
7582
}
7683

84+
/*
85+
* List of dependencies
86+
*/
87+
dependencies {
88+
compile(group: "com.github.fge", name: "json-schema-core",
89+
version: "1.2.4");
90+
compile(group: "javax.mail", name: "mailapi", version: "1.4.3");
91+
compile(group: "joda-time", name: "joda-time", version: "2.3");
92+
compile(group: "com.googlecode.libphonenumber", name: "libphonenumber",
93+
version: "6.0");
94+
compile(group: "com.google.code.findbugs", name: "jsr305",
95+
version: "2.0.1");
96+
compile(group: "net.sf.jopt-simple", name: "jopt-simple", version: "4.6");
97+
testCompile(group: "org.testng", name: "testng", version: "6.8.7") {
98+
exclude(group: "junit", module: "junit");
99+
exclude(group: "org.beanshell", module: "bsh");
100+
exclude(group: "org.yaml", module: "snakeyaml");
101+
};
102+
testCompile(group: "org.mockito", name: "mockito-core", version: "1.9.5");
103+
testCompile(group: "org.easytesting", name: "fest-assert", version: "1.4");
104+
}
105+
106+
javadoc.options.links("http://docs.oracle.com/javase/6/docs/api/");
107+
javadoc.options.links("http://jsr-305.googlecode.com/svn/trunk/javadoc/");
108+
javadoc.options.links("http://fasterxml.github.com/jackson-databind/javadoc/2.2.0/");
109+
javadoc.options.links("http://fasterxml.github.com/jackson-core/javadoc/2.2.0/");
110+
javadoc.options.links("http://docs.guava-libraries.googlecode.com/git-history/v16.0.1/javadoc/");
111+
javadoc.options.links("http://fge.github.io/btf/");
112+
javadoc.options.links("http://fge.github.io/msg-simple/");
113+
javadoc.options.links("http://fge.github.io/jackson-coreutils/");
114+
javadoc.options.links("http://fge.github.io/uri-template/");
115+
javadoc.options.links("http://fge.github.io/json-schema-core/1.2.x/");
116+
117+
77118
/*
78119
* Necessary! Otherwise TestNG will not be used...
79120
*

project.gradle

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

settings.gradle

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

0 commit comments

Comments
 (0)