Created
April 15, 2011 07:04
-
-
Save koraktor/921286 to your computer and use it in GitHub Desktop.
Using a Git submodule as Maven parent project
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
_ | |
\ | |
project | |
| | |
|--.git--... | |
| | |
|--parent | |
| | | |
| |--.git | |
| | | |
| |--src | |
| | | | |
| | |--main | |
| | | | | |
| | | |--java--... | |
| | | \--resources--... | |
| | | | |
| | \--test | |
| | | | |
| | |--java--... | |
| | \--resources--... | |
| | | |
| \--pom.xml | |
| | |
|--src | |
| | | |
| |--main | |
| | | | |
| | |--java-... | |
| | \--resources-... | |
| | | |
| \--test | |
| | | |
| |--java-... | |
| \--resources-... | |
| | |
\--pom.xml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<project ...> | |
... | |
<parent> | |
<groupId>com.example</groupId> | |
<artifactId>parent</artifactId> | |
<version>1.0.0</version> | |
<relativePath>parent</relativePath> | |
</parent> | |
... | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment