forked from kimkha/java-readability
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
38 lines (32 loc) · 889 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
group 'com.kimkha.readability'
version '0.1'
apply plugin: 'java'
apply plugin: 'maven'
sourceCompatibility = 1.5
repositories {
//mavenCentral()
jcenter()
}
dependencies {
//testCompile group: 'junit', name: 'junit', version: '4.11'
compile 'org.jsoup:jsoup:1.8.3'
compile 'org.apache.logging.log4j:log4j-core:2.4.1'
testCompile 'com.squareup.okhttp:okhttp:2.5.0'
}
task createPom << {
pom {
project {
groupId 'com.kimkha.readability'
artifactId 'java-readability'
version '0.1'
inceptionYear '2015'
licenses {
license {
name 'The Apache Software License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
distribution 'repo'
}
}
}
}.writeTo("pom.xml")
}