Advertisement
andersonalmada2

Untitled

Oct 26th, 2022
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.08 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>br.ufc.almada</groupId>
  6.     <artifactId>xml</artifactId>
  7.     <version>0.0.1-SNAPSHOT</version>
  8.  
  9.     <dependencies>
  10.         <dependency>
  11.             <groupId>javax.xml.bind</groupId>
  12.             <artifactId>jaxb-api</artifactId>
  13.             <version>2.3.1</version>
  14.         </dependency>
  15.  
  16.         <dependency>
  17.             <groupId>javax.activation</groupId>
  18.             <artifactId>activation</artifactId>
  19.             <version>1.1</version>
  20.         </dependency>
  21.  
  22.         <dependency>
  23.             <groupId>org.glassfish.jaxb</groupId>
  24.             <artifactId>jaxb-runtime</artifactId>
  25.             <version>2.3.1</version>
  26.         </dependency>
  27.     </dependencies>
  28.  
  29.     <build>
  30.         <plugins>
  31.  
  32.             <plugin>
  33.                 <groupId>org.apache.maven.plugins</groupId>
  34.                 <artifactId>maven-compiler-plugin</artifactId>
  35.                 <version>3.8.0</version>
  36.                 <configuration>
  37.                     <release>11</release>  
  38.                 </configuration>
  39.             </plugin>
  40.         </plugins>
  41.     </build>
  42.  
  43. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement