Notatka na przyszłość – tak ma wyglądać Procfile jak robisz deploy aplikacji napisanej w Javie na Heroku i korzystasz z gradle’a:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
web: java $JAVA_OPTS -Dserver.port=$PORT -jar app.jar |
Do build.gradle dodaj task:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
task stage(type: Copy, dependsOn: [clean, build]) { | |
from jar.archivePath | |
into project.rootDir | |
rename { | |
'app.jar' | |
} | |
} | |
stage.mustRunAfter(clean) | |
clean << { | |
project.file('app.jar').delete() | |
} |
Nie zapomnij skomitować (i pushnąć) do gita plików gradlew, gradlew.bat i folderu gradle.wrapper.
I tyle, nic więcej nie kombinuj