Hello,

I’d like to configure my project to auto-deploy my generated archetype as part 
of the deploy execution. Is there a way to do this? So, to create the 
archetype, I have this:

            <plugin>
                <artifactId>maven-archetype-plugin</artifactId>
                <configuration>
                    <propertyFile>archetype.properties</propertyFile>
                </configuration>
                <executions>
                    <execution>
                        <phase>package</phase>
                        <goals>
                            <goal>create-from-project</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>

Is there a way to configure the deploy plugin (or some other plugin) to run a 
“deploy” goal on the generated archetype (in 
target/generated-sources/archetype/target)?

Thanks!

-Jordan


Reply via email to