Call additional publishToMavenLocal in maven build scripts and enable info

'publish' do not publish all artifacts to maven local and maven
fails because of it as it can't find dependencies.

KTI-729
This commit is contained in:
Nikolay Krasko
2022-12-16 15:09:32 +01:00
committed by Space Team
parent d87ed38cbf
commit 74dd31d00a
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -22,4 +22,4 @@ echo "DEPLOY_VERSION=$DEPLOY_VERSION"
echo "BUILD_NUMBER=$BUILD_NUMBER"
# Build dist/kotlin-compiler.zip
./gradlew -PdeployVersion=$DEPLOY_VERSION -Pbuild.number=$BUILD_NUMBER -Pteamcity=true zipCompiler --no-daemon
./gradlew --info -PdeployVersion=$DEPLOY_VERSION -Pbuild.number=$BUILD_NUMBER -Pteamcity=true zipCompiler --no-daemon
+2 -1
View File
@@ -35,7 +35,8 @@ mvn -DnewVersion=$DEPLOY_VERSION -DgenerateBackupPoms=false -DprocessAllModules=
-Pversions.kotlin-native=$KOTLIN_NATIVE_VERSION \
-Pteamcity=true \
--no-daemon \
publish
--info \
publish publishToMavenLocal
# Build maven part and publish it to the same build/repo
mvn \