forked from joelittlejohn/jsonschema2pojo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jsonschema2pojo-upload-release
executable file
·169 lines (138 loc) · 6.41 KB
/
jsonschema2pojo-upload-release
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
#!/bin/bash
#
# Prepares and uploads files for the project downloads area and pushes new docs into the wiki repo.
#
# To create a new release:
#
# 1. Maven release command:
# export GPG_TTY=$(tty)
# mvn clean release:clean release:prepare release:perform -DautoVersionSubmodules
#
# 2. Close and Release snapshots repo at oss.sonatype.org
#
# 3. Wait at least 2hrs for synchronization to central
#
# 4. Run this script to publish new release to github
#
set -e
if [[ ! ("$#" == 3 ) ]]; then
echo 'Usage: jsonschema2pojo-upload-release <old version> <new version> <github token>'
exit 1
fi
if [[ "`which curl`" == "" ]]; then
echo "Missing required command 'curl'"
exit 1
fi
if [[ "`which jq`" == "" ]]; then
echo "Missing required command 'jq'"
exit 1
fi
OLD_VERSION=$1
VERSION=$2
WORKING_DIR=/tmp/jsonschema2pojo-$VERSION
GITHUB_TOKEN=$3
# recreate release dir
rm -rf $WORKING_DIR
mkdir -p $WORKING_DIR
pushd $WORKING_DIR
# download artifacts
wget -U NoSuchBrowser/1.0 https://repo1.maven.org/maven2/org/jsonschema2pojo/jsonschema2pojo/$VERSION/jsonschema2pojo-$VERSION-javadoc.jar
wget -U NoSuchBrowser/1.0 https://repo1.maven.org/maven2/org/jsonschema2pojo/jsonschema2pojo-cli/$VERSION/jsonschema2pojo-cli-$VERSION.jar
wget -U NoSuchBrowser/1.0 https://repo1.maven.org/maven2/org/jsonschema2pojo/jsonschema2pojo-cli/$VERSION/jsonschema2pojo-cli-$VERSION.bat
wget -U NoSuchBrowser/1.0 https://repo1.maven.org/maven2/org/jsonschema2pojo/jsonschema2pojo-cli/$VERSION/jsonschema2pojo-cli-$VERSION.sh
# download dependencies for cli
wget -U NoSuchBrowser/1.0 https://repo1.maven.org/maven2/org/jsonschema2pojo/jsonschema2pojo-cli/$VERSION/jsonschema2pojo-cli-$VERSION.pom -O pom.xml
mvn dependency:copy-dependencies -DincludeScope=runtime
mv target/dependency ./lib
mv jsonschema2pojo-cli-$VERSION.jar lib
rm -r target pom.xml
# do some shuffling for cleaner script names
mkdir bin
mv jsonschema2pojo-cli-$VERSION.bat bin/jsonschema2pojo.bat
mv jsonschema2pojo-cli-$VERSION.sh bin/jsonschema2pojo
chmod +x bin/jsonschema2pojo
# create the release archives
pushd ..
tar czf jsonschema2pojo-$VERSION.tar.gz jsonschema2pojo-$VERSION
zip -r jsonschema2pojo-$VERSION.zip jsonschema2pojo-$VERSION
popd
# clone gh-pages to update & add docs
git clone [email protected]:joelittlejohn/jsonschema2pojo.git -b gh-pages gh-pages
pushd gh-pages
# extract javadocs to gh-pages
mkdir -p javadocs/$VERSION
unzip $WORKING_DIR/jsonschema2pojo-$VERSION-javadoc.jar -d javadocs/$VERSION/
# commit javadocs and push
git add .
git commit -m "[release] adding $VERSION javadocs"
git push origin gh-pages
popd
wget -U NoSuchBrowser/1.0 https://repo1.maven.org/maven2/org/jsonschema2pojo/jsonschema2pojo-maven-plugin/$VERSION/jsonschema2pojo-maven-plugin-$VERSION-site.jar
wget https://raw.github.com/joelittlejohn/jsonschema2pojo/jsonschema2pojo-$VERSION/jsonschema2pojo-ant/src/site/Jsonschema2PojoTask.html
pushd gh-pages
# extract plugin docs
mkdir -p site/$VERSION
unzip $WORKING_DIR/jsonschema2pojo-maven-plugin-$VERSION-site.jar -d site/$VERSION/
mv $WORKING_DIR/Jsonschema2PojoTask.html site/$VERSION/
# commit plugin docs and push
git add .
git commit -m "[release] adding $VERSION plugin docs"
git push origin gh-pages
popd
# clone wiki to update version references
if [[ ! -z $OLD_VERSION ]]; then
git clone [email protected]:joelittlejohn/jsonschema2pojo.wiki.git wiki
pushd wiki
# replace any references to old version with new version
sed -i "s/$OLD_VERSION/$VERSION/g" *.md
# commit wiki updates and push to main repo
git add .
git commit -m "[release] updating wiki links and examples to $VERSION"
git push origin master
# update example
wget https://raw.github.com/joelittlejohn/jsonschema2pojo/jsonschema2pojo-$VERSION/jsonschema2pojo-core/src/test/java/org/jsonschema2pojo/example/Example.java
sed '/BEGIN EXAMPLE/q' Getting-Started.md > Getting-Started.md.new
echo '```java' >> Getting-Started.md.new
sed '1,/BEGIN EXAMPLE/d;/END EXAMPLE/,$d;s/ //g' Example.java >> Getting-Started.md.new
echo '```' >> Getting-Started.md.new
sed -n '/END EXAMPLE/,$p' Getting-Started.md >> Getting-Started.md.new
mv Getting-Started.md.new Getting-Started.md
rm Example.java
# commit wiki updates and push
git add .
git commit -m "[release] updating example code to $VERSION" || true
git push origin master || true
popd
fi
# clone main repo to update version references in the README.md
if [[ ! -z $OLD_VERSION ]]; then
git clone [email protected]:joelittlejohn/jsonschema2pojo.git main
pushd main
sed -i "s|$OLD_VERSION|$VERSION|" README.md jsonschema2pojo-gradle-plugin/README.md
git add .
git commit -m "[release] updating README.md for $VERSION"
git push origin master
# publish gradle plugin to plugins.gradle.org
pushd jsonschema2pojo-gradle-plugin
git checkout jsonschema2pojo-$VERSION
./gradlew -Pversion=$VERSION publishPlugins
popd
popd
fi
# upload to github
RELEASE=$(curl -H "Authorization: token $GITHUB_TOKEN" -sX POST \
-d "{\"tag_name\":\"jsonschema2pojo-$VERSION\", \"name\":\"$VERSION\"}" \
"https://api.github.com/repos/joelittlejohn/jsonschema2pojo/releases")
UPLOAD_URL=$(echo $RELEASE | jq -r .upload_url | sed "s/{?.*}/?name=jsonschema2pojo-$VERSION.tar.gz/")
curl -H "Authorization: token $GITHUB_TOKEN" -X POST \
-H"Content-Type: application/x-tar" --data-binary @../jsonschema2pojo-$VERSION.tar.gz "$UPLOAD_URL" -o /dev/null
UPLOAD_URL=$(echo $RELEASE | jq -r .upload_url | sed "s/{?.*}/?name=jsonschema2pojo-$VERSION.zip/")
curl -H "Authorization: token $GITHUB_TOKEN" -X POST \
-H"Content-Type: application/zip" --data-binary @../jsonschema2pojo-$VERSION.zip "$UPLOAD_URL" -o /dev/null
RELEASE_PAGE=$(echo $RELEASE | jq -r .html_url)
popd
rm -rf $WORKING_DIR
echo Release complete. Next steps:
echo - Update release notes for $RELEASE_PAGE
echo - Update CHANGELOG.md
echo - Check README.md links are working