forked from fhorsfall/bigbluebutton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
66 lines (57 loc) · 2.5 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
usePlugin 'eclipse'
usePlugin 'java'
usePlugin 'groovy'
version = '0.7'
jar.enabled = true
def appName = 'bbb-common-message'
archivesBaseName = appName
artifacts {
archives jar
}
repositories {
add(new org.apache.ivy.plugins.resolver.ChainResolver()) {
name = 'remote'
returnFirst = true
add(new org.apache.ivy.plugins.resolver.URLResolver()) {
name = "googlecode"
addArtifactPattern "http://red5.googlecode.com/svn/repository/[artifact](-[revision]).[ext]"
addArtifactPattern "http://red5.googlecode.com/svn/repository/[organisation]/[artifact](-[revision]).[ext]"
}
add(new org.apache.ivy.plugins.resolver.URLResolver()) {
name = "blindside-repos"
addArtifactPattern "http://blindside.googlecode.com/svn/repository/[artifact](-[revision]).[ext]"
addArtifactPattern "http://blindside.googlecode.com/svn/repository/[organisation]/[artifact](-[revision]).[ext]"
}
add(new org.apache.ivy.plugins.resolver.URLResolver()) {
name = "maven2-central"
m2compatible = true
addArtifactPattern "http://repo1.maven.org/maven2/[organisation]/[module]/[revision]/[artifact](-[revision]).[ext]"
addArtifactPattern "http://repo1.maven.org/maven2/[organisation]/[artifact]/[revision]/[artifact](-[revision]).[ext]"
}
add(new org.apache.ivy.plugins.resolver.URLResolver()) {
name = "testng_ibiblio_maven2"
m2compatible = true
addArtifactPattern "http://repo1.maven.org/maven2/[organisation]/[module]/[revision]/[artifact](-[revision])-jdk15.[ext]"
addArtifactPattern "http://repo1.maven.org/maven2/[organisation]/[artifact]/[revision]/[artifact](-[revision])-jdk15.[ext]"
}
}
flatDir name: 'fileRepo', dirs: "/home/firstuser/dev/repo"
}
dependencies {
// GROOVY
groovy 'org.codehaus.groovy:groovy-all:1.6.4@jar'
// Logging
compile ':slf4j-api:1.5.10@jar'
compile ':logback-core:0.9.18@jar'
compile ':logback-classic:0.9.18@jar'
compile ':jcl-over-slf4j:1.5.10@jar'
compile ':log4j-over-slf4j:1.5.10@jar'
// Java Concurrency In Practice
compile 'net.jcip:jcip-annotations:1.0@jar'
}
uploadArchives {
uploadDescriptor = false
repositories {
add project.repositories.fileRepo
}
}