|
67 | 67 | <target>${java.version}</target> |
68 | 68 | <testSource>${java.version}</testSource> |
69 | 69 | <testTarget>${java.version}</testTarget> |
70 | | -<!-- |
71 | | - <compilerArgs> |
72 | | - <arg>-Werror</arg> |
73 | | - <arg>-Xlint:all</arg> |
74 | | - <arg>-Xlint:-processing</arg> |
75 | | - <arg>-Xlint:-serial</arg> |
76 | | - <arg>-Xmaxerrs</arg> |
77 | | - <arg>20</arg> |
78 | | - <arg>-XprintProcessorInfo</arg> |
79 | | - <arg>-XprintRounds</arg> |
80 | | - </compilerArgs> |
81 | | ---> |
| 70 | + <!-- |
| 71 | + <compilerArgs> |
| 72 | + <arg>-Werror</arg> |
| 73 | + <arg>-Xlint:all</arg> |
| 74 | + <arg>-Xlint:-processing</arg> |
| 75 | + <arg>-Xlint:-serial</arg> |
| 76 | + <arg>-Xmaxerrs</arg> |
| 77 | + <arg>20</arg> |
| 78 | + <arg>-XprintProcessorInfo</arg> |
| 79 | + <arg>-XprintRounds</arg> |
| 80 | + </compilerArgs> |
| 81 | + --> |
82 | 82 | <showWarnings>true</showWarnings> |
83 | 83 | </configuration> |
84 | 84 | </plugin> |
|
93 | 93 | <plugin> |
94 | 94 | <artifactId>maven-assembly-plugin</artifactId> |
95 | 95 | <version>2.6</version> |
| 96 | + <executions> |
| 97 | + <execution> |
| 98 | + <phase>package</phase> |
| 99 | + <goals> |
| 100 | + <goal>single</goal> |
| 101 | + </goals> |
| 102 | + </execution> |
| 103 | + </executions> |
96 | 104 | <configuration> |
97 | | - <descriptor>src/main/assembly/test-jar-with-dependencies.xml</descriptor> |
| 105 | + <descriptorRefs> |
| 106 | + <descriptorRef>jar-with-dependencies</descriptorRef> |
| 107 | + </descriptorRefs> |
98 | 108 | <archive> |
99 | 109 | <manifest> |
100 | 110 | <mainClass>JCurl</mainClass> |
|
109 | 119 | </archive> |
110 | 120 | <outputDirectory>${project.basedir}/target</outputDirectory> |
111 | 121 | </configuration> |
112 | | - <executions> |
113 | | - <execution> |
114 | | - <phase>package</phase> |
115 | | - <goals> |
116 | | - <goal>assembly</goal> |
117 | | - </goals> |
118 | | - </execution> |
119 | | - </executions> |
120 | 122 | </plugin> |
121 | 123 | </plugins> |
122 | 124 | </build> |
|
352 | 354 | <scope>test</scope> |
353 | 355 | </dependency> |
354 | 356 | <dependency> |
355 | | -<!-- |
356 | | - <groupId>com.github.tomakehurst</groupId> |
357 | | - <artifactId>wiremock</artifactId> |
358 | | - <version>2.27.2</version> |
359 | | - <scope>test</scope> |
360 | | ---> |
| 357 | + <!-- |
| 358 | + <groupId>com.github.tomakehurst</groupId> |
| 359 | + <artifactId>wiremock</artifactId> |
| 360 | + <version>2.27.2</version> |
| 361 | + <scope>test</scope> |
| 362 | + --> |
361 | 363 | <groupId>com.github.tomakehurst</groupId> |
362 | 364 | <artifactId>wiremock-jre8</artifactId> |
363 | 365 | <version>2.33.2</version> |
|
0 commit comments