forked from acamilo/CHDK-PTP-Java
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
139 lines (115 loc) · 3.34 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'eclipse'
apply plugin: 'eclipse-wtp'
apply plugin: 'project-report'
apply plugin: 'semver'
apply plugin: 'signing'
//apply plugin: 'com.jfrog.artifactory-upload'
sourceCompatibility = 1.7
project.version.with { major = 0; minor = 6; revision = 0 }
//project.USER = "something"
//project.PASSWORD = "random"
buildscript
{
repositories
{
maven{ url 'https://maven.man.poznan.pl/repository/kiwi-repo' }
maven{ url 'http://oss.jfrog.org/artifactory/oss-snapshot-local' }
}
dependencies
{
classpath(group: 'org.jfrog.buildinfo', name: 'build-info-extractor-gradle', version: '3.0.x-SNAPSHOT')
classpath(group: 'io.fugu.gradle', name: 'gradle-semver-plugin', version: '0.2.0-SNAPSHOT')
}
}
repositories
{
maven() { url 'https://maven.man.poznan.pl/repository/kiwi-repo' } // virtual repo
}
//artifactory
//{
// contextUrl = 'https://maven.man.poznan.pl/repository'
// publish
// {
// contextUrl = 'https://maven.man.poznan.pl/repository'
// //A closure defining publishing information
// repository {
// repoKey = 'kiwi-libs-snapshots'
// // username = USER
// // password = PASSWORD
// }
// }
// resolve {
// contextUrl = 'https://maven.man.poznan.pl/repository' //The base Artifactory URL for the resolver
// repository { repoKey = 'kiwi-repo' //The Artifactory (preferably virtual) repository key to resolve from
// }
// }
//}
task javadocJar(type: Jar) {
classifier = 'javadoc'
from javadoc
}
task sourcesJar(type: Jar, dependsOn: classes) {
classifier 'sources'
from sourceSets.main.allSource
}
task testsJar(type: Jar, dependsOn: classes) {
classifier = "tests"
from sourceSets.test.allSource
from sourceSets.test.output
}
artifacts {
archives sourcesJar
archives javadocJar
archives jar
}
dependencies
{
// usb communication
compile 'org.usb4java:usb4java-javax:1.2+'
testCompile 'junit:junit:4.11+'
}
group = "com.neuronrobotics"
archivesBaseName = "CHDK-PTP-Java"
signing {
sign configurations.archives
}
uploadArchives {
repositories {
mavenDeployer {
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") {
authentication(userName: ossrhUsername, password: ossrhPassword)
}
snapshotRepository(url: "https://oss.sonatype.org/content/repositories/snapshots/") {
authentication(userName: ossrhUsername, password: ossrhPassword)
}
pom.project {
name 'CHDK Camera interface for Java'
packaging 'jar'
// optionally artifactId can be defined here
description 'A Java based interface for sending and receiving comands to CHDK cameras'
url 'http://neuronrobotics.com'
scm {
connection 'scm:git:https://github.com/acamilo/CHDK-PTP-Java'
developerConnection 'scm:git:[email protected]:acamilo/CHDK-PTP-Java.git'
url 'https://github.com/acamilo/CHDK-PTP-Java'
}
licenses {
license {
name 'The Apache License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
}
developers {
developer {
id 'madhephaestus'
name 'Kevin Harrington'
email '[email protected]'
}
}
}
}
}
}