pom.xml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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>JrebelBrainsLicenseServerforJava</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.6</source>
  21. <target>1.6</target>
  22. <encoding>utf8</encoding>
  23. </configuration>
  24. </plugin>
  25. </plugins>
  26. </build>
  27. <dependencies>
  28. <dependency>
  29. <groupId>org.eclipse.jetty.aggregate</groupId>
  30. <artifactId>jetty-all</artifactId>
  31. <version>8.1.2.v20120308</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>javax.servlet</groupId>
  35. <artifactId>javax.servlet-api</artifactId>
  36. <version>3.0.1</version>
  37. <scope>provided</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.bouncycastle</groupId>
  41. <artifactId>bcprov-jdk15on</artifactId>
  42. <version>1.58</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>commons-codec</groupId>
  46. <artifactId>commons-codec</artifactId>
  47. <version>1.10</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>net.sf.json-lib</groupId>
  51. <artifactId>json-lib</artifactId>
  52. <version>2.4</version>
  53. <classifier>jdk15</classifier>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.apache.commons</groupId>
  57. <artifactId>commons-lang3</artifactId>
  58. <version>3.1</version>
  59. </dependency>
  60. </dependencies>
  61. </project>