Guest User

Untitled

a guest
May 5th, 2020
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.17 KB | None | 0 0
  1.  
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.abc</groupId>
  7. <artifactId>scrybe_cronjobs</artifactId>
  8. <version>PHP7-1.0</version>
  9.  
  10. <distributionManagement>
  11. <repository>
  12. <id>snapshots</id>
  13. <url>http://maven-repo.abc.net:8081/artifactory/libs-release</url>
  14. </repository>
  15. </distributionManagement>
  16. <build>
  17. <sourceDirectory>src</sourceDirectory>
  18. <resources>
  19. <resource>
  20. <directory>src</directory>
  21. <excludes>
  22. <exclude>**/*.java</exclude>
  23. </excludes>
  24. </resource>
  25. </resources>
  26. <plugins>
  27. <plugin>
  28. <artifactId>maven-compiler-plugin</artifactId>
  29. <version>3.8.0</version>
  30. <configuration>
  31. <source>1.8</source>
  32. <target>1.8</target>
  33. </configuration>
  34. </plugin>
  35. </plugins>
  36. </build>
  37. <dependencies>
  38. <dependency>
  39. <groupId>com.abc</groupId>
  40. <artifactId>scrybe_commons</artifactId>
  41. <version>PHP7-1.0</version>
  42. <scope>compile</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.abc</groupId>
  46. <artifactId>scrybe_services</artifactId>
  47. <version>PHP7-1.0</version>
  48. <scope>compile</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>external.gearman.service</groupId>
  52. <artifactId>gearman</artifactId>
  53. <version>0.6.6</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>external.smack</groupId>
  57. <artifactId>smack-core</artifactId>
  58. <version>0.1</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>external.apns</groupId>
  62. <artifactId>apns</artifactId>
  63. <version>1.0</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>commons-dbutils</groupId>
  67. <artifactId>commons-dbutils</artifactId>
  68. <version>1.3</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>commons-lang</groupId>
  72. <artifactId>commons-lang</artifactId>
  73. <version>2.4</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.apache.commons</groupId>
  77. <artifactId>commons-email</artifactId>
  78. <version>1.2</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.apache.maven.plugins</groupId>
  82. <artifactId>maven-compiler-plugin</artifactId>
  83. <version>3.8.1</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.apache.maven.plugins</groupId>
  87. <artifactId>maven-resources-plugin</artifactId>
  88. <version>3.1.0</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>log4j</groupId>
  92. <artifactId>log4j</artifactId>
  93. <version>1.2.16</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.apache.lucene</groupId>
  97. <artifactId>lucene-core</artifactId>
  98. <version>3.0.0</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>com.amazonaws</groupId>
  102. <artifactId>aws-java-sdk-core</artifactId>
  103. <version>1.11.434</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>com.amazonaws</groupId>
  107. <artifactId>aws-java-sdk-s3</artifactId>
  108. <version>1.11.434</version>
  109. </dependency>
  110. </dependencies>
  111. </project>
Add Comment
Please, Sign In to add comment