Matthew Broadhead
2018-03-12 11:51:48 UTC
hi
i am trying to use tomee-maven-plugin from a parent project.
i tried to define the subprojects as webapps like
<plugins>
<plugin>
<groupId>org.apache.tomee.maven</groupId>
<artifactId>tomee-maven-plugin</artifactId>
<version>${tomee.version}</version>
<configuration>
<tomeeVersion>${tomee.version}</tomeeVersion>
<tomeeClassifier>plus</tomeeClassifier>
<config>${project.basedir}/src/test/tomee/conf</config>
<libs>
<lib>mysql:mysql-connector-java:${mysql.connector.version}</lib>
</libs>
<webapps>
<webapp>${project.groupId}:subproject:${project.version}?name=subproject</webapp>
</webapps>
</configuration>
</plugin>
</plugins>
but it complains that it cannot find the subproject in the maven
repository. is there any way to tell it that it is a subproject?
also it seems to try to run up a tomee instance for every subproject
i am trying to use tomee-maven-plugin from a parent project.
i tried to define the subprojects as webapps like
<plugins>
<plugin>
<groupId>org.apache.tomee.maven</groupId>
<artifactId>tomee-maven-plugin</artifactId>
<version>${tomee.version}</version>
<configuration>
<tomeeVersion>${tomee.version}</tomeeVersion>
<tomeeClassifier>plus</tomeeClassifier>
<config>${project.basedir}/src/test/tomee/conf</config>
<libs>
<lib>mysql:mysql-connector-java:${mysql.connector.version}</lib>
</libs>
<webapps>
<webapp>${project.groupId}:subproject:${project.version}?name=subproject</webapp>
</webapps>
</configuration>
</plugin>
</plugins>
but it complains that it cannot find the subproject in the maven
repository. is there any way to tell it that it is a subproject?
also it seems to try to run up a tomee instance for every subproject