Advertisement
techno-

Untitled

Nov 7th, 2024
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.66 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3.  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4.   <modelVersion>4.0.0</modelVersion>
  5.  
  6.   <groupId>vvs</groupId>
  7.   <artifactId>planets</artifactId>
  8.   <version>1.0</version>
  9.  
  10.   <name>planets</name>
  11.   <!-- FIXME change it to the project's website -->
  12.   <!--  <url>http://www.example.com</url>-->
  13.  
  14.   <properties>
  15.     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16.     <maven.compiler.release>17</maven.compiler.release>
  17.   </properties>
  18.  
  19.   <dependencyManagement>
  20.     <dependencies>
  21.       <dependency>
  22.         <groupId>org.junit</groupId>
  23.         <artifactId>junit-bom</artifactId>
  24.         <version>5.11.0</version>
  25.         <type>pom</type>
  26.         <scope>import</scope>
  27.       </dependency>
  28.     </dependencies>
  29.   </dependencyManagement>
  30.  
  31.   <dependencies>
  32.     <!-- Dependencias de JUnit -->
  33.     <dependency>
  34.       <groupId>org.junit.jupiter</groupId>
  35.       <artifactId>junit-jupiter-api</artifactId>
  36.       <scope>test</scope>
  37.     </dependency>
  38.     <dependency>
  39.       <groupId>org.junit.jupiter</groupId>
  40.       <artifactId>junit-jupiter-params</artifactId>
  41.       <scope>test</scope>
  42.     </dependency>
  43.  
  44.     <!-- Dependencias de JUnit Quickcheck -->
  45.     <dependency>
  46.       <groupId>com.pholser</groupId>
  47.       <artifactId>junit-quickcheck-core</artifactId>
  48.       <version>0.9.1</version> <!-- Cambia a la versión más reciente si es necesario -->
  49.       <scope>test</scope>
  50.     </dependency>
  51.     <dependency>
  52.       <groupId>com.pholser</groupId>
  53.       <artifactId>junit-quickcheck-generators</artifactId>
  54.       <version>0.9.1</version>
  55.       <scope>test</scope>
  56.     </dependency>
  57.     <dependency>
  58.       <groupId>com.pholser</groupId>
  59.       <artifactId>junit-quickcheck-guava</artifactId>
  60.       <version>0.9.1</version>
  61.       <scope>test</scope>
  62.     </dependency>
  63.   </dependencies>
  64.  
  65.   <build>
  66.     <pluginManagement>
  67.       <plugins>
  68.         <!-- clean lifecycle -->
  69.         <plugin>
  70.           <artifactId>maven-clean-plugin</artifactId>
  71.           <version>3.4.0</version>
  72.         </plugin>
  73.         <!-- default lifecycle, jar packaging -->
  74.         <plugin>
  75.           <artifactId>maven-resources-plugin</artifactId>
  76.           <version>3.3.1</version>
  77.         </plugin>
  78.         <plugin>
  79.           <artifactId>maven-compiler-plugin</artifactId>
  80.           <version>3.13.0</version>
  81.         </plugin>
  82.         <plugin>
  83.           <artifactId>maven-surefire-plugin</artifactId>
  84.           <version>3.3.0</version>
  85.         </plugin>
  86.         <plugin>
  87.           <artifactId>maven-jar-plugin</artifactId>
  88.           <version>3.4.2</version>
  89.           <configuration>
  90.             <archive>
  91.                 <manifest>
  92.                     <addClasspath>true</addClasspath>
  93.                     <mainClass>vvs.planets.Main</mainClass>
  94.                 </manifest>
  95.             </archive>
  96.           </configuration>
  97.         </plugin>
  98.         <plugin>
  99.           <artifactId>maven-install-plugin</artifactId>
  100.           <version>3.1.2</version>
  101.         </plugin>
  102.         <plugin>
  103.           <artifactId>maven-deploy-plugin</artifactId>
  104.           <version>3.1.2</version>
  105.         </plugin>
  106.         <!-- site lifecycle -->
  107.         <plugin>
  108.           <artifactId>maven-site-plugin</artifactId>
  109.           <version>3.12.1</version>
  110.         </plugin>
  111.         <plugin>
  112.           <artifactId>maven-project-info-reports-plugin</artifactId>
  113.           <version>3.6.1</version>
  114.         </plugin>
  115.       </plugins>
  116.     </pluginManagement>
  117.   </build>
  118. </project>
  119.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement