-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathbuild.gradle
More file actions
51 lines (45 loc) · 1015 Bytes
/
build.gradle
File metadata and controls
51 lines (45 loc) · 1015 Bytes
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
39
40
41
42
43
44
45
46
47
48
49
50
51
plugins {
id "com.jfrog.bintray" version "1.7.3"
}
apply plugin: 'java'
apply plugin: 'maven-publish'
apply plugin: 'idea'
sourceCompatibility = 1.8
version = 'v1.3'
sourceSets {
main.java.srcDir "src/main/java"
test.java.srcDir "src/test/java"
}
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
}
bintray {
user = 'alwex'
key = property('key')
key = 'ae8dc4ea304b8140096d1c83cfacd074a03a050f'
publications = ['MavenPublish']
pkg {
repo = 'maven'
name = 'QuadTree'
licenses = ['MIT']
vcsUrl = 'https://github.com/alwex/QuadTree.git'
version {
name = '1.3.0'
desc = 'QuadTree'
released = new Date()
}
}
}
publishing {
publications {
MavenPublish(MavenPublication) {
from components.java
groupId 'org.alwex'
artifactId 'quad-tree'
version '1.3.0'
}
}
}