|
2 | 2 | <modelVersion>4.0.0</modelVersion> |
3 | 3 | <groupId>io.socket</groupId> |
4 | 4 | <artifactId>socket.io-client</artifactId> |
5 | | - <version>2.1.3-SNAPSHOT</version> |
| 5 | + <version>2.2.0-SNAPSHOT</version> |
6 | 6 | <packaging>jar</packaging> |
7 | 7 | <name>socket.io-client</name> |
8 | 8 | <description>Socket.IO Client Library for Java</description> |
|
102 | 102 |
|
103 | 103 | <build> |
104 | 104 | <plugins> |
105 | | - <plugin> |
106 | | - <groupId>org.apache.maven.plugins</groupId> |
107 | | - <artifactId>maven-compiler-plugin</artifactId> |
108 | | - <version>3.5.1</version> |
109 | | - <configuration> |
110 | | - <source>1.7</source> |
111 | | - <target>1.7</target> |
112 | | - <compilerArgs> |
113 | | - <arg>-Xlint:unchecked</arg> |
114 | | - </compilerArgs> |
115 | | - <showWarnings>true</showWarnings> |
116 | | - <showDeprecation>true</showDeprecation> |
117 | | - </configuration> |
118 | | - </plugin> |
119 | 105 | <plugin> |
120 | 106 | <groupId>org.apache.maven.plugins</groupId> |
121 | 107 | <artifactId>maven-surefire-plugin</artifactId> |
|
207 | 193 | <workingDirectory>./src/test/resources</workingDirectory> |
208 | 194 | <executable>npm</executable> |
209 | 195 | <arguments> |
210 | | - <argument>install</argument> |
| 196 | + <argument>install</argument> |
211 | 197 | </arguments> |
212 | 198 | </configuration> |
213 | 199 | </execution> |
|
223 | 209 | <artifactId>maven-site-plugin</artifactId> |
224 | 210 | <version>3.9.1</version> |
225 | 211 | </plugin> |
| 212 | + <plugin> |
| 213 | + <groupId>org.apache.maven.plugins</groupId> |
| 214 | + <artifactId>maven-compiler-plugin</artifactId> |
| 215 | + <version>3.5.1</version> |
| 216 | + <executions> |
| 217 | + <execution> |
| 218 | + <id>default-compile</id> |
| 219 | + <phase>none</phase> |
| 220 | + </execution> |
| 221 | + <execution> |
| 222 | + <id>default-testCompile</id> |
| 223 | + <phase>none</phase> |
| 224 | + </execution> |
| 225 | + <execution> |
| 226 | + <id>compile</id> |
| 227 | + <phase>compile</phase> |
| 228 | + <goals> |
| 229 | + <goal>compile</goal> |
| 230 | + </goals> |
| 231 | + </execution> |
| 232 | + <execution> |
| 233 | + <id>testCompile</id> |
| 234 | + <phase>test-compile</phase> |
| 235 | + <goals> |
| 236 | + <goal>testCompile</goal> |
| 237 | + </goals> |
| 238 | + </execution> |
| 239 | + </executions> |
| 240 | + <configuration> |
| 241 | + <source>1.8</source> |
| 242 | + <target>1.8</target> |
| 243 | + <compilerArgs> |
| 244 | + <arg>-Xlint:unchecked</arg> |
| 245 | + </compilerArgs> |
| 246 | + <showWarnings>true</showWarnings> |
| 247 | + <showDeprecation>true</showDeprecation> |
| 248 | + </configuration> |
| 249 | + </plugin> |
226 | 250 | </plugins> |
227 | 251 | </build> |
228 | 252 | </project> |
0 commit comments