forked from MarkusLewis/Podcast-Feed-Library
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
43 lines (35 loc) · 1.05 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
plugins {
id 'com.adarshr.test-logger' version '2.0.0'
}
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'maven-publish'
group = 'com.icosillion.podengine'
version = '2.3'
description = """Simple library to read podcast feeds"""
sourceCompatibility = 1.7
targetCompatibility = 1.7
repositories {
mavenCentral()
}
dependencies {
compile group: 'org.dom4j', name: 'dom4j', version:'2.0.2'
compile group: 'commons-io', name: 'commons-io', version:'2.5'
testCompile group: 'junit', name: 'junit', version:'4.12'
}
publishing {
repositories {
maven {
url 'https://maven.icosillion.com/artifactory/open-source/'
credentials {
username project.properties.containsKey("deploymentUser") ? project.properties.get("deploymentUser") : ""
password project.properties.containsKey("deploymentPassword") ? project.properties.get("deploymentPassword") : ""
}
}
}
publications {
maven(MavenPublication) {
from components.java
}
}
}