|
1 |
| -<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/xsd/maven-4.0.0.xsd"> |
2 |
| - <modelVersion>4.0.0</modelVersion> |
3 |
| - <groupId>io.tech.runner</groupId> |
4 |
| - <artifactId>maven3-junit4-runner</artifactId> |
5 |
| - <version>0.0.1-SNAPSHOT</version> |
6 |
| - |
7 |
| - <properties> |
8 |
| - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
9 |
| - </properties> |
10 |
| - |
11 |
| - <dependencies> |
12 |
| - <dependency> |
13 |
| - <groupId>junit</groupId> |
14 |
| - <artifactId>junit</artifactId> |
15 |
| - <version>4.12</version> |
16 |
| - <scope>provided</scope> |
17 |
| - </dependency> |
18 |
| - <dependency> |
19 |
| - <groupId>org.apache.commons</groupId> |
20 |
| - <artifactId>commons-io</artifactId> |
21 |
| - <version>1.3.2</version> |
22 |
| - </dependency> |
23 |
| - <dependency> |
24 |
| - <groupId>org.assertj</groupId> |
25 |
| - <artifactId>assertj-core</artifactId> |
26 |
| - <version>3.6.1</version> |
27 |
| - <scope>test</scope> |
28 |
| - </dependency> |
29 |
| - <dependency> |
30 |
| - <groupId>org.mockito</groupId> |
31 |
| - <artifactId>mockito-core</artifactId> |
32 |
| - <version>2.6.8</version> |
33 |
| - </dependency> |
34 |
| - <dependency> |
35 |
| - <groupId>io.vertx</groupId> |
36 |
| - <artifactId>vertx-core</artifactId> |
37 |
| - <version>3.0.0</version> |
38 |
| - <scope>test</scope> |
39 |
| - </dependency> |
40 |
| - <dependency> |
41 |
| - <groupId>io.vertx</groupId> |
42 |
| - <artifactId>vertx-unit</artifactId> |
43 |
| - <version>3.0.0</version> |
44 |
| - <scope>test</scope> |
45 |
| - </dependency> |
46 |
| - </dependencies> |
47 |
| - |
48 |
| - <build> |
49 |
| - <plugins> |
50 |
| - <plugin> |
51 |
| - <groupId>org.apache.maven.plugins</groupId> |
52 |
| - <artifactId>maven-compiler-plugin</artifactId> |
53 |
| - <version>3.5.1</version> |
54 |
| - <configuration> |
55 |
| - <source>1.8</source> |
56 |
| - <target>1.8</target> |
57 |
| - </configuration> |
58 |
| - </plugin> |
59 |
| - <plugin> |
60 |
| - <artifactId>maven-assembly-plugin</artifactId> |
61 |
| - <configuration> |
62 |
| - <archive> |
63 |
| - <manifest> |
64 |
| - <mainClass>io.tech.runner.junit.JUnitTestListRunner</mainClass> |
65 |
| - </manifest> |
66 |
| - </archive> |
67 |
| - <descriptorRefs> |
68 |
| - <descriptorRef>jar-with-dependencies</descriptorRef> |
69 |
| - </descriptorRefs> |
70 |
| - </configuration> |
71 |
| - <executions> |
72 |
| - <execution> |
73 |
| - <id>make-assembly</id> |
74 |
| - <phase>package</phase> |
75 |
| - <goals> |
76 |
| - <goal>single</goal> |
77 |
| - </goals> |
78 |
| - </execution> |
79 |
| - </executions> |
80 |
| - </plugin> |
81 |
| - </plugins> |
82 |
| - </build> |
83 |
| -</project> |
| 1 | +<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/xsd/maven-4.0.0.xsd"> |
| 2 | + <modelVersion>4.0.0</modelVersion> |
| 3 | + <groupId>io.tech.runner</groupId> |
| 4 | + <artifactId>maven3-junit4-runner</artifactId> |
| 5 | + <version>0.0.1-SNAPSHOT</version> |
| 6 | + |
| 7 | + <properties> |
| 8 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 9 | + </properties> |
| 10 | + |
| 11 | + <dependencies> |
| 12 | + <dependency> |
| 13 | + <groupId>junit</groupId> |
| 14 | + <artifactId>junit</artifactId> |
| 15 | + <version>4.12</version> |
| 16 | + <scope>provided</scope> |
| 17 | + </dependency> |
| 18 | + <dependency> |
| 19 | + <groupId>org.apache.commons</groupId> |
| 20 | + <artifactId>commons-io</artifactId> |
| 21 | + <version>1.3.2</version> |
| 22 | + </dependency> |
| 23 | + <dependency> |
| 24 | + <groupId>org.assertj</groupId> |
| 25 | + <artifactId>assertj-core</artifactId> |
| 26 | + <version>3.6.1</version> |
| 27 | + <scope>test</scope> |
| 28 | + </dependency> |
| 29 | + <dependency> |
| 30 | + <groupId>org.mockito</groupId> |
| 31 | + <artifactId>mockito-core</artifactId> |
| 32 | + <version>2.6.8</version> |
| 33 | + </dependency> |
| 34 | + <dependency> |
| 35 | + <groupId>io.vertx</groupId> |
| 36 | + <artifactId>vertx-core</artifactId> |
| 37 | + <version>3.0.0</version> |
| 38 | + <scope>test</scope> |
| 39 | + </dependency> |
| 40 | + <dependency> |
| 41 | + <groupId>io.vertx</groupId> |
| 42 | + <artifactId>vertx-unit</artifactId> |
| 43 | + <version>3.0.0</version> |
| 44 | + <scope>test</scope> |
| 45 | + </dependency> |
| 46 | + </dependencies> |
| 47 | + |
| 48 | + <build> |
| 49 | + <plugins> |
| 50 | + <plugin> |
| 51 | + <groupId>org.apache.maven.plugins</groupId> |
| 52 | + <artifactId>maven-compiler-plugin</artifactId> |
| 53 | + <version>3.5.1</version> |
| 54 | + <configuration> |
| 55 | + <source>1.8</source> |
| 56 | + <target>1.8</target> |
| 57 | + </configuration> |
| 58 | + </plugin> |
| 59 | + <plugin> |
| 60 | + <artifactId>maven-assembly-plugin</artifactId> |
| 61 | + <configuration> |
| 62 | + <archive> |
| 63 | + <manifest> |
| 64 | + <mainClass>io.tech.runner.junit.JUnitTestListRunner</mainClass> |
| 65 | + </manifest> |
| 66 | + </archive> |
| 67 | + <descriptorRefs> |
| 68 | + <descriptorRef>jar-with-dependencies</descriptorRef> |
| 69 | + </descriptorRefs> |
| 70 | + </configuration> |
| 71 | + <executions> |
| 72 | + <execution> |
| 73 | + <id>make-assembly</id> |
| 74 | + <phase>package</phase> |
| 75 | + <goals> |
| 76 | + <goal>single</goal> |
| 77 | + </goals> |
| 78 | + </execution> |
| 79 | + </executions> |
| 80 | + </plugin> |
| 81 | + </plugins> |
| 82 | + </build> |
| 83 | +</project> |
0 commit comments