|
1 | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
2 | | - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
3 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 2 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
4 | 4 | <modelVersion>4.0.0</modelVersion> |
5 | 5 |
|
6 | 6 | <parent> |
|
27 | 27 | <artifactId>classport-commons</artifactId> |
28 | 28 | <version>${project.parent.version}</version> |
29 | 29 | </dependency> |
30 | | - |
31 | 30 | <!-- Embedding --> |
32 | 31 | <dependency> |
33 | 32 | <groupId>org.ow2.asm</groupId> |
|
80 | 79 | <version>2.2.1</version> |
81 | 80 | <scope>provided</scope> |
82 | 81 | </dependency> |
83 | | - <dependency> |
84 | | - <groupId>org.junit.jupiter</groupId> |
85 | | - <artifactId>junit-jupiter-api</artifactId> |
86 | | - <version>6.0.1</version> |
87 | | - <scope>test</scope> |
88 | | - </dependency> |
89 | | - <dependency> |
90 | | - <groupId>org.junit.jupiter</groupId> |
91 | | - <artifactId>junit-jupiter-engine</artifactId> |
92 | | - <version>6.0.1</version> |
93 | | - <scope>test</scope> |
94 | | - </dependency> |
95 | | - |
96 | | - |
97 | | - <dependency> |
98 | | - <groupId>org.hamcrest</groupId> |
99 | | - <artifactId>hamcrest</artifactId> |
100 | | - <version>3.0</version> |
101 | | - <scope>test</scope> |
102 | | - </dependency> |
103 | | - |
104 | | - <dependency> |
105 | | - <groupId>org.apache.maven.shared</groupId> |
106 | | - <artifactId>maven-invoker</artifactId> |
107 | | - <version>3.3.0</version> |
108 | | - </dependency> |
109 | | - |
110 | | - <dependency> |
111 | | - <groupId>org.twdata.maven</groupId> |
112 | | - <artifactId>mojo-executor</artifactId> |
113 | | - <version>2.4.1</version> |
114 | | - <scope>test</scope> |
115 | | - </dependency> |
116 | | - |
117 | 82 |
|
| 83 | + <!-- Test dependencies --> |
| 84 | + <dependency> |
| 85 | + <groupId>io.github.project</groupId> |
| 86 | + <artifactId>classport-analyser</artifactId> |
| 87 | + <version>${project.parent.version}</version> |
| 88 | + <scope>test</scope> |
| 89 | + </dependency> |
| 90 | + <dependency> |
| 91 | + <groupId>org.junit.jupiter</groupId> |
| 92 | + <artifactId>junit-jupiter-api</artifactId> |
| 93 | + <version>6.0.1</version> |
| 94 | + <scope>test</scope> |
| 95 | + </dependency> |
| 96 | + <dependency> |
| 97 | + <groupId>org.junit.jupiter</groupId> |
| 98 | + <artifactId>junit-jupiter-engine</artifactId> |
| 99 | + <version>6.0.1</version> |
| 100 | + <scope>test</scope> |
| 101 | + </dependency> |
| 102 | + <dependency> |
| 103 | + <groupId>com.soebes.itf.jupiter.extension</groupId> |
| 104 | + <artifactId>itf-assertj</artifactId> |
| 105 | + <version>0.13.1</version> |
| 106 | + <scope>test</scope> |
| 107 | + </dependency> |
| 108 | + <dependency> |
| 109 | + <groupId>com.soebes.itf.jupiter.extension</groupId> |
| 110 | + <artifactId>itf-jupiter-extension</artifactId> |
| 111 | + <version>0.13.1</version> |
| 112 | + <scope>test</scope> |
| 113 | + </dependency> |
| 114 | + <dependency> |
| 115 | + <groupId>org.hamcrest</groupId> |
| 116 | + <artifactId>hamcrest</artifactId> |
| 117 | + <version>3.0</version> |
| 118 | + <scope>test</scope> |
| 119 | + </dependency> |
118 | 120 | </dependencies> |
119 | 121 |
|
120 | 122 | <build> |
121 | 123 | <plugins> |
| 124 | + <!-- ITF Maven Plugin --> |
| 125 | + <plugin> |
| 126 | + <groupId>com.soebes.itf.jupiter.extension</groupId> |
| 127 | + <artifactId>itf-maven-plugin</artifactId> |
| 128 | + <version>0.13.1</version> |
| 129 | + <executions> |
| 130 | + <execution> |
| 131 | + <id>installing</id> |
| 132 | + <phase>pre-integration-test</phase> |
| 133 | + <goals> |
| 134 | + <goal>install</goal> |
| 135 | + <goal>resources-its</goal> |
| 136 | + </goals> |
| 137 | + </execution> |
| 138 | + </executions> |
| 139 | + </plugin> |
| 140 | + <plugin> |
| 141 | + <artifactId>maven-failsafe-plugin</artifactId> |
| 142 | + <executions> |
| 143 | + <execution> |
| 144 | + <goals> |
| 145 | + <goal>integration-test</goal> |
| 146 | + <goal>verify</goal> |
| 147 | + </goals> |
| 148 | + </execution> |
| 149 | + </executions> |
| 150 | + </plugin> |
122 | 151 | <plugin> |
123 | 152 | <groupId>org.apache.maven.plugins</groupId> |
124 | 153 | <artifactId>maven-surefire-plugin</artifactId> |
125 | 154 | </plugin> |
126 | 155 | <plugin> |
127 | 156 | <groupId>org.apache.maven.plugins</groupId> |
128 | 157 | <artifactId>maven-compiler-plugin</artifactId> |
129 | | - |
| 158 | + </plugin> |
| 159 | + <plugin> |
| 160 | + <groupId>org.apache.maven.plugins</groupId> |
| 161 | + <artifactId>maven-resources-plugin</artifactId> |
| 162 | + <version>3.4.0</version> |
| 163 | + <executions> |
| 164 | + <execution> |
| 165 | + <id>copy-resources</id> |
| 166 | + <phase>process-test-resources</phase> |
| 167 | + <goals> |
| 168 | + <goal>resources</goal> |
| 169 | + </goals> |
| 170 | + </execution> |
| 171 | + </executions> |
130 | 172 | </plugin> |
131 | 173 | <plugin> |
132 | 174 | <groupId>org.apache.maven.plugins</groupId> |
|
0 commit comments