Skip to content

Instantly share code, notes, and snippets.

declare namespace browser.bookmarks {
export interface BookmarkTreeNode {
id: string;
parentId: string;
title: string;
index: string;
url?: string;
children?: BookmarkTreeNode[];
unmodifiable?: string;
}
@kva1966
kva1966 / afterProject-init.gradle
Created November 20, 2014 04:17
afterProject init.gradle
afterProject { p ->
p.apply plugin: 'maven-publish'
p.apply plugin: 'com.jfrog.artifactory'
p.publishing {
publications {
mavenJava(MavenPublication) {
from p.components.java
artifact p.sourcesJar