Guest User

Untitled

a guest
Feb 20th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. mvn install:install-file -Dfile=c:whereYoureFileIs-{version}.jar -DgroupId=com.companyName.projectName
  2. -DartifactId=projectName -Dversion={Your version} -Dpackaging=jar
  3.  
  4. <dependency>
  5. <groupId>groupId of project2</groupId>
  6. <artifactId>artifactId of project2</artifactId>
  7. <version>version of project2</version>
  8. </dependency>
  9.  
  10. <dependency>
  11. <groupId>com.p1</groupId>
  12. <artifactId>p1</artifactId>
  13. <version>1.0-SNAPSHOT</version>
  14. <scope>compile</scope>
  15. </dependency>
Add Comment
Please, Sign In to add comment