|
64 | 64 |
|
65 | 65 | <distributionManagement>
|
66 | 66 | <!-- TODO: switch repositories when deploying on OSS Sonatype repos -->
|
67 |
| - <repository> |
| 67 | + <!--<repository> |
68 | 68 | <id>mc-release</id>
|
69 | 69 | <url>dav:https://mc-repo.googlecode.com/svn/maven2/releases</url>
|
70 |
| - </repository> |
| 70 | + </repository>--> |
71 | 71 | <!--<repository>
|
72 | 72 | <id>socketio-staging</id>
|
73 | 73 | <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
74 | 74 | </repository>-->
|
75 |
| - <snapshotRepository> |
| 75 | + <!--<snapshotRepository> |
76 | 76 | <id>mc-snapshot</id>
|
77 | 77 | <url>dav:https://mc-repo.googlecode.com/svn/maven2/snapshots</url>
|
78 | 78 | <uniqueVersion>false</uniqueVersion>
|
79 |
| - </snapshotRepository> |
| 79 | + </snapshotRepository>--> |
80 | 80 | <!--<snapshotRepository>
|
81 | 81 | <id>socketio-snapshots</id>
|
82 | 82 | <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
|
|
213 | 213 | <artifactId>maven-license-plugin</artifactId>
|
214 | 214 | <version>1.9.0</version>
|
215 | 215 | <configuration>
|
216 |
| - <header>licenses/MIT</header> |
| 216 | + <header>https://github.com/tadglines/Socket.IO-Java/raw/master/licenses/MIT</header> |
217 | 217 | <strictCheck>true</strictCheck>
|
| 218 | + <properties> |
| 219 | + <owner>Tad Glines</owner> |
| 220 | + <year>${project.inceptionYear}</year> |
| 221 | + </properties> |
218 | 222 | <excludes>
|
219 | 223 | <exclude>.idea/**</exclude>
|
220 | 224 | <exclude>README</exclude>
|
|
226 | 230 | <exclude>**/logging.properties</exclude>
|
227 | 231 | <exclude>**/*.js</exclude>
|
228 | 232 | <exclude>**/*.swf</exclude>
|
| 233 | + <exclude>**/com.glines.socketio.sample.gwtchat.GWTChat/**</exclude> |
229 | 234 | </excludes>
|
230 | 235 | </configuration>
|
231 | 236 | </plugin>
|
|
293 | 298 | <artifactId>maven-license-plugin</artifactId>
|
294 | 299 | <executions>
|
295 | 300 | <execution>
|
296 |
| - <id>licensing-1</id> |
297 |
| - <goals> |
298 |
| - <goal>check</goal> |
299 |
| - </goals> |
300 |
| - <configuration> |
301 |
| - <properties> |
302 |
| - <owner>Tad Glines</owner> |
303 |
| - <year>${project.inceptionYear}</year> |
304 |
| - </properties> |
305 |
| - <includes> |
306 |
| - <include>**/*.java</include> |
307 |
| - <include>**/*.xml</include> |
308 |
| - <include>**/*.html</include> |
309 |
| - </includes> |
310 |
| - </configuration> |
311 |
| - </execution> |
312 |
| - <execution> |
313 |
| - <id>licensing-2</id> |
314 | 301 | <goals>
|
315 | 302 | <goal>check</goal>
|
316 | 303 | </goals>
|
317 |
| - <configuration> |
318 |
| - <properties> |
319 |
| - <owner>Ovea</owner> |
320 |
| - <year>2011</year> |
321 |
| - </properties> |
322 |
| - <includes> |
323 |
| - <include>PLACEHOLDER</include> |
324 |
| - </includes> |
325 |
| - </configuration> |
326 | 304 | </execution>
|
327 | 305 | </executions>
|
328 | 306 | </plugin>
|
|
392 | 370 | </dependency>
|
393 | 371 | <!-- Jetty -->
|
394 | 372 | <dependency>
|
395 |
| - <groupId>javax.servlet</groupId> |
396 |
| - <artifactId>servlet-api</artifactId> |
397 |
| - <version>2.5</version> |
398 |
| - </dependency> |
399 |
| - <dependency> |
400 |
| - <groupId>org.eclipse.jetty</groupId> |
401 |
| - <artifactId>jetty-client</artifactId> |
402 |
| - <version>7.1.6.v20100715</version> |
403 |
| - </dependency> |
404 |
| - <dependency> |
405 |
| - <groupId>org.eclipse.jetty</groupId> |
406 |
| - <artifactId>jetty-continuation</artifactId> |
407 |
| - <version>7.1.6.v20100715</version> |
408 |
| - </dependency> |
409 |
| - <dependency> |
410 |
| - <groupId>org.eclipse.jetty</groupId> |
411 |
| - <artifactId>jetty-io</artifactId> |
412 |
| - <version>7.1.6.v20100715</version> |
413 |
| - </dependency> |
414 |
| - <dependency> |
415 |
| - <groupId>org.eclipse.jetty</groupId> |
416 |
| - <artifactId>jetty-server</artifactId> |
417 |
| - <version>7.1.6.v20100715</version> |
418 |
| - </dependency> |
419 |
| - <dependency> |
420 |
| - <groupId>org.eclipse.jetty</groupId> |
421 |
| - <artifactId>jetty-servlet</artifactId> |
422 |
| - <version>7.1.6.v20100715</version> |
423 |
| - </dependency> |
424 |
| - <dependency> |
425 |
| - <groupId>org.eclipse.jetty</groupId> |
426 |
| - <artifactId>jetty-util</artifactId> |
427 |
| - <version>7.1.6.v20100715</version> |
428 |
| - </dependency> |
429 |
| - <dependency> |
430 |
| - <groupId>org.eclipse.jetty</groupId> |
431 |
| - <artifactId>jetty-websocket</artifactId> |
432 |
| - <version>7.1.6.v20100715</version> |
| 373 | + <groupId>org.testatoo.container</groupId> |
| 374 | + <artifactId>testatoo-container-jetty</artifactId> |
| 375 | + <version>1.0-rc1</version> |
433 | 376 | </dependency>
|
434 | 377 | <!-- GWT -->
|
435 | 378 | <dependency>
|
|
0 commit comments