Goddino

pom.xml

Sep 15th, 2020
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.75 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>com.pellegrini.code.newAddressBook</groupId>
  4.   <artifactId>NewAddressBook</artifactId>
  5.   <version>0.0.1-SNAPSHOT</version>
  6.   <properties>
  7.         <java-version>1.8</java-version>
  8.         <project.encode>UTF-8</project.encode>
  9.         <project.build.sourceEncoding>${project.encode}</project.build.sourceEncoding>
  10.         <project.reporting.outputEncoding>${project.encode}</project.reporting.outputEncoding>
  11.     </properties>
  12.     <dependencies>
  13.         <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-csv -->
  14.         <dependency>
  15.             <groupId>org.apache.commons</groupId>
  16.             <artifactId>commons-csv</artifactId>
  17.             <version>1.8</version>
  18.         </dependency>
  19.         <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
  20.         <dependency>
  21.             <groupId>org.apache.commons</groupId>
  22.             <artifactId>commons-lang3</artifactId>
  23.             <version>3.11</version>
  24.         </dependency>
  25.         <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
  26.         <dependency>
  27.             <groupId>commons-io</groupId>
  28.             <artifactId>commons-io</artifactId>
  29.             <version>2.7</version>
  30.         </dependency>
  31.         <dependency>
  32.             <groupId>junit</groupId>
  33.             <artifactId>junit</artifactId>
  34.             <version>4.12</version>
  35.             <scope>test</scope>
  36.         </dependency>
  37.         <dependency>
  38.             <groupId>org.assertj</groupId>
  39.             <artifactId>assertj-core</artifactId>
  40.             <version>1.7.1</version>
  41.             <scope>test</scope>
  42.         </dependency>
  43.         <dependency>
  44.             <groupId>org.mockito</groupId>
  45.             <artifactId>mockito-core</artifactId>
  46.             <version>1.10.19</version>
  47.             <scope>test</scope>
  48.         </dependency>
  49.         <!-- https://mvnrepository.com/artifact/org.powermock/powermock-api-mockito -->
  50.         <dependency>
  51.             <groupId>org.powermock</groupId>
  52.             <artifactId>powermock-api-mockito</artifactId>
  53.             <version>1.6.6</version>
  54.             <scope>test</scope>
  55.         </dependency>
  56.         <dependency>
  57.             <groupId>org.powermock</groupId>
  58.             <artifactId>powermock-module-junit4</artifactId>
  59.             <version>1.6.6</version>
  60.             <scope>test</scope>
  61.         </dependency>
  62.         <dependency>
  63.             <groupId>org.slf4j</groupId>
  64.             <artifactId>slf4j-simple</artifactId>
  65.             <version>1.7.13</version>
  66.             <scope>test</scope>
  67.         </dependency>
  68.         <dependency>
  69.             <groupId>com.google.code.bean-matchers</groupId>
  70.             <artifactId>bean-matchers</artifactId>
  71.             <version>0.10</version>
  72.             <scope>test</scope>
  73.         </dependency>
  74.         <dependency>
  75.             <groupId>javax</groupId>
  76.             <artifactId>javaee-api</artifactId>
  77.             <version>8.0</version>
  78.             <scope>provided</scope>
  79.         </dependency>
  80.         <dependency>
  81.             <groupId>jstl</groupId>
  82.             <artifactId>jstl</artifactId>
  83.             <version>1.2</version>
  84.         </dependency>
  85.         <dependency>
  86.             <groupId>org.jetbrains</groupId>
  87.             <artifactId>annotations</artifactId>
  88.             <version>RELEASE</version>
  89.             <scope>compile</scope>
  90.         </dependency>
  91.         <!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
  92.         <dependency>
  93.             <groupId>org.projectlombok</groupId>
  94.             <artifactId>lombok</artifactId>
  95.             <version>1.18.12</version>
  96.             <scope>provided</scope>
  97.         </dependency>
  98.     </dependencies>
  99.     <build>
  100.     <plugins>
  101.       <plugin>
  102.         <groupId>org.apache.maven.plugins</groupId>
  103.         <artifactId>maven-compiler-plugin</artifactId>
  104.         <version>3.8.1</version>
  105.         <configuration>
  106.             <verbose>true</verbose>
  107.             <fork>true</fork>
  108.             <encoding>${project.encode}</encoding>
  109.             <source>${java-version}</source>
  110.             <target>${java-version}</target>
  111.         </configuration>
  112.       </plugin>
  113.     </plugins>
  114.   </build>
  115.  </project>
Add Comment
Please, Sign In to add comment