Advertisement
andersonalmada2

Untitled

Nov 18th, 2022
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.79 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  2.     <modelVersion>4.0.0</modelVersion>
  3.     <groupId>br.ufc.almada</groupId>
  4.     <artifactId>aula</artifactId>
  5.     <version>0.0.1-SNAPSHOT</version>
  6.  
  7.     <dependencies>
  8.         <dependency>
  9.             <groupId>com.google.code.gson</groupId>
  10.             <artifactId>gson</artifactId>
  11.             <version>2.10</version>
  12.         </dependency>
  13.     </dependencies>
  14.  
  15.     <build>
  16.         <plugins>
  17.             <plugin>
  18.                 <groupId>org.apache.maven.plugins</groupId>
  19.                 <artifactId>maven-compiler-plugin</artifactId>
  20.                 <version>3.8.0</version>
  21.                 <configuration>
  22.                     <release>11</release>
  23.                 </configuration>
  24.             </plugin>
  25.         </plugins>
  26.     </build>
  27. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement