-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
58 lines (44 loc) · 1.45 KB
/
build.gradle
File metadata and controls
58 lines (44 loc) · 1.45 KB
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
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
}
}
apply plugin: 'java'
ext {
bintrayRepo = 'maven'
bintrayName = 'FileToBytesExporter'
publishedGroupId = 'com.github.javinator9889'
libraryName = 'FileToBytesExporter'
artifact = 'filetobytesexporter'
libraryDescription = 'Generate binary files from regular text ones.'
siteUrl = 'https://github.com/Javinator9889/FileToBytesExporter'
gitUrl = 'https://github.com/Javinator9889/FileToBytesExporter.git'
libraryVersion = '1.0.5'
developerId = 'Javinator9889'
developerName = 'Javinator9889'
developerEmail = 'javialonso007@hotmail.es'
licenseName = 'GNU General Public License v3.0'
licenseUrl = 'https://github.com/Javinator9889/FileToBytesExporter/blob/master/LICENSE'
allLicenses = ["GPL-3"]
}
group = 'com.github.javinator9889'
version '1.0.4'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
testCompile 'junit:junit:4.12'
}
jar {
manifest {
attributes('Implementation-Title': project.name,
'Implementation-Version': project.version)
}
}
apply from: 'https://raw.githubusercontent.com/brightec/JCenter/master/installv1.gradle'
apply from: 'https://raw.githubusercontent.com/brightec/JCenter/master/bintrayv1.gradle'