-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpom.xml
129 lines (116 loc) · 4.69 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<?xml version="1.0" encoding="UTF-8"?>
<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 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.trendyol.sonar.stryker.net</groupId>
<artifactId>sonar-stryker-net-plugin</artifactId>
<packaging>sonar-plugin</packaging>
<version>1.2.7</version>
<name>sonar-stryker-net-plugin</name>
<description>SonarQube plugin for Stryker.NET, a mutation testing framework for CSharp</description>
<inceptionYear>2021</inceptionYear>
<url>https://github.com/Trendyol/sonar-stryker-net-plugin</url>
<developers>
<developer>
<name>Mustafa Yumurtacı</name>
<email>[email protected]</email>
</developer>
</developers>
<organization>
<name>Trendyol Group</name>
<url>https://github.com/Trendyol</url>
</organization>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<slf4j.version>1.6.2</slf4j.version>
<commons.lang.version>2.6</commons.lang.version>
<gson.version>2.8.0</gson.version>
<junit.version>4.13.1</junit.version>
<lombok.version>1.18.20</lombok.version>
<commons.io.version>2.8.0</commons.io.version>
<joda.time.version>2.10.6</joda.time.version>
</properties>
<dependencies>
<!--Sonar api-->
<dependency>
<groupId>org.sonarsource.api.plugin</groupId>
<artifactId>sonar-plugin-api</artifactId>
<version>9.6.1.114</version>
<scope>provided</scope>
</dependency>
<dependency>
<!-- packaged with the plugin -->
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>${commons.lang.version}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${gson.version}</version>
</dependency>
<!-- logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<!-- unit tests -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<!-- lombok -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>${commons.io.version}</version>
</dependency>
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>${joda.time.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.sonarsource.sonar-packaging-maven-plugin</groupId>
<artifactId>sonar-packaging-maven-plugin</artifactId>
<version>1.18.0.372</version>
<extensions>true</extensions>
<configuration>
<finalName>sonar-stryker-net-plugin</finalName>
<pluginKey>sonar-stryker-net-plugin</pluginKey>
<pluginClass>com.trendyol.sonar.stryker.net.SonarStrykerNetPlugin</pluginClass>
<pluginName>Stryker.NET Mutation Analysis</pluginName>
<pluginDescription>Stryker.NET mutation analysis plugin for SonarQube</pluginDescription>
<basePlugin>csharp</basePlugin>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>native2ascii-maven-plugin</artifactId>
<version>1.0-beta-1</version>
<executions>
<execution>
<goals>
<goal>native2ascii</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>