Loading docs/en/guides/How-to-release.md +1 −1 Original line number Diff line number Diff line Loading @@ -41,7 +41,7 @@ Use the following block as a template and place it in ~/.m2/settings.xml ## Stage the release ``` ./mvnw release:perform -DskipTests ./mvnw release:perform -DskipTests -Pauto-submodule ``` 1. Set version number as x.y.z, and tag as vx.y.z 1. The release will automatically be inserted into a temporary staging repository for you. Loading pom.xml +37 −0 Original line number Diff line number Diff line Loading @@ -448,4 +448,41 @@ </plugin> </plugins> </build> <profiles> <profile> <id>auto-submodule</id> <activation> <activeByDefault>false</activeByDefault> </activation> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <executions> <execution> <id>git submodule update</id> <phase>initialize</phase> <inherited>false</inherited> <configuration> <executable>git</executable> <arguments> <argument>submodule</argument> <argument>update</argument> <argument>--init</argument> <argument>--recursive</argument> </arguments> </configuration> <goals> <goal>exec</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project> Loading
docs/en/guides/How-to-release.md +1 −1 Original line number Diff line number Diff line Loading @@ -41,7 +41,7 @@ Use the following block as a template and place it in ~/.m2/settings.xml ## Stage the release ``` ./mvnw release:perform -DskipTests ./mvnw release:perform -DskipTests -Pauto-submodule ``` 1. Set version number as x.y.z, and tag as vx.y.z 1. The release will automatically be inserted into a temporary staging repository for you. Loading
pom.xml +37 −0 Original line number Diff line number Diff line Loading @@ -448,4 +448,41 @@ </plugin> </plugins> </build> <profiles> <profile> <id>auto-submodule</id> <activation> <activeByDefault>false</activeByDefault> </activation> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <executions> <execution> <id>git submodule update</id> <phase>initialize</phase> <inherited>false</inherited> <configuration> <executable>git</executable> <arguments> <argument>submodule</argument> <argument>update</argument> <argument>--init</argument> <argument>--recursive</argument> </arguments> </configuration> <goals> <goal>exec</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>