forked from functionaljava/functionaljava
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
49 lines (37 loc) · 1.37 KB
/
build.gradle
File metadata and controls
49 lines (37 loc) · 1.37 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
ext {
}
allprojects {
defaultTasks 'build'
ext {
isSnapshot = true
fjBaseVersion = "3.2.2"
snapshotAppendix = "-SNAPSHOT"
fjVersion = fjBaseVersion + (isSnapshot ? snapshotAppendix : "")
fjConsumeVersion = "3.2"
projectTitle = "Functional Java"
projectName = "functionaljava"
pomProjectName = projectTitle
pomOrganisation = projectTitle
projectDescription = "Functional Java is an open source library that supports closures for the Java programming language"
projectUrl = "http://functionaljava.org/"
scmUrl = "git://github.com/functionaljava/functionaljava.git"
scmGitFile = "scm:git@github.com:functionaljava/functionaljava.git"
sonatypeBaseUrl = "https://oss.sonatype.org"
sonatypeSnapshotUrl = "$sonatypeBaseUrl/content/repositories/snapshots/"
sonatypeRepositoryUrl = "$sonatypeBaseUrl/content/groups/public"
sonatypeReleaseUrl = "$sonatypeBaseUrl/service/local/staging/deploy/maven2/"
sonatypeUploadUrl = isSnapshot ? sonatypeSnapshotUrl : sonatypeReleaseUrl
primaryEmail = "functionaljava@googlegroups.com"
dependencyJunit = "junit:junit:4.11"
}
version = fjVersion
group = "org.functionaljava"
}
subprojects {
repositories {
mavenCentral()
maven {
url sonatypeRepositoryUrl
}
}
}