netty-demo
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

182 lines
5.4 KiB

14 years ago
13 years ago
14 years ago
13 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
13 years ago
14 years ago
14 years ago
14 years ago
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.corundumstudio.socketio</groupId>
  5. <artifactId>netty-socketio</artifactId>
  6. <version>1.0.0-SNAPSHOT</version>
  7. <packaging>jar</packaging>
  8. <name>NettySocketIO</name>
  9. <description>Socket.IO server implemented on Java</description>
  10. <inceptionYear>2012</inceptionYear>
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. </properties>
  14. <licenses>
  15. <license>
  16. <name>Apache v2</name>
  17. <url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
  18. <distribution>manual</distribution>
  19. </license>
  20. </licenses>
  21. <developers>
  22. <developer>
  23. <id>mrniko</id>
  24. <name>Nikita Koksharov</name>
  25. <roles>
  26. <role>Architect</role>
  27. <role>Developer</role>
  28. </roles>
  29. <timezone>+4</timezone>
  30. </developer>
  31. </developers>
  32. <dependencies>
  33. <dependency>
  34. <groupId>com.googlecode.jmockit</groupId>
  35. <artifactId>jmockit</artifactId>
  36. <version>0.999.15</version>
  37. <scope>test</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>junit</groupId>
  41. <artifactId>junit</artifactId>
  42. <version>4.10</version>
  43. <scope>test</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>io.netty</groupId>
  47. <artifactId>netty</artifactId>
  48. <version>3.5.2.Final</version>
  49. <scope>compile</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.codehaus.jackson</groupId>
  53. <artifactId>jackson-core-asl</artifactId>
  54. <version>1.9.6</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.codehaus.jackson</groupId>
  58. <artifactId>jackson-mapper-asl</artifactId>
  59. <version>1.9.6</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.slf4j</groupId>
  63. <artifactId>slf4j-api</artifactId>
  64. <version>1.6.4</version>
  65. </dependency>
  66. </dependencies>
  67. <build>
  68. <plugins>
  69. <plugin>
  70. <groupId>org.apache.maven.plugins</groupId>
  71. <artifactId>maven-eclipse-plugin</artifactId>
  72. <version>2.9</version>
  73. <configuration>
  74. <downloadSources>true</downloadSources>
  75. <forceRecheck>true</forceRecheck>
  76. </configuration>
  77. </plugin>
  78. <plugin>
  79. <groupId>org.apache.maven.plugins</groupId>
  80. <artifactId>maven-pmd-plugin</artifactId>
  81. <version>2.7.1</version>
  82. <executions>
  83. <execution>
  84. <phase>verify</phase>
  85. <goals>
  86. <goal>pmd</goal>
  87. <goal>cpd</goal>
  88. </goals>
  89. </execution>
  90. </executions>
  91. <configuration>
  92. <linkXref>true</linkXref>
  93. <minimumTokens>100</minimumTokens>
  94. <targetJdk>1.5</targetJdk>
  95. <verbose>true</verbose>
  96. </configuration>
  97. </plugin>
  98. <plugin>
  99. <groupId>org.apache.maven.plugins</groupId>
  100. <artifactId>maven-checkstyle-plugin</artifactId>
  101. <version>2.9.1</version>
  102. <executions>
  103. <execution>
  104. <phase>verify</phase>
  105. <goals>
  106. <goal>checkstyle</goal>
  107. </goals>
  108. </execution>
  109. </executions>
  110. <configuration>
  111. <consoleOutput>true</consoleOutput>
  112. <enableRSS>false</enableRSS>
  113. <configLocation>/checkstyle.xml</configLocation>
  114. </configuration>
  115. </plugin>
  116. <plugin>
  117. <artifactId>maven-compiler-plugin</artifactId>
  118. <version>2.3.2</version>
  119. <configuration>
  120. <source>1.6</source>
  121. <target>1.6</target>
  122. <optimize>true</optimize>
  123. <showDeprecations>true</showDeprecations>
  124. </configuration>
  125. </plugin>
  126. <plugin>
  127. <groupId>org.apache.maven.plugins</groupId>
  128. <artifactId>maven-surefire-plugin</artifactId>
  129. <version>2.12</version>
  130. <configuration>
  131. <argLine>-Dfile.encoding=utf-8</argLine>
  132. </configuration>
  133. </plugin>
  134. <plugin>
  135. <groupId>com.mycila.maven-license-plugin</groupId>
  136. <artifactId>maven-license-plugin</artifactId>
  137. <version>1.10.b1</version>
  138. <configuration>
  139. <basedir>${basedir}</basedir>
  140. <header>${basedir}/header.txt</header>
  141. <quiet>false</quiet>
  142. <failIfMissing>true</failIfMissing>
  143. <aggregate>false</aggregate>
  144. <includes>
  145. <include>src/**</include>
  146. </includes>
  147. <excludes>
  148. <exclude>target/**</exclude>
  149. </excludes>
  150. <useDefaultExcludes>true</useDefaultExcludes>
  151. <mapping>
  152. <java>JAVADOC_STYLE</java>
  153. </mapping>
  154. <strictCheck>true</strictCheck>
  155. <useDefaultMapping>true</useDefaultMapping>
  156. <encoding>UTF-8</encoding>
  157. </configuration>
  158. <executions>
  159. <execution>
  160. <goals>
  161. <goal>check</goal>
  162. </goals>
  163. </execution>
  164. </executions>
  165. </plugin>
  166. </plugins>
  167. </build>
  168. </project>