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
38 lines (30 loc) · 1.21 KB
/
build.gradle
File metadata and controls
38 lines (30 loc) · 1.21 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
defaultTasks 'build'
ext {
}
allprojects {
ext {
isSnapshot = true
fjBaseVersion = "3.3"
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:[email protected]: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 = "[email protected]"
}
version = fjVersion
group = "org.functionaljava"
}
subprojects {
}