Advertisement
Guest User

Untitled

a guest
May 11th, 2016
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.07 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3.         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5.     <modelVersion>4.0.0</modelVersion>
  6.  
  7.     <dependencies>
  8.         <dependency>
  9.             <groupId>io.atomix</groupId>
  10.             <artifactId>atomix-all</artifactId>
  11.             <version>1.0.0-rc4</version>
  12.         </dependency>
  13.     </dependencies>
  14.  
  15.     <groupId>edu.oswego.cs.jsavlov</groupId>
  16.     <artifactId>csc445_group</artifactId>
  17.     <version>1.0-SNAPSHOT</version>
  18.     <build>
  19.         <plugins>
  20.             <plugin>
  21.                 <groupId>org.apache.maven.plugins</groupId>
  22.                 <artifactId>maven-compiler-plugin</artifactId>
  23.                 <configuration>
  24.                     <source>1.8</source>
  25.                     <target>1.8</target>
  26.                 </configuration>
  27.                 <version>3.5.1</version>
  28.             </plugin>
  29.         </plugins>
  30.     </build>
  31.  
  32. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement