Skip to content

Commit

Permalink
Merge pull request #14 from greghaskins/package-for-oss
Browse files Browse the repository at this point in the history
Package for OSS
  • Loading branch information
greghaskins committed Nov 7, 2015
2 parents cd467b0 + ec551b8 commit 4c93ca2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
9 changes: 3 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,9 @@ publishing {
groupId 'com.greghaskins'
artifactId 'spectrum'
version project.version
artifact (sourcesJar) {
classifier = 'sources'
}
artifact (javadocJar) {
classifier = 'javadoc'
}

artifact sourcesJar
artifact javadocJar
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/greghaskins/spectrum/Spectrum.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public static interface Block {
/**
* Execute the code block, raising any {@code Throwable} that may occur.
*
* @throws Throwable
* @throws Throwable if anything goes awry.
*/
void run() throws Throwable;
}
Expand Down

0 comments on commit 4c93ca2

Please sign in to comment.