Advertisement
Guest User

Untitled

a guest
Jan 21st, 2020
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.80 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3.     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4.     <modelVersion>4.0.0</modelVersion>
  5.     <groupId>it.mira</groupId>
  6.     <artifactId>Wardrobe</artifactId>
  7.     <version>0.0.1-SNAPSHOT</version>
  8.     <build>
  9.         <plugins>
  10.             <plugin>
  11.                 <artifactId>maven-compiler-plugin</artifactId>
  12.                 <version>3.8.0</version>
  13.                 <configuration>
  14.                     <source>1.8</source>
  15.                     <target>1.8</target>
  16.                 </configuration>
  17.             </plugin>
  18.         </plugins>
  19.     </build>
  20.     <dependencies>
  21.         <dependency>
  22.             <groupId>org.projectlombok</groupId>
  23.             <artifactId>lombok</artifactId>
  24.             <version>1.16.16</version>
  25.             <scope>provided</scope>
  26.         </dependency>
  27.     </dependencies>
  28. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement