Advertisement
MatthijsFontys

Pom backup

Dec 25th, 2019
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 4.38 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <project xmlns="http://maven.apache.org/POM/4.0.0" 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.   <groupId>nl.fhict.i400433</groupId>
  8.   <artifactId>bigidea</artifactId>
  9.     <packaging>pom</packaging>
  10.     <version>1.0-SNAPSHOT</version>
  11.     <modules>
  12.         <module>restservice</module>
  13.       <module>client</module>
  14.         <module>websocketservice</module>
  15.         <module>shared</module>
  16.     </modules>
  17.  
  18.     <name>bigidea</name>
  19.  
  20.  
  21.   <properties>
  22.     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  23.     <maven.compiler.source>11</maven.compiler.source>
  24.     <maven.compiler.target>11</maven.compiler.target>
  25.     <openfxVersion>12</openfxVersion>
  26.  
  27.     <!--Sonar -->
  28. <!--    <sonar.core.coveragePlugin>jacoco</sonar.core.coveragePlugin>-->
  29. <!--    <sonar.jacoco.reportPath>target/jacoco.exec</sonar.jacoco.reportPath>-->
  30. <!--    <sonar.language>java</sonar.language>-->
  31. <!--    <sonar.junit.reportsPath>/build/test-reports</sonar.junit.reportsPath>-->
  32.  
  33.  
  34.   </properties>
  35.  
  36.  
  37.   <dependencies>
  38.   <!-- Junit testing framework -->
  39.     <dependency>
  40.       <groupId>org.junit.jupiter</groupId>
  41.       <artifactId>junit-jupiter-engine</artifactId>
  42.       <version>5.3.1</version>
  43.       <scope>test</scope>
  44.     </dependency>
  45.  
  46.     <dependency>
  47.       <groupId>org.junit.jupiter</groupId>
  48.       <artifactId>junit-jupiter-api</artifactId>
  49.       <version>5.3.1</version>
  50.       <scope>test</scope>
  51.     </dependency>
  52.  
  53.     <dependency>
  54.       <groupId>org.junit.jupiter</groupId>
  55.       <artifactId>junit-jupiter-params</artifactId>
  56.       <version>5.3.1</version>
  57.       <scope>test</scope>
  58.     </dependency>
  59.  
  60.     <!-- end Junit -->
  61.  
  62.   </dependencies>
  63.  
  64.  
  65.   <build>
  66.     <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  67.       <plugins>
  68.  
  69.         <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
  70.         <plugin>
  71.           <artifactId>maven-clean-plugin</artifactId>
  72.           <version>3.1.0</version>
  73.         </plugin>
  74.         <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
  75.         <plugin>
  76.           <artifactId>maven-resources-plugin</artifactId>
  77.           <version>3.0.2</version>
  78.         </plugin>
  79.         <plugin>
  80.           <groupId>org.apache.maven.plugins</groupId>
  81.           <artifactId>maven-compiler-plugin</artifactId>
  82.           <version>3.8.0</version>
  83.           <configuration>
  84.             <release>11</release>
  85.           </configuration>
  86.         </plugin>
  87.         <plugin>
  88.           <artifactId>maven-jar-plugin</artifactId>
  89.           <version>3.0.2</version>
  90.         </plugin>
  91.         <plugin>
  92.           <artifactId>maven-install-plugin</artifactId>
  93.           <version>2.5.2</version>
  94.         </plugin>
  95.         <plugin>
  96.           <artifactId>maven-deploy-plugin</artifactId>
  97.           <version>2.8.2</version>
  98.         </plugin>
  99.         <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
  100.         <plugin>
  101.           <artifactId>maven-site-plugin</artifactId>
  102.           <version>3.7.1</version>
  103.         </plugin>
  104.         <plugin>
  105.           <artifactId>maven-project-info-reports-plugin</artifactId>
  106.           <version>3.0.0</version>
  107.         </plugin>
  108.  
  109.         <plugin>
  110.           <groupId>org.apache.maven.plugins</groupId>
  111.           <artifactId>maven-surefire-plugin</artifactId>
  112.           <version>3.0.0-M4</version>
  113.         </plugin>
  114.  
  115.         <!-- sonar -->
  116.         <plugin>
  117.           <groupId>org.sonarsource.scanner.maven</groupId>
  118.           <artifactId>sonar-maven-plugin</artifactId>
  119.           <version>3.4.0.905</version>
  120.         </plugin>
  121.  
  122.  
  123.           <plugin>
  124.             <groupId>org.jacoco</groupId>
  125.             <artifactId>jacoco-maven-plugin</artifactId>
  126.             <version>0.8.6-SNAPSHOT</version>
  127.             <executions>
  128.               <execution>
  129.                 <goals>
  130.                   <goal>prepare-agent</goal>
  131.                 </goals>
  132.               </execution>
  133.             </executions>
  134.             <configuration>
  135.               <destFile>${sonar.jacoco.reportPath}</destFile>
  136.             </configuration>
  137.         </plugin>
  138.  
  139.       </plugins>
  140.     </pluginManagement>
  141.   </build>
  142. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement