├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ └── verify.yml ├── .gitignore ├── .mvn └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── CHANGELOG.md ├── LICENSE ├── README.md ├── mvnw ├── mvnw.cmd ├── pom.xml └── src ├── it ├── feature-finish-2-it │ ├── expected-pom.xml │ ├── gitignorefile │ ├── init.bsh │ ├── invoker.properties │ ├── pom.xml │ └── verify.bsh ├── feature-finish-3-it │ ├── expected-pom.xml │ ├── gitignorefile │ ├── init.bsh │ ├── invoker.properties │ ├── pom.xml │ └── verify.bsh ├── feature-finish-it │ ├── expected-pom.xml │ ├── gitignorefile │ ├── init.bsh │ ├── invoker.properties │ ├── pom.xml │ └── verify.bsh ├── feature-start-2-it │ ├── gitignorefile │ ├── init.bsh │ ├── invoker.properties │ ├── pom.xml │ └── verify.bsh ├── feature-start-3-it │ ├── expected-pom.xml │ ├── gitignorefile │ ├── init.bsh │ ├── invoker.properties │ ├── pom.xml │ └── verify.bsh ├── feature-start-4-it │ ├── expected-pom.xml │ ├── gitignorefile │ ├── init.bsh │ ├── invoker.properties │ ├── pom.xml │ └── verify.bsh ├── feature-start-it │ ├── expected-pom.xml │ ├── gitignorefile │ ├── init.bsh │ ├── invoker.properties │ ├── pom.xml │ └── verify.bsh ├── hotfix-finish-2-it │ ├── expected-production-pom.xml │ ├── expected-release-pom.xml │ ├── gitignorefile │ ├── init.bsh │ ├── invoker.properties │ ├── pom.xml │ └── verify.bsh ├── hotfix-finish-4-it │ ├── expected-development-pom.xml │ ├── expected-production-pom.xml │ ├── gitignorefile │ ├── init.bsh │ ├── invoker.properties │ ├── pom.xml │ └── verify.bsh ├── hotfix-finish-5-it │ ├── expected-development-pom.xml │ ├── expected-production-pom.xml │ ├── gitignorefile │ ├── init.bsh │ ├── invoker.properties │ ├── pom.xml │ └── verify.bsh ├── hotfix-finish-it-3 │ ├── child1 │ │ └── pom.xml │ ├── child2 │ │ └── pom.xml │ ├── expected-production-pom.xml │ ├── gitignorefile │ ├── init.bsh │ ├── invoker.properties │ ├── pom.xml │ └── verify.bsh ├── hotfix-finish-it │ ├── expected-production-pom.xml │ ├── expected-release-pom.xml │ ├── gitignorefile │ ├── init.bsh │ ├── invoker.properties │ ├── pom.xml │ └── verify.bsh ├── hotfix-start-2-it │ ├── expected-pom.xml │ ├── gitignorefile │ ├── init.bsh │ ├── invoker.properties │ ├── pom.xml │ └── verify.bsh ├── hotfix-start-it │ ├── expected-pom.xml │ ├── gitignorefile │ ├── init.bsh │ ├── invoker.properties │ ├── pom.xml │ └── verify.bsh ├── init-giflow-config-it │ ├── expected-config │ ├── gitignorefile │ ├── init.bsh │ ├── invoker.properties │ ├── pom.xml │ └── verify.bsh ├── release-finish-2-it │ ├── expected-development-pom.xml │ ├── expected-production-pom.xml │ ├── gitignorefile │ ├── init.bsh │ ├── invoker.properties │ ├── pom.xml │ └── verify.bsh ├── release-finish-3-it │ ├── expected-development-pom.xml │ ├── expected-production-pom.xml │ ├── gitignorefile │ ├── init.bsh │ ├── invoker.properties │ ├── pom.xml │ └── verify.bsh ├── release-finish-4-it │ ├── expected-development-pom.xml │ ├── expected-production-pom.xml │ ├── gitignorefile │ ├── init.bsh │ ├── invoker.properties │ ├── pom.xml │ └── verify.bsh ├── release-finish-5-it │ ├── expected-development-pom.xml │ ├── expected-production-pom.xml │ ├── gitignorefile │ ├── init.bsh │ ├── invoker.properties │ ├── pom.xml │ └── verify.bsh ├── release-finish-6-it │ ├── expected-development-pom.xml │ ├── expected-production-pom.xml │ ├── gitignorefile │ ├── init.bsh │ ├── invoker.properties │ ├── pom.xml │ └── verify.bsh ├── release-finish-7-it │ ├── expected-development-pom.xml │ ├── expected-production-pom.xml │ ├── gitignorefile │ ├── init.bsh │ ├── invoker.properties │ ├── pom.xml │ └── verify.bsh ├── release-finish-8-it │ ├── expected-development-pom.xml │ ├── expected-production-pom.xml │ ├── gitignorefile │ ├── init.bsh │ ├── invoker.properties │ ├── pom.xml │ └── verify.bsh ├── release-finish-it │ ├── expected-development-pom.xml │ ├── expected-production-pom.xml │ ├── gitignorefile │ ├── init.bsh │ ├── invoker.properties │ ├── pom.xml │ └── verify.bsh ├── release-it │ ├── expected-development-pom.xml │ ├── expected-production-pom.xml │ ├── gitignorefile │ ├── init.bsh │ ├── invoker.properties │ ├── pom.xml │ └── verify.bsh ├── release-start-2-it │ ├── expected-pom.xml │ ├── gitignorefile │ ├── init.bsh │ ├── invoker.properties │ ├── pom.xml │ └── verify.bsh ├── release-start-3-it │ ├── expected-pom.xml │ ├── gitignorefile │ ├── init.bsh │ ├── invoker.properties │ ├── pom.xml │ └── verify.bsh ├── release-start-finish-2-it │ ├── expectations │ │ ├── develop │ │ │ ├── expected-pom.xml │ │ │ ├── expected-test.txt │ │ │ ├── withAgregatorAsParent │ │ │ │ └── expected-pom.xml │ │ │ └── withoutAgregatorAsParent │ │ │ │ └── expected-pom.xml │ │ └── master │ │ │ ├── expected-pom.xml │ │ │ ├── expected-test.txt │ │ │ ├── withAgregatorAsParent │ │ │ └── expected-pom.xml │ │ │ └── withoutAgregatorAsParent │ │ │ └── expected-pom.xml │ ├── gitignorefile │ ├── init.bsh │ ├── invoker.properties │ ├── pom.xml │ ├── test.txt │ ├── verify.bsh │ ├── withAgregatorAsParent │ │ └── pom.xml │ └── withoutAgregatorAsParent │ │ └── pom.xml ├── release-start-finish-it │ ├── expected-development-pom.xml │ ├── expected-development-test.txt │ ├── expected-production-pom.xml │ ├── expected-production-test.txt │ ├── gitignorefile │ ├── init.bsh │ ├── invoker.properties │ ├── pom.xml │ ├── test.txt │ └── verify.bsh ├── release-start-it-projects-reloading │ ├── child1 │ │ └── child1-pom.xml │ ├── expected-pom.xml │ ├── gitignorefile │ ├── init.bsh │ ├── invoker.properties │ ├── pom.xml │ └── verify.bsh ├── release-start-it-snapshot-dependency-fail │ ├── gitignorefile │ ├── init.bsh │ ├── invoker.properties │ ├── pom.xml │ └── verify.groovy ├── release-start-it-snapshot-parent-fail │ ├── dummy-parent │ │ └── pom.xml │ ├── gitignorefile │ ├── init.bsh │ ├── invoker.properties │ ├── pom.xml │ └── verify.groovy ├── release-start-it-version-policy │ ├── expected-pom.xml │ ├── gitignorefile │ ├── init.bsh │ ├── invoker.properties │ ├── pom.xml │ └── verify.bsh ├── release-start-it │ ├── expected-pom.xml │ ├── gitignorefile │ ├── init.bsh │ ├── invoker.properties │ ├── pom.xml │ └── verify.bsh ├── support-start-2-it │ ├── expected-pom.xml │ ├── gitignorefile │ ├── init.bsh │ ├── invoker.properties │ ├── pom.xml │ └── verify.bsh ├── support-start-3-it │ ├── expected-pom.xml │ ├── gitignorefile │ ├── init.bsh │ ├── invoker.properties │ ├── pom.xml │ └── verify.bsh ├── support-start-it │ ├── expected-pom.xml │ ├── gitignorefile │ ├── init.bsh │ ├── invoker.properties │ ├── pom.xml │ └── verify.bsh └── version-update-it │ ├── expected-pom.xml │ ├── gitignorefile │ ├── init.bsh │ ├── invoker.properties │ ├── pom.xml │ └── verify.bsh ├── main ├── java │ └── com │ │ └── amashchenko │ │ └── maven │ │ └── plugin │ │ └── gitflow │ │ ├── AbstractGitFlowMojo.java │ │ ├── CommitMessages.java │ │ ├── GitFlowConfig.java │ │ ├── GitFlowFeatureFinishMojo.java │ │ ├── GitFlowFeatureStartMojo.java │ │ ├── GitFlowHotfixFinishMojo.java │ │ ├── GitFlowHotfixStartMojo.java │ │ ├── GitFlowReleaseFinishMojo.java │ │ ├── GitFlowReleaseMojo.java │ │ ├── GitFlowReleaseStartMojo.java │ │ ├── GitFlowSupportStartMojo.java │ │ ├── GitFlowVersionInfo.java │ │ ├── GitFlowVersionUpdateMojo.java │ │ ├── StringBufferStreamConsumer.java │ │ └── prompter │ │ ├── ConsolePrompter.java │ │ ├── GitFlowPrompter.java │ │ └── PromptValidation.java └── resources │ └── META-INF │ └── LICENSE ├── site ├── markdown │ └── index.md └── site.xml └── test └── java └── com └── amashchenko └── maven └── plugin └── gitflow ├── FeatureVersionTest.java ├── GitFlowVersionInfoTest.java ├── NextHotfixVersionTest.java ├── NextSnapshotVersionTest.java └── ValidateConfigurationTest.java /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: aleksandr-m 2 | -------------------------------------------------------------------------------- /.github/workflows/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/.github/workflows/verify.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/README.md -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/pom.xml -------------------------------------------------------------------------------- /src/it/feature-finish-2-it/expected-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/feature-finish-2-it/expected-pom.xml -------------------------------------------------------------------------------- /src/it/feature-finish-2-it/gitignorefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/feature-finish-2-it/gitignorefile -------------------------------------------------------------------------------- /src/it/feature-finish-2-it/init.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/feature-finish-2-it/init.bsh -------------------------------------------------------------------------------- /src/it/feature-finish-2-it/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/feature-finish-2-it/invoker.properties -------------------------------------------------------------------------------- /src/it/feature-finish-2-it/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/feature-finish-2-it/pom.xml -------------------------------------------------------------------------------- /src/it/feature-finish-2-it/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/feature-finish-2-it/verify.bsh -------------------------------------------------------------------------------- /src/it/feature-finish-3-it/expected-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/feature-finish-3-it/expected-pom.xml -------------------------------------------------------------------------------- /src/it/feature-finish-3-it/gitignorefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/feature-finish-3-it/gitignorefile -------------------------------------------------------------------------------- /src/it/feature-finish-3-it/init.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/feature-finish-3-it/init.bsh -------------------------------------------------------------------------------- /src/it/feature-finish-3-it/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/feature-finish-3-it/invoker.properties -------------------------------------------------------------------------------- /src/it/feature-finish-3-it/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/feature-finish-3-it/pom.xml -------------------------------------------------------------------------------- /src/it/feature-finish-3-it/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/feature-finish-3-it/verify.bsh -------------------------------------------------------------------------------- /src/it/feature-finish-it/expected-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/feature-finish-it/expected-pom.xml -------------------------------------------------------------------------------- /src/it/feature-finish-it/gitignorefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/feature-finish-it/gitignorefile -------------------------------------------------------------------------------- /src/it/feature-finish-it/init.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/feature-finish-it/init.bsh -------------------------------------------------------------------------------- /src/it/feature-finish-it/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/feature-finish-it/invoker.properties -------------------------------------------------------------------------------- /src/it/feature-finish-it/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/feature-finish-it/pom.xml -------------------------------------------------------------------------------- /src/it/feature-finish-it/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/feature-finish-it/verify.bsh -------------------------------------------------------------------------------- /src/it/feature-start-2-it/gitignorefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/feature-start-2-it/gitignorefile -------------------------------------------------------------------------------- /src/it/feature-start-2-it/init.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/feature-start-2-it/init.bsh -------------------------------------------------------------------------------- /src/it/feature-start-2-it/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/feature-start-2-it/invoker.properties -------------------------------------------------------------------------------- /src/it/feature-start-2-it/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/feature-start-2-it/pom.xml -------------------------------------------------------------------------------- /src/it/feature-start-2-it/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/feature-start-2-it/verify.bsh -------------------------------------------------------------------------------- /src/it/feature-start-3-it/expected-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/feature-start-3-it/expected-pom.xml -------------------------------------------------------------------------------- /src/it/feature-start-3-it/gitignorefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/feature-start-3-it/gitignorefile -------------------------------------------------------------------------------- /src/it/feature-start-3-it/init.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/feature-start-3-it/init.bsh -------------------------------------------------------------------------------- /src/it/feature-start-3-it/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/feature-start-3-it/invoker.properties -------------------------------------------------------------------------------- /src/it/feature-start-3-it/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/feature-start-3-it/pom.xml -------------------------------------------------------------------------------- /src/it/feature-start-3-it/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/feature-start-3-it/verify.bsh -------------------------------------------------------------------------------- /src/it/feature-start-4-it/expected-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/feature-start-4-it/expected-pom.xml -------------------------------------------------------------------------------- /src/it/feature-start-4-it/gitignorefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/feature-start-4-it/gitignorefile -------------------------------------------------------------------------------- /src/it/feature-start-4-it/init.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/feature-start-4-it/init.bsh -------------------------------------------------------------------------------- /src/it/feature-start-4-it/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/feature-start-4-it/invoker.properties -------------------------------------------------------------------------------- /src/it/feature-start-4-it/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/feature-start-4-it/pom.xml -------------------------------------------------------------------------------- /src/it/feature-start-4-it/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/feature-start-4-it/verify.bsh -------------------------------------------------------------------------------- /src/it/feature-start-it/expected-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/feature-start-it/expected-pom.xml -------------------------------------------------------------------------------- /src/it/feature-start-it/gitignorefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/feature-start-it/gitignorefile -------------------------------------------------------------------------------- /src/it/feature-start-it/init.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/feature-start-it/init.bsh -------------------------------------------------------------------------------- /src/it/feature-start-it/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/feature-start-it/invoker.properties -------------------------------------------------------------------------------- /src/it/feature-start-it/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/feature-start-it/pom.xml -------------------------------------------------------------------------------- /src/it/feature-start-it/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/feature-start-it/verify.bsh -------------------------------------------------------------------------------- /src/it/hotfix-finish-2-it/expected-production-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-finish-2-it/expected-production-pom.xml -------------------------------------------------------------------------------- /src/it/hotfix-finish-2-it/expected-release-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-finish-2-it/expected-release-pom.xml -------------------------------------------------------------------------------- /src/it/hotfix-finish-2-it/gitignorefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-finish-2-it/gitignorefile -------------------------------------------------------------------------------- /src/it/hotfix-finish-2-it/init.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-finish-2-it/init.bsh -------------------------------------------------------------------------------- /src/it/hotfix-finish-2-it/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-finish-2-it/invoker.properties -------------------------------------------------------------------------------- /src/it/hotfix-finish-2-it/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-finish-2-it/pom.xml -------------------------------------------------------------------------------- /src/it/hotfix-finish-2-it/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-finish-2-it/verify.bsh -------------------------------------------------------------------------------- /src/it/hotfix-finish-4-it/expected-development-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-finish-4-it/expected-development-pom.xml -------------------------------------------------------------------------------- /src/it/hotfix-finish-4-it/expected-production-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-finish-4-it/expected-production-pom.xml -------------------------------------------------------------------------------- /src/it/hotfix-finish-4-it/gitignorefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-finish-4-it/gitignorefile -------------------------------------------------------------------------------- /src/it/hotfix-finish-4-it/init.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-finish-4-it/init.bsh -------------------------------------------------------------------------------- /src/it/hotfix-finish-4-it/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-finish-4-it/invoker.properties -------------------------------------------------------------------------------- /src/it/hotfix-finish-4-it/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-finish-4-it/pom.xml -------------------------------------------------------------------------------- /src/it/hotfix-finish-4-it/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-finish-4-it/verify.bsh -------------------------------------------------------------------------------- /src/it/hotfix-finish-5-it/expected-development-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-finish-5-it/expected-development-pom.xml -------------------------------------------------------------------------------- /src/it/hotfix-finish-5-it/expected-production-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-finish-5-it/expected-production-pom.xml -------------------------------------------------------------------------------- /src/it/hotfix-finish-5-it/gitignorefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-finish-5-it/gitignorefile -------------------------------------------------------------------------------- /src/it/hotfix-finish-5-it/init.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-finish-5-it/init.bsh -------------------------------------------------------------------------------- /src/it/hotfix-finish-5-it/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-finish-5-it/invoker.properties -------------------------------------------------------------------------------- /src/it/hotfix-finish-5-it/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-finish-5-it/pom.xml -------------------------------------------------------------------------------- /src/it/hotfix-finish-5-it/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-finish-5-it/verify.bsh -------------------------------------------------------------------------------- /src/it/hotfix-finish-it-3/child1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-finish-it-3/child1/pom.xml -------------------------------------------------------------------------------- /src/it/hotfix-finish-it-3/child2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-finish-it-3/child2/pom.xml -------------------------------------------------------------------------------- /src/it/hotfix-finish-it-3/expected-production-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-finish-it-3/expected-production-pom.xml -------------------------------------------------------------------------------- /src/it/hotfix-finish-it-3/gitignorefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-finish-it-3/gitignorefile -------------------------------------------------------------------------------- /src/it/hotfix-finish-it-3/init.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-finish-it-3/init.bsh -------------------------------------------------------------------------------- /src/it/hotfix-finish-it-3/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-finish-it-3/invoker.properties -------------------------------------------------------------------------------- /src/it/hotfix-finish-it-3/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-finish-it-3/pom.xml -------------------------------------------------------------------------------- /src/it/hotfix-finish-it-3/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-finish-it-3/verify.bsh -------------------------------------------------------------------------------- /src/it/hotfix-finish-it/expected-production-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-finish-it/expected-production-pom.xml -------------------------------------------------------------------------------- /src/it/hotfix-finish-it/expected-release-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-finish-it/expected-release-pom.xml -------------------------------------------------------------------------------- /src/it/hotfix-finish-it/gitignorefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-finish-it/gitignorefile -------------------------------------------------------------------------------- /src/it/hotfix-finish-it/init.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-finish-it/init.bsh -------------------------------------------------------------------------------- /src/it/hotfix-finish-it/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-finish-it/invoker.properties -------------------------------------------------------------------------------- /src/it/hotfix-finish-it/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-finish-it/pom.xml -------------------------------------------------------------------------------- /src/it/hotfix-finish-it/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-finish-it/verify.bsh -------------------------------------------------------------------------------- /src/it/hotfix-start-2-it/expected-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-start-2-it/expected-pom.xml -------------------------------------------------------------------------------- /src/it/hotfix-start-2-it/gitignorefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-start-2-it/gitignorefile -------------------------------------------------------------------------------- /src/it/hotfix-start-2-it/init.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-start-2-it/init.bsh -------------------------------------------------------------------------------- /src/it/hotfix-start-2-it/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-start-2-it/invoker.properties -------------------------------------------------------------------------------- /src/it/hotfix-start-2-it/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-start-2-it/pom.xml -------------------------------------------------------------------------------- /src/it/hotfix-start-2-it/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-start-2-it/verify.bsh -------------------------------------------------------------------------------- /src/it/hotfix-start-it/expected-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-start-it/expected-pom.xml -------------------------------------------------------------------------------- /src/it/hotfix-start-it/gitignorefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-start-it/gitignorefile -------------------------------------------------------------------------------- /src/it/hotfix-start-it/init.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-start-it/init.bsh -------------------------------------------------------------------------------- /src/it/hotfix-start-it/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-start-it/invoker.properties -------------------------------------------------------------------------------- /src/it/hotfix-start-it/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-start-it/pom.xml -------------------------------------------------------------------------------- /src/it/hotfix-start-it/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/hotfix-start-it/verify.bsh -------------------------------------------------------------------------------- /src/it/init-giflow-config-it/expected-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/init-giflow-config-it/expected-config -------------------------------------------------------------------------------- /src/it/init-giflow-config-it/gitignorefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/init-giflow-config-it/gitignorefile -------------------------------------------------------------------------------- /src/it/init-giflow-config-it/init.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/init-giflow-config-it/init.bsh -------------------------------------------------------------------------------- /src/it/init-giflow-config-it/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/init-giflow-config-it/invoker.properties -------------------------------------------------------------------------------- /src/it/init-giflow-config-it/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/init-giflow-config-it/pom.xml -------------------------------------------------------------------------------- /src/it/init-giflow-config-it/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/init-giflow-config-it/verify.bsh -------------------------------------------------------------------------------- /src/it/release-finish-2-it/expected-development-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-2-it/expected-development-pom.xml -------------------------------------------------------------------------------- /src/it/release-finish-2-it/expected-production-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-2-it/expected-production-pom.xml -------------------------------------------------------------------------------- /src/it/release-finish-2-it/gitignorefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-2-it/gitignorefile -------------------------------------------------------------------------------- /src/it/release-finish-2-it/init.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-2-it/init.bsh -------------------------------------------------------------------------------- /src/it/release-finish-2-it/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-2-it/invoker.properties -------------------------------------------------------------------------------- /src/it/release-finish-2-it/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-2-it/pom.xml -------------------------------------------------------------------------------- /src/it/release-finish-2-it/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-2-it/verify.bsh -------------------------------------------------------------------------------- /src/it/release-finish-3-it/expected-development-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-3-it/expected-development-pom.xml -------------------------------------------------------------------------------- /src/it/release-finish-3-it/expected-production-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-3-it/expected-production-pom.xml -------------------------------------------------------------------------------- /src/it/release-finish-3-it/gitignorefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-3-it/gitignorefile -------------------------------------------------------------------------------- /src/it/release-finish-3-it/init.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-3-it/init.bsh -------------------------------------------------------------------------------- /src/it/release-finish-3-it/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-3-it/invoker.properties -------------------------------------------------------------------------------- /src/it/release-finish-3-it/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-3-it/pom.xml -------------------------------------------------------------------------------- /src/it/release-finish-3-it/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-3-it/verify.bsh -------------------------------------------------------------------------------- /src/it/release-finish-4-it/expected-development-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-4-it/expected-development-pom.xml -------------------------------------------------------------------------------- /src/it/release-finish-4-it/expected-production-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-4-it/expected-production-pom.xml -------------------------------------------------------------------------------- /src/it/release-finish-4-it/gitignorefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-4-it/gitignorefile -------------------------------------------------------------------------------- /src/it/release-finish-4-it/init.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-4-it/init.bsh -------------------------------------------------------------------------------- /src/it/release-finish-4-it/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-4-it/invoker.properties -------------------------------------------------------------------------------- /src/it/release-finish-4-it/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-4-it/pom.xml -------------------------------------------------------------------------------- /src/it/release-finish-4-it/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-4-it/verify.bsh -------------------------------------------------------------------------------- /src/it/release-finish-5-it/expected-development-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-5-it/expected-development-pom.xml -------------------------------------------------------------------------------- /src/it/release-finish-5-it/expected-production-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-5-it/expected-production-pom.xml -------------------------------------------------------------------------------- /src/it/release-finish-5-it/gitignorefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-5-it/gitignorefile -------------------------------------------------------------------------------- /src/it/release-finish-5-it/init.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-5-it/init.bsh -------------------------------------------------------------------------------- /src/it/release-finish-5-it/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-5-it/invoker.properties -------------------------------------------------------------------------------- /src/it/release-finish-5-it/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-5-it/pom.xml -------------------------------------------------------------------------------- /src/it/release-finish-5-it/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-5-it/verify.bsh -------------------------------------------------------------------------------- /src/it/release-finish-6-it/expected-development-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-6-it/expected-development-pom.xml -------------------------------------------------------------------------------- /src/it/release-finish-6-it/expected-production-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-6-it/expected-production-pom.xml -------------------------------------------------------------------------------- /src/it/release-finish-6-it/gitignorefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-6-it/gitignorefile -------------------------------------------------------------------------------- /src/it/release-finish-6-it/init.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-6-it/init.bsh -------------------------------------------------------------------------------- /src/it/release-finish-6-it/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-6-it/invoker.properties -------------------------------------------------------------------------------- /src/it/release-finish-6-it/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-6-it/pom.xml -------------------------------------------------------------------------------- /src/it/release-finish-6-it/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-6-it/verify.bsh -------------------------------------------------------------------------------- /src/it/release-finish-7-it/expected-development-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-7-it/expected-development-pom.xml -------------------------------------------------------------------------------- /src/it/release-finish-7-it/expected-production-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-7-it/expected-production-pom.xml -------------------------------------------------------------------------------- /src/it/release-finish-7-it/gitignorefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-7-it/gitignorefile -------------------------------------------------------------------------------- /src/it/release-finish-7-it/init.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-7-it/init.bsh -------------------------------------------------------------------------------- /src/it/release-finish-7-it/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-7-it/invoker.properties -------------------------------------------------------------------------------- /src/it/release-finish-7-it/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-7-it/pom.xml -------------------------------------------------------------------------------- /src/it/release-finish-7-it/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-7-it/verify.bsh -------------------------------------------------------------------------------- /src/it/release-finish-8-it/expected-development-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-8-it/expected-development-pom.xml -------------------------------------------------------------------------------- /src/it/release-finish-8-it/expected-production-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-8-it/expected-production-pom.xml -------------------------------------------------------------------------------- /src/it/release-finish-8-it/gitignorefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-8-it/gitignorefile -------------------------------------------------------------------------------- /src/it/release-finish-8-it/init.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-8-it/init.bsh -------------------------------------------------------------------------------- /src/it/release-finish-8-it/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-8-it/invoker.properties -------------------------------------------------------------------------------- /src/it/release-finish-8-it/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-8-it/pom.xml -------------------------------------------------------------------------------- /src/it/release-finish-8-it/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-8-it/verify.bsh -------------------------------------------------------------------------------- /src/it/release-finish-it/expected-development-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-it/expected-development-pom.xml -------------------------------------------------------------------------------- /src/it/release-finish-it/expected-production-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-it/expected-production-pom.xml -------------------------------------------------------------------------------- /src/it/release-finish-it/gitignorefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-it/gitignorefile -------------------------------------------------------------------------------- /src/it/release-finish-it/init.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-it/init.bsh -------------------------------------------------------------------------------- /src/it/release-finish-it/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-it/invoker.properties -------------------------------------------------------------------------------- /src/it/release-finish-it/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-it/pom.xml -------------------------------------------------------------------------------- /src/it/release-finish-it/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-finish-it/verify.bsh -------------------------------------------------------------------------------- /src/it/release-it/expected-development-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-it/expected-development-pom.xml -------------------------------------------------------------------------------- /src/it/release-it/expected-production-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-it/expected-production-pom.xml -------------------------------------------------------------------------------- /src/it/release-it/gitignorefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-it/gitignorefile -------------------------------------------------------------------------------- /src/it/release-it/init.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-it/init.bsh -------------------------------------------------------------------------------- /src/it/release-it/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-it/invoker.properties -------------------------------------------------------------------------------- /src/it/release-it/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-it/pom.xml -------------------------------------------------------------------------------- /src/it/release-it/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-it/verify.bsh -------------------------------------------------------------------------------- /src/it/release-start-2-it/expected-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-2-it/expected-pom.xml -------------------------------------------------------------------------------- /src/it/release-start-2-it/gitignorefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-2-it/gitignorefile -------------------------------------------------------------------------------- /src/it/release-start-2-it/init.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-2-it/init.bsh -------------------------------------------------------------------------------- /src/it/release-start-2-it/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-2-it/invoker.properties -------------------------------------------------------------------------------- /src/it/release-start-2-it/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-2-it/pom.xml -------------------------------------------------------------------------------- /src/it/release-start-2-it/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-2-it/verify.bsh -------------------------------------------------------------------------------- /src/it/release-start-3-it/expected-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-3-it/expected-pom.xml -------------------------------------------------------------------------------- /src/it/release-start-3-it/gitignorefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-3-it/gitignorefile -------------------------------------------------------------------------------- /src/it/release-start-3-it/init.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-3-it/init.bsh -------------------------------------------------------------------------------- /src/it/release-start-3-it/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-3-it/invoker.properties -------------------------------------------------------------------------------- /src/it/release-start-3-it/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-3-it/pom.xml -------------------------------------------------------------------------------- /src/it/release-start-3-it/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-3-it/verify.bsh -------------------------------------------------------------------------------- /src/it/release-start-finish-2-it/expectations/develop/expected-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-finish-2-it/expectations/develop/expected-pom.xml -------------------------------------------------------------------------------- /src/it/release-start-finish-2-it/expectations/develop/expected-test.txt: -------------------------------------------------------------------------------- 1 | test 2 | next commit 3 | -------------------------------------------------------------------------------- /src/it/release-start-finish-2-it/expectations/develop/withAgregatorAsParent/expected-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-finish-2-it/expectations/develop/withAgregatorAsParent/expected-pom.xml -------------------------------------------------------------------------------- /src/it/release-start-finish-2-it/expectations/develop/withoutAgregatorAsParent/expected-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-finish-2-it/expectations/develop/withoutAgregatorAsParent/expected-pom.xml -------------------------------------------------------------------------------- /src/it/release-start-finish-2-it/expectations/master/expected-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-finish-2-it/expectations/master/expected-pom.xml -------------------------------------------------------------------------------- /src/it/release-start-finish-2-it/expectations/master/expected-test.txt: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /src/it/release-start-finish-2-it/expectations/master/withAgregatorAsParent/expected-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-finish-2-it/expectations/master/withAgregatorAsParent/expected-pom.xml -------------------------------------------------------------------------------- /src/it/release-start-finish-2-it/expectations/master/withoutAgregatorAsParent/expected-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-finish-2-it/expectations/master/withoutAgregatorAsParent/expected-pom.xml -------------------------------------------------------------------------------- /src/it/release-start-finish-2-it/gitignorefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-finish-2-it/gitignorefile -------------------------------------------------------------------------------- /src/it/release-start-finish-2-it/init.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-finish-2-it/init.bsh -------------------------------------------------------------------------------- /src/it/release-start-finish-2-it/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-finish-2-it/invoker.properties -------------------------------------------------------------------------------- /src/it/release-start-finish-2-it/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-finish-2-it/pom.xml -------------------------------------------------------------------------------- /src/it/release-start-finish-2-it/test.txt: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /src/it/release-start-finish-2-it/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-finish-2-it/verify.bsh -------------------------------------------------------------------------------- /src/it/release-start-finish-2-it/withAgregatorAsParent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-finish-2-it/withAgregatorAsParent/pom.xml -------------------------------------------------------------------------------- /src/it/release-start-finish-2-it/withoutAgregatorAsParent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-finish-2-it/withoutAgregatorAsParent/pom.xml -------------------------------------------------------------------------------- /src/it/release-start-finish-it/expected-development-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-finish-it/expected-development-pom.xml -------------------------------------------------------------------------------- /src/it/release-start-finish-it/expected-development-test.txt: -------------------------------------------------------------------------------- 1 | test 2 | next commit 3 | -------------------------------------------------------------------------------- /src/it/release-start-finish-it/expected-production-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-finish-it/expected-production-pom.xml -------------------------------------------------------------------------------- /src/it/release-start-finish-it/expected-production-test.txt: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /src/it/release-start-finish-it/gitignorefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-finish-it/gitignorefile -------------------------------------------------------------------------------- /src/it/release-start-finish-it/init.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-finish-it/init.bsh -------------------------------------------------------------------------------- /src/it/release-start-finish-it/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-finish-it/invoker.properties -------------------------------------------------------------------------------- /src/it/release-start-finish-it/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-finish-it/pom.xml -------------------------------------------------------------------------------- /src/it/release-start-finish-it/test.txt: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /src/it/release-start-finish-it/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-finish-it/verify.bsh -------------------------------------------------------------------------------- /src/it/release-start-it-projects-reloading/child1/child1-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-it-projects-reloading/child1/child1-pom.xml -------------------------------------------------------------------------------- /src/it/release-start-it-projects-reloading/expected-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-it-projects-reloading/expected-pom.xml -------------------------------------------------------------------------------- /src/it/release-start-it-projects-reloading/gitignorefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-it-projects-reloading/gitignorefile -------------------------------------------------------------------------------- /src/it/release-start-it-projects-reloading/init.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-it-projects-reloading/init.bsh -------------------------------------------------------------------------------- /src/it/release-start-it-projects-reloading/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-it-projects-reloading/invoker.properties -------------------------------------------------------------------------------- /src/it/release-start-it-projects-reloading/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-it-projects-reloading/pom.xml -------------------------------------------------------------------------------- /src/it/release-start-it-projects-reloading/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-it-projects-reloading/verify.bsh -------------------------------------------------------------------------------- /src/it/release-start-it-snapshot-dependency-fail/gitignorefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-it-snapshot-dependency-fail/gitignorefile -------------------------------------------------------------------------------- /src/it/release-start-it-snapshot-dependency-fail/init.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-it-snapshot-dependency-fail/init.bsh -------------------------------------------------------------------------------- /src/it/release-start-it-snapshot-dependency-fail/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-it-snapshot-dependency-fail/invoker.properties -------------------------------------------------------------------------------- /src/it/release-start-it-snapshot-dependency-fail/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-it-snapshot-dependency-fail/pom.xml -------------------------------------------------------------------------------- /src/it/release-start-it-snapshot-dependency-fail/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-it-snapshot-dependency-fail/verify.groovy -------------------------------------------------------------------------------- /src/it/release-start-it-snapshot-parent-fail/dummy-parent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-it-snapshot-parent-fail/dummy-parent/pom.xml -------------------------------------------------------------------------------- /src/it/release-start-it-snapshot-parent-fail/gitignorefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-it-snapshot-parent-fail/gitignorefile -------------------------------------------------------------------------------- /src/it/release-start-it-snapshot-parent-fail/init.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-it-snapshot-parent-fail/init.bsh -------------------------------------------------------------------------------- /src/it/release-start-it-snapshot-parent-fail/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-it-snapshot-parent-fail/invoker.properties -------------------------------------------------------------------------------- /src/it/release-start-it-snapshot-parent-fail/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-it-snapshot-parent-fail/pom.xml -------------------------------------------------------------------------------- /src/it/release-start-it-snapshot-parent-fail/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-it-snapshot-parent-fail/verify.groovy -------------------------------------------------------------------------------- /src/it/release-start-it-version-policy/expected-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-it-version-policy/expected-pom.xml -------------------------------------------------------------------------------- /src/it/release-start-it-version-policy/gitignorefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-it-version-policy/gitignorefile -------------------------------------------------------------------------------- /src/it/release-start-it-version-policy/init.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-it-version-policy/init.bsh -------------------------------------------------------------------------------- /src/it/release-start-it-version-policy/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-it-version-policy/invoker.properties -------------------------------------------------------------------------------- /src/it/release-start-it-version-policy/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-it-version-policy/pom.xml -------------------------------------------------------------------------------- /src/it/release-start-it-version-policy/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-it-version-policy/verify.bsh -------------------------------------------------------------------------------- /src/it/release-start-it/expected-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-it/expected-pom.xml -------------------------------------------------------------------------------- /src/it/release-start-it/gitignorefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-it/gitignorefile -------------------------------------------------------------------------------- /src/it/release-start-it/init.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-it/init.bsh -------------------------------------------------------------------------------- /src/it/release-start-it/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-it/invoker.properties -------------------------------------------------------------------------------- /src/it/release-start-it/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-it/pom.xml -------------------------------------------------------------------------------- /src/it/release-start-it/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/release-start-it/verify.bsh -------------------------------------------------------------------------------- /src/it/support-start-2-it/expected-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/support-start-2-it/expected-pom.xml -------------------------------------------------------------------------------- /src/it/support-start-2-it/gitignorefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/support-start-2-it/gitignorefile -------------------------------------------------------------------------------- /src/it/support-start-2-it/init.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/support-start-2-it/init.bsh -------------------------------------------------------------------------------- /src/it/support-start-2-it/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/support-start-2-it/invoker.properties -------------------------------------------------------------------------------- /src/it/support-start-2-it/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/support-start-2-it/pom.xml -------------------------------------------------------------------------------- /src/it/support-start-2-it/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/support-start-2-it/verify.bsh -------------------------------------------------------------------------------- /src/it/support-start-3-it/expected-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/support-start-3-it/expected-pom.xml -------------------------------------------------------------------------------- /src/it/support-start-3-it/gitignorefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/support-start-3-it/gitignorefile -------------------------------------------------------------------------------- /src/it/support-start-3-it/init.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/support-start-3-it/init.bsh -------------------------------------------------------------------------------- /src/it/support-start-3-it/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/support-start-3-it/invoker.properties -------------------------------------------------------------------------------- /src/it/support-start-3-it/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/support-start-3-it/pom.xml -------------------------------------------------------------------------------- /src/it/support-start-3-it/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/support-start-3-it/verify.bsh -------------------------------------------------------------------------------- /src/it/support-start-it/expected-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/support-start-it/expected-pom.xml -------------------------------------------------------------------------------- /src/it/support-start-it/gitignorefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/support-start-it/gitignorefile -------------------------------------------------------------------------------- /src/it/support-start-it/init.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/support-start-it/init.bsh -------------------------------------------------------------------------------- /src/it/support-start-it/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/support-start-it/invoker.properties -------------------------------------------------------------------------------- /src/it/support-start-it/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/support-start-it/pom.xml -------------------------------------------------------------------------------- /src/it/support-start-it/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/support-start-it/verify.bsh -------------------------------------------------------------------------------- /src/it/version-update-it/expected-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/version-update-it/expected-pom.xml -------------------------------------------------------------------------------- /src/it/version-update-it/gitignorefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/version-update-it/gitignorefile -------------------------------------------------------------------------------- /src/it/version-update-it/init.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/version-update-it/init.bsh -------------------------------------------------------------------------------- /src/it/version-update-it/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/version-update-it/invoker.properties -------------------------------------------------------------------------------- /src/it/version-update-it/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/version-update-it/pom.xml -------------------------------------------------------------------------------- /src/it/version-update-it/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/it/version-update-it/verify.bsh -------------------------------------------------------------------------------- /src/main/java/com/amashchenko/maven/plugin/gitflow/AbstractGitFlowMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/main/java/com/amashchenko/maven/plugin/gitflow/AbstractGitFlowMojo.java -------------------------------------------------------------------------------- /src/main/java/com/amashchenko/maven/plugin/gitflow/CommitMessages.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/main/java/com/amashchenko/maven/plugin/gitflow/CommitMessages.java -------------------------------------------------------------------------------- /src/main/java/com/amashchenko/maven/plugin/gitflow/GitFlowConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/main/java/com/amashchenko/maven/plugin/gitflow/GitFlowConfig.java -------------------------------------------------------------------------------- /src/main/java/com/amashchenko/maven/plugin/gitflow/GitFlowFeatureFinishMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/main/java/com/amashchenko/maven/plugin/gitflow/GitFlowFeatureFinishMojo.java -------------------------------------------------------------------------------- /src/main/java/com/amashchenko/maven/plugin/gitflow/GitFlowFeatureStartMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/main/java/com/amashchenko/maven/plugin/gitflow/GitFlowFeatureStartMojo.java -------------------------------------------------------------------------------- /src/main/java/com/amashchenko/maven/plugin/gitflow/GitFlowHotfixFinishMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/main/java/com/amashchenko/maven/plugin/gitflow/GitFlowHotfixFinishMojo.java -------------------------------------------------------------------------------- /src/main/java/com/amashchenko/maven/plugin/gitflow/GitFlowHotfixStartMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/main/java/com/amashchenko/maven/plugin/gitflow/GitFlowHotfixStartMojo.java -------------------------------------------------------------------------------- /src/main/java/com/amashchenko/maven/plugin/gitflow/GitFlowReleaseFinishMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/main/java/com/amashchenko/maven/plugin/gitflow/GitFlowReleaseFinishMojo.java -------------------------------------------------------------------------------- /src/main/java/com/amashchenko/maven/plugin/gitflow/GitFlowReleaseMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/main/java/com/amashchenko/maven/plugin/gitflow/GitFlowReleaseMojo.java -------------------------------------------------------------------------------- /src/main/java/com/amashchenko/maven/plugin/gitflow/GitFlowReleaseStartMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/main/java/com/amashchenko/maven/plugin/gitflow/GitFlowReleaseStartMojo.java -------------------------------------------------------------------------------- /src/main/java/com/amashchenko/maven/plugin/gitflow/GitFlowSupportStartMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/main/java/com/amashchenko/maven/plugin/gitflow/GitFlowSupportStartMojo.java -------------------------------------------------------------------------------- /src/main/java/com/amashchenko/maven/plugin/gitflow/GitFlowVersionInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/main/java/com/amashchenko/maven/plugin/gitflow/GitFlowVersionInfo.java -------------------------------------------------------------------------------- /src/main/java/com/amashchenko/maven/plugin/gitflow/GitFlowVersionUpdateMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/main/java/com/amashchenko/maven/plugin/gitflow/GitFlowVersionUpdateMojo.java -------------------------------------------------------------------------------- /src/main/java/com/amashchenko/maven/plugin/gitflow/StringBufferStreamConsumer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/main/java/com/amashchenko/maven/plugin/gitflow/StringBufferStreamConsumer.java -------------------------------------------------------------------------------- /src/main/java/com/amashchenko/maven/plugin/gitflow/prompter/ConsolePrompter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/main/java/com/amashchenko/maven/plugin/gitflow/prompter/ConsolePrompter.java -------------------------------------------------------------------------------- /src/main/java/com/amashchenko/maven/plugin/gitflow/prompter/GitFlowPrompter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/main/java/com/amashchenko/maven/plugin/gitflow/prompter/GitFlowPrompter.java -------------------------------------------------------------------------------- /src/main/java/com/amashchenko/maven/plugin/gitflow/prompter/PromptValidation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/main/java/com/amashchenko/maven/plugin/gitflow/prompter/PromptValidation.java -------------------------------------------------------------------------------- /src/main/resources/META-INF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/main/resources/META-INF/LICENSE -------------------------------------------------------------------------------- /src/site/markdown/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/site/markdown/index.md -------------------------------------------------------------------------------- /src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/site/site.xml -------------------------------------------------------------------------------- /src/test/java/com/amashchenko/maven/plugin/gitflow/FeatureVersionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/test/java/com/amashchenko/maven/plugin/gitflow/FeatureVersionTest.java -------------------------------------------------------------------------------- /src/test/java/com/amashchenko/maven/plugin/gitflow/GitFlowVersionInfoTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/test/java/com/amashchenko/maven/plugin/gitflow/GitFlowVersionInfoTest.java -------------------------------------------------------------------------------- /src/test/java/com/amashchenko/maven/plugin/gitflow/NextHotfixVersionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/test/java/com/amashchenko/maven/plugin/gitflow/NextHotfixVersionTest.java -------------------------------------------------------------------------------- /src/test/java/com/amashchenko/maven/plugin/gitflow/NextSnapshotVersionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/test/java/com/amashchenko/maven/plugin/gitflow/NextSnapshotVersionTest.java -------------------------------------------------------------------------------- /src/test/java/com/amashchenko/maven/plugin/gitflow/ValidateConfigurationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleksandr-m/gitflow-maven-plugin/HEAD/src/test/java/com/amashchenko/maven/plugin/gitflow/ValidateConfigurationTest.java --------------------------------------------------------------------------------