1
I have a Maven (web) project composed of a packaging project (packaging = pom
) and several modules. I want to deploy that project in Heroku.
Doubts:
Where should get the
Procfile
? In the packaging project or in the web project?Like should get the
Procfile
?
pom.xml
of the packer project:
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>valor.alterado.para.stackoverflow</groupId>
<artifactId>stackoverflow-package</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>../stackoverflow-web</module>
<module>../stackoverflow-service</module>
<module>../stackoverflow-business</module>
<module>../stackoverflow-model</module>
<module>../stackoverflow-commons</module>
</modules>
</project>