...
- Include the maven-source-plugin so that the source jars get created as part of deployment, there appears to be no profile available in the parent hierarchy to enable this.
Code Block language xml <build> ... <plugins> ... <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <goals> <goal>jar</goal> <goal>test-jar</goal> </goals> </execution> </executions> </plugin>
...
