File tree 7 files changed +44
-25
lines changed
7 files changed +44
-25
lines changed Original file line number Diff line number Diff line change 1
1
# Hood
2
2
3
+ [ ![ Maven metadata URL] ( https://img.shields.io/maven-metadata/v?color=blue&label=latest%20release&metadataUrl=https%3A%2F%2Fplugins.gradle.org%2Fm2%2Fcom%2F47deg%2Fhood%2Fmaven-metadata.xml )] ( https://plugins.gradle.org/plugin/com.47deg.hood )
4
+
3
5
** Hood** is a ` Gradle ` plugin to compare benchmarks and set the result as a ` Github ` status for a ` Pull Request ` .
4
6
** Hood** is built on [ Arrow] ( https://arrow-kt.io/ ) , a Functional companion to Kotlin's Standard Library.
5
7
6
- Please see the [ Hood Microsite] ( https://47degrees.github.io/hood/ ) for more information.
8
+ Please see the [ Hood Microsite] ( https://47degrees.github.io/hood/ ) for more information.
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ plugins {
12
12
id " maven-publish"
13
13
id " com.gradle.plugin-publish" version " 0.11.0"
14
14
id " org.jetbrains.kotlin.jvm" version " 1.3.71"
15
- id " com.jfrog.bintray " version " 1.8.5 "
15
+ id " com.jfrog.artifactory " version " 4.15.2 "
16
16
}
17
17
18
18
repositories {
@@ -81,17 +81,16 @@ def findPropertyOrEnv(String key) {
81
81
[project. properties[key], System . getenv(key)]. find { it != null }
82
82
}
83
83
84
- bintray {
85
- publish = true
86
- user = findPropertyOrEnv(" BINTRAY_USER" ) ?: " no.bintray.user"
87
- key = findPropertyOrEnv(" BINTRAY_API_KEY" ) ?: " no.bintray.api.key"
88
- publications = [" HoodPublication" ]
89
- configurations = [" archives" ]
90
- pkg {
91
- repo = " hood"
92
- name = project. name
93
- userOrg = POM_DEVELOPER_ID
94
- licenses = [" Apache-2.0" ]
95
- vcsUrl = " https://github.com/47degrees/hood.git"
96
- }
84
+ artifactory {
85
+ contextUrl = ' https://oss.jfrog.org'
86
+ publish {
87
+ repository {
88
+ repoKey = ' oss-snapshot-local'
89
+ username = findPropertyOrEnv(" BINTRAY_USER" ) ?: " no.bintray.user"
90
+ password = findPropertyOrEnv(" BINTRAY_API_KEY" ) ?: " no.bintray.api.key"
91
+ }
92
+ defaults {
93
+ publications ' HoodPublication'
94
+ }
95
+ }
97
96
}
Original file line number Diff line number Diff line change @@ -7,9 +7,9 @@ if [ "$TRAVIS_BRANCH" == "master" ]; then
7
7
if [[ " $VERSION_NAME " =~ ^[0-9]+\. [0-9]+\. [0-9]+$ ]]; then
8
8
echo " Starting script for Release $VERSION_NAME "
9
9
. $( dirname $0 ) /deploy_release.sh
10
- # elif [[ "$VERSION_NAME" == *-SNAPSHOT ]]; then
11
- # echo "Starting script for Snapshot Release $VERSION_NAME"
12
- # . $(dirname $0)/deploy_snapshot.sh
10
+ elif [[ " $VERSION_NAME " == * -SNAPSHOT ]]; then
11
+ echo " Starting script for Snapshot $VERSION_NAME "
12
+ . $( dirname $0 ) /deploy_snapshot.sh
13
13
else
14
14
echo " No deploy script matched version '$VERSION_NAME ' on master"
15
15
fi
Original file line number Diff line number Diff line change 3
3
4
4
function getProperty {
5
5
PROP_KEY=$1
6
- PROP_VALUE=` cat gradle.properties | grep " $PROP_KEY " | cut -d' =' -f2`
6
+ PROP_VALUE=` cat gradle.properties | grep -e " ^ $PROP_KEY = " | cut -d' =' -f2`
7
7
echo $PROP_VALUE
8
8
}
9
9
@@ -14,4 +14,14 @@ function fail {
14
14
15
15
SLUG=" 47degrees/hood"
16
16
BRANCH=" master"
17
- VERSION_NAME=$( getProperty " version" )
17
+
18
+ #
19
+ # If 'release_version' isn't published in Gradle Plugin Portal, 'version' value is replaced by 'release_version' value
20
+ #
21
+ RELEASE_VERSION=$( getProperty " release_version" )
22
+ LATEST_PUBLISHED_VERSION=$( curl https://plugins.gradle.org/m2/com/47deg/hood/maven-metadata.xml | grep latest | cut -d' >' -f2 | cut -d' <' -f1)
23
+ if [ " $RELEASE_VERSION " != " $LATEST_PUBLISHED_VERSION " ]; then
24
+ sed -i " s/version.*/version=$RELEASE_VERSION /g" gradle.properties
25
+ fi
26
+
27
+ VERSION_NAME=$( getProperty " version" )
Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ elif [ "$TRAVIS_BRANCH" != "$BRANCH" ]; then
14
14
elif ! [[ " $VERSION_NAME " =~ $VERSION_PATTERN ]]; then
15
15
fail " Failed release deployment: wrong version. Expected '$VERSION_NAME ' to have pattern 'X.Y.Z'"
16
16
else
17
- ./gradlew bintrayUpload
18
17
./gradlew -Dgradle.publish.key=$GRADLE_PUBLISH_KEY -Dgradle.publish.secret=$GRADLE_PUBLISH_SECRET publishPlugins
19
18
echo " Release '$VERSION_NAME ' deployed!"
20
- fi
19
+ fi
Original file line number Diff line number Diff line change @@ -14,6 +14,6 @@ elif [ "$TRAVIS_BRANCH" != "$BRANCH" ]; then
14
14
elif ! [[ " $VERSION_NAME " =~ $VERSION_PATTERN ]]; then
15
15
echo " Skipping snapshot deployment '$VERSION_NAME ': This is probably a pre-release build"
16
16
else
17
- ./gradlew bintrayUpload
17
+ ./gradlew artifactoryPublish
18
18
echo " Snapshot '$VERSION_NAME ' deployed!"
19
- fi
19
+ fi
Original file line number Diff line number Diff line change 1
1
# Package definitions
2
2
group =com.47deg
3
- version =0.8.1
3
+ # Just SNAPSHOT versions
4
+ version =0.8.2-SNAPSHOT
5
+ # Just RELEASE versions
6
+ release_version =0.8.1
7
+ #
8
+ # NOTE:
9
+ #
10
+ # Update 'version' and 'release_version' when releasing.
11
+ # If 'release_version' isn't published, 'version' value will be replaced by 'release_version' value automatically when deploying.
12
+ # See deploy-scripts/deploy_common.sh
4
13
5
14
# Gradle options
6
15
org.gradle.warning.mode =all
You can’t perform that action at this time.
0 commit comments