summaryrefslogtreecommitdiffstats
path: root/src/jaegertracing/thrift/lib/as3/gradle/publishing.gradle
blob: 3e0ecf3192d39351f5ca3559127847031c31353d (plain)
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements. See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership. The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License. You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied. See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */

// Following Gradle best practices to keep build logic organized

model {
    tasks.signMavenPublication {
        dependsOn compileFlex
    }
}

publishing {
    publications {
        maven(MavenPublication) {

            groupId = "$group"
            artifactId = "${project.name}"
            version = "$version"

            def swcFile = file("$buildDir/libthrift-as3.swc")
            artifact(swcFile)

            pom {
                description = 'Thrift is a software framework for scalable cross-language services development.'
                packaging = 'swc'

                // older gradle doesn't recognize all the properties, so we inject them..
                withXml {
                    asNode().with {
                        appendNode('name', 'Apache Thrift')
                        appendNode('url', 'http://thrift.apache.org/')
                        appendNode('scm').with {
                            appendNode('url', 'https://github.com/apache/thrift/')
                            appendNode('connection', 'scm:git:https://github.com/apache/thrift.git')
                            appendNode('developerConnection', 'scm:git:git@github.com:apache/thrift.git')
                        }
                        appendNode('issueManagement').with {
                            appendNode('url', 'https://issues.apache.org/jira/projects/THRIFT/')
                            appendNode('system', 'Jira')
                        }
                        appendNode('licenses').with {
                            appendNode('license').with {
                                appendNode('name', 'The Apache Software License, Version 2.0')
                                appendNode('url', "${project.license}")
                            }
                        }
                        appendNode('organization').with {
                            appendNode('name', 'The Apache Software Foundation')
                            appendNode('url', 'http://www.apache.org/')
                        }
                        appendNode('developers').with {
                            appendNode('developer').with {
                                appendNode('id', 'dev')
                                appendNode('name', 'Apache Thrift Developers')
                                appendNode('email', 'dev@thrift.apache.org')
                            }
                        }
                    }
                }
            }
        }
    }
    repositories {
        maven {
            url = property('maven-repository-url')

            if (project.hasProperty('mavenUser') && project.hasProperty('mavenPassword')) {
                credentials {
                    username = property('mavenUser')
                    password = property('mavenPassword')
                }
            }
        }
    }
}

signing {
    required { property('sign') }
    sign publishing.publications.maven
}