|
13 | 13 | <maven.compiler.target>17</maven.compiler.target>
|
14 | 14 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
15 | 15 | <junit.jupiter.version>5.7.2</junit.jupiter.version>
|
16 |
| - <intellij.coverage.agent.version>1.0.725</intellij.coverage.agent.version> |
| 16 | + <intellij.coverage.agent.version>1.0.746</intellij.coverage.agent.version> |
17 | 17 | <intellij.agent.options>${project.basedir}/.qodana/code-coverage/output.ic,true,true,true,false</intellij.agent.options>
|
18 | 18 | </properties>
|
19 | 19 |
|
|
32 | 32 | <version>${junit.jupiter.version}</version>
|
33 | 33 | <scope>test</scope>
|
34 | 34 | </dependency>
|
35 |
| - <!-- IntelliJ Coverage Agent --> |
36 |
| - <dependency> |
37 |
| - <groupId>org.jetbrains.intellij.deps</groupId> |
38 |
| - <artifactId>intellij-coverage-agent</artifactId> |
39 |
| - <version>${intellij.coverage.agent.version}</version> |
40 |
| - <scope>test</scope> |
41 |
| - </dependency> |
42 | 35 | </dependencies>
|
43 | 36 |
|
44 | 37 | <build>
|
45 | 38 | <plugins>
|
| 39 | + <plugin> |
| 40 | + <groupId>org.apache.maven.plugins</groupId> |
| 41 | + <artifactId>maven-dependency-plugin</artifactId> |
| 42 | + <version>3.6.1</version> |
| 43 | + <executions> |
| 44 | + <execution> |
| 45 | + <id>intellij-coverage-agent</id> |
| 46 | + <phase>process-test-classes</phase> |
| 47 | + <goals> |
| 48 | + <goal>copy</goal> |
| 49 | + </goals> |
| 50 | + <configuration> |
| 51 | + <artifactItems> |
| 52 | + <!-- IntelliJ Coverage Agent --> |
| 53 | + <artifactItem> |
| 54 | + <groupId>org.jetbrains.intellij.deps</groupId> |
| 55 | + <artifactId>intellij-coverage-agent</artifactId> |
| 56 | + <version>${intellij.coverage.agent.version}</version> |
| 57 | + <destFileName>intellij-coverage-agent.jar</destFileName> |
| 58 | + </artifactItem> |
| 59 | + </artifactItems> |
| 60 | + </configuration> |
| 61 | + </execution> |
| 62 | + </executions> |
| 63 | + </plugin> |
46 | 64 | <plugin>
|
47 | 65 | <groupId>org.apache.maven.plugins</groupId>
|
48 | 66 | <artifactId>maven-surefire-plugin</artifactId>
|
49 |
| - <version>2.22.2</version> |
| 67 | + <version>3.2.5</version> |
50 | 68 | <configuration>
|
51 | 69 | <!-- Specify the IntelliJ coverage agent -->
|
52 | 70 | <argLine>
|
53 |
| - -javaagent:${settings.localRepository}/org/jetbrains/intellij/deps/intellij-coverage-agent/${intellij.coverage.agent.version}/intellij-coverage-agent-${intellij.coverage.agent.version}.jar=${intellij.agent.options} |
| 71 | + -javaagent:${project.build.directory}/dependency/intellij-coverage-agent.jar=${intellij.agent.options} |
54 | 72 | </argLine>
|
55 | 73 | </configuration>
|
56 | 74 | </plugin>
|
|
0 commit comments