pom.xml 2.0 KB

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