Advertisement
Guest User

Untitled

a guest
Mar 8th, 2018
782
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.29 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3.         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>org.bonnyfone.vectalign</groupId>
  8.     <artifactId>vectalign</artifactId>
  9.     <version>0.2</version>
  10.  
  11.     <dependencies>
  12.         <dependency>
  13.             <groupId>junit</groupId>
  14.             <artifactId>junit</artifactId>
  15.             <version>4.11</version>
  16.             <scope>test</scope>
  17.         </dependency>
  18.  
  19.         <dependency>
  20.             <groupId>commons-cli</groupId>
  21.             <artifactId>commons-cli</artifactId>
  22.             <version>1.3.1</version>
  23.         </dependency>
  24.  
  25.         <!-- SVGSalamander -->
  26.         <dependency>
  27.             <groupId>com.kitfox.svg</groupId>
  28.             <artifactId>svg-salamander</artifactId>
  29.             <version>1.0</version>
  30.         </dependency>
  31.  
  32.     </dependencies>
  33.  
  34.     <properties>
  35.         <maven.compiler.source>1.7</maven.compiler.source>
  36.         <maven.compiler.target>1.7</maven.compiler.target>
  37.     </properties>
  38.  
  39.     <build>
  40.         <plugins>
  41.             <plugin>
  42.                 <groupId>org.apache.maven.plugins</groupId>
  43.                 <artifactId>maven-assembly-plugin</artifactId>
  44.                 <configuration>
  45.                     <archive>
  46.                         <manifest>
  47.                             <mainClass>com.bonnyfone.vectalign.Main</mainClass>
  48.                         </manifest>
  49.                     </archive>
  50.                     <descriptorRefs>
  51.                         <descriptorRef>jar-with-dependencies</descriptorRef>
  52.                     </descriptorRefs>
  53.                 </configuration>
  54.                 <executions>
  55.                     <execution>
  56.                         <phase>package</phase>
  57.                         <goals>
  58.                             <goal>single</goal>
  59.                         </goals>
  60.                     </execution>
  61.                 </executions>
  62.             </plugin>
  63.  
  64.  
  65.  
  66. <plugin>
  67.     <groupId>org.pitest</groupId>
  68.     <artifactId>pitest-maven</artifactId>
  69.     <version>1.3.2</version>
  70.  </plugin>
  71.  
  72.  
  73.  
  74.         </plugins>
  75.     </build>
  76. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement