-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpom.xml
87 lines (87 loc) · 2.41 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>net.charpi.test</groupId>
<artifactId>mutationTesting</artifactId>
<version>0.1.0-SNAPSHOT</version>
<packaging>erlang-std</packaging>
<name>mutation_testing</name>
<licenses>
<license>
<name>New BSD License</name>
<url>LICENSE.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>charpi</id>
<name>Nicolas Charpentier</name>
<email>[email protected]</email>
<url>http://charpi.net</url>
<roles>
<role>developer</role>
</roles>
<timezone>0</timezone>
</developer>
</developers>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/charpi/mutation_testing/issues</url>
</issueManagement>
<scm>
<connection>scm:git:[email protected]:charpi/mutation_testing.git</connection>
<url>scm:git:[email protected]:charpi/mutation_testing.git</url>
<developerConnection>scm:git:[email protected]:charpi/mutation_testing.git</developerConnection>
</scm>
<build>
<plugins>
<plugin>
<groupId>eu.lindenbaum</groupId>
<artifactId>maven-erlang-plugin</artifactId>
<version>2.2.0</version>
<extensions>true</extensions>
</plugin>
<plugin>
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<configuration>
<header>src/etc/header.txt</header>
<strictCheck>true</strictCheck>
<excludes>
<exclude>.gitignore</exclude>
<exclude>README.md</exclude>
<exclude>ebin/mutationTesting.app</exclude>
<exclude>ebin/mutationTesting.appup</exclude>
<exclude>test_priv/*</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
<description>Mutation testing framework for erlang</description>
<organization>
<name>charpi.net</name>
<url>http://charpi.net</url>
</organization>
<dependencies>
</dependencies>
<reporting>
<plugins>
<plugin>
<groupId>eu.lindenbaum</groupId>
<artifactId>maven-erlang-plugin</artifactId>
<version>2.2.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>2.12</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changes-plugin</artifactId>
<version>2.6</version>
</plugin>
</plugins>
</reporting>
</project>