We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12de563 commit 38c9379Copy full SHA for 38c9379
script/closure-library-release/closure-library-release.sh
@@ -172,5 +172,17 @@ if [ "$HUDSON" = "true" ]; then
172
echo "Now log in to https://oss.sonatype.org/ to release"
173
echo "the staging repository."
174
else
175
- echo "Skipping deployment because we are not on Hudson."
+ echo "Not on Hudson, local Maven install"
176
+ (
177
+ cd "$third_party_project_dir"
178
+ mvn clean
179
+ mvn package
180
+ mvn install:install-file -Dfile=./target/google-closure-library-third-party-$release_version.jar -DpomFile=pom.xml
181
+ )
182
183
+ cd "$project_dir"
184
185
186
+ mvn install:install-file -Dfile=./target/google-closure-library-$release_version.jar -DpomFile=pom.xml
187
188
fi
0 commit comments