pom.xml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.vvvtimes.com</groupId>
  7. <artifactId>JrebelLicenseServerforJava</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <properties>
  10. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  11. </properties>
  12. <build>
  13. <plugins>
  14. <plugin>
  15. <groupId>org.apache.maven.plugins</groupId>
  16. <artifactId>maven-compiler-plugin</artifactId>
  17. <!-- 与Servlet版本对应 -->
  18. <version>3.1</version>
  19. <configuration>
  20. <source>1.7</source>
  21. <target>1.7</target>
  22. <encoding>utf8</encoding>
  23. </configuration>
  24. </plugin>
  25. <plugin>
  26. <groupId>org.apache.maven.plugins</groupId>
  27. <artifactId>maven-assembly-plugin</artifactId>
  28. <version>3.1.0</version>
  29. <configuration>
  30. <archive>
  31. <manifest>
  32. <mainClass>com.vvvtimes.server.MainServer</mainClass>
  33. </manifest>
  34. </archive>
  35. <descriptorRefs>
  36. <descriptorRef>jar-with-dependencies</descriptorRef>
  37. </descriptorRefs>
  38. </configuration>
  39. <executions>
  40. <execution>
  41. <id>make-assembly</id>
  42. <phase>package</phase>
  43. <goals>
  44. <goal>single</goal>
  45. </goals>
  46. </execution>
  47. </executions>
  48. </plugin>
  49. </plugins>
  50. </build>
  51. <dependencies>
  52. <dependency>
  53. <groupId>org.eclipse.jetty.aggregate</groupId>
  54. <artifactId>jetty-all</artifactId>
  55. <version>8.1.2.v20120308</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>javax.servlet</groupId>
  59. <artifactId>javax.servlet-api</artifactId>
  60. <version>3.0.1</version>
  61. <scope>provided</scope>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.apache.commons</groupId>
  65. <artifactId>commons-lang3</artifactId>
  66. <version>3.1</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>commons-codec</groupId>
  70. <artifactId>commons-codec</artifactId>
  71. <version>1.10</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>net.sf.json-lib</groupId>
  75. <artifactId>json-lib</artifactId>
  76. <version>2.4</version>
  77. <classifier>jdk15</classifier>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.bouncycastle</groupId>
  81. <artifactId>bcprov-jdk15on</artifactId>
  82. <version>1.58</version>
  83. </dependency>
  84. </dependencies>
  85. </project>