Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.31 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2.  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3.   <modelVersion>4.0.0</modelVersion>
  4.  
  5.   <groupId>com.sirma.itt.javacourse</groupId>
  6.   <artifactId>Java-Course</artifactId>
  7.   <version>0.0.1-SNAPSHOT</version>
  8.   <packaging>pom</packaging>
  9.  
  10.   <name>Java-Course</name>
  11.   <url>http://maven.apache.org</url>
  12.  
  13.   <properties>
  14.     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15.   </properties>
  16.  
  17.     <build>
  18.         <sourceDirectory>src/main/java</sourceDirectory>
  19.         <testSourceDirectory>src/test/java</testSourceDirectory>
  20.     </build>
  21.    
  22.   <dependencies>
  23.     <dependency>
  24.       <groupId>junit</groupId>
  25.       <artifactId>junit</artifactId>
  26.       <version>[4,]</version>
  27.       <scope>test</scope>
  28.     </dependency>
  29.    
  30.     <dependency>
  31.     <groupId>org.mockito</groupId>
  32.     <artifactId>mockito-all</artifactId>
  33.     <version>1.9.5</version>
  34.     <scope>test</scope>
  35. </dependency>
  36.  
  37. <dependency>
  38.     <groupId>org.slf4j</groupId>
  39.     <artifactId>slf4j-api</artifactId>
  40.     <version>1.7.25</version>
  41. </dependency>
  42.   </dependencies>
  43.  
  44.   <modules>
  45.     <module>Introducing Java</module>
  46.     <module>Objects In Java</module>
  47.   </modules>
  48. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement