Guest User

Child projects

a guest
Dec 19th, 2022
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.04 KB | None | 0 0
  1. <project>
  2.     <parent>
  3.         <groupId>groupId</groupId>
  4.         <artifactId>parent</artifactId>
  5.         <version>v1</version>
  6.         <relativePath />
  7.     </parent>
  8.     <artifactId>child-project-1</artifactId>
  9.     <name>Child Project 1</name>
  10.     <dependencies>
  11.         <dependency>
  12.             <groupId>org.glassfish.jersey.core</groupId>
  13.             <artifactId>jersey-server</artifactId>
  14.         </dependency>
  15.     </dependencies>
  16. </project>
  17.  
  18. <project>
  19.     <parent>
  20.         <groupId>groupId</groupId>
  21.         <artifactId>parent</artifactId>
  22.         <version>v1</version>
  23.         <relativePath />
  24.     </parent>
  25.     <artifactId>child-project-2</artifactId>
  26.     <name>Child Project 2</name>
  27.     <dependencies>
  28.         <dependency>
  29.             <groupId>org.glassfish.jersey.core</groupId>
  30.             <artifactId>jersey-common</artifactId>
  31.         </dependency>
  32.         <dependency>
  33.             <groupId>org.projectlombok</groupId>
  34.             <artifactId>lombok</artifactId>
  35.         </dependency>
  36.     </dependencies>
  37. </project>
Advertisement
Add Comment
Please, Sign In to add comment