Skip to content
This repository was archived by the owner on Nov 12, 2019. It is now read-only.

Commit c38d216

Browse files
committed
Finish conversion to gradle build
1 parent ed055a0 commit c38d216

File tree

3 files changed

+20
-168
lines changed

3 files changed

+20
-168
lines changed

build.gradle

+20-1
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,30 @@ description = """java-diff-utils"""
99
sourceCompatibility = 1.7
1010
targetCompatibility = 1.7
1111

12+
task sourcesJar(type: Jar, dependsOn: classes) {
13+
classifier = 'sources'
14+
from sourceSets.main.allSource
15+
}
16+
17+
javadoc {
18+
failOnError = false
19+
}
20+
21+
task javadocJar(type: Jar, dependsOn: javadoc) {
22+
classifier = 'javadoc'
23+
from javadoc.destinationDir
24+
}
25+
26+
artifacts {
27+
archives sourcesJar
28+
archives javadocJar
29+
}
30+
1231
repositories {
13-
1432
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
1533
maven { url "http://repo.maven.apache.org/maven2" }
1634
}
35+
1736
dependencies {
1837
compile group: 'com.google.guava', name: 'guava', version:'18.0'
1938
compile group: 'com.google.code.findbugs', name: 'jsr305', version:'3.0.0'

build.xml

-54
This file was deleted.

pom.xml

-113
This file was deleted.

0 commit comments

Comments
 (0)