pom.xml 2.1 KB

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