@@ -65,7 +65,14 @@ apply(plugin: "idea");
65
65
apply(plugin : " eclipse" );
66
66
apply(plugin : " gradle-one-jar" );
67
67
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
+ };
69
76
70
77
/*
71
78
* Repositories to use
@@ -74,6 +81,40 @@ repositories {
74
81
mavenCentral();
75
82
}
76
83
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
+
77
118
/*
78
119
* Necessary! Otherwise TestNG will not be used...
79
120
*
0 commit comments