Advertisement
hakemon

example_pom.xml

Dec 12th, 2015
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.56 KB | None | 0 0
  1. <project>
  2.   <dependencies>
  3.     <dependency>
  4.       <groupId>group-a</groupId>
  5.       <artifactId>artifact-a</artifactId>
  6.       <version>1.0</version>
  7.       <exclusions>
  8.         <exclusion>
  9.           <groupId>group-c</groupId>
  10.           <artifactId>excluded-artifact</artifactId>
  11.         </exclusion>
  12.       </exclusions>
  13.     </dependency>
  14.     <dependency>
  15.       <groupId>group-a</groupId>
  16.       <artifactId>artifact-b</artifactId>
  17.       <version>1.0</version>
  18.       <type>bar</type>
  19.       <scope>runtime</scope>
  20.     </dependency>
  21.   </dependencies>
  22. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement