dependency-reduced-pom.xml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.garypaduana</groupId>
  5. <artifactId>groovy-tools</artifactId>
  6. <version>0.9.0</version>
  7. <build>
  8. <plugins>
  9. <plugin>
  10. <artifactId>maven-antrun-plugin</artifactId>
  11. <executions>
  12. <execution>
  13. <id>compile</id>
  14. <phase>compile</phase>
  15. <goals>
  16. <goal>run</goal>
  17. </goals>
  18. <configuration>
  19. <tasks>
  20. <mkdir />
  21. <taskdef>
  22. <classpath />
  23. </taskdef>
  24. <mkdir />
  25. <groovyc>
  26. <classpath />
  27. </groovyc>
  28. </tasks>
  29. </configuration>
  30. </execution>
  31. <execution>
  32. <id>test-compile</id>
  33. <phase>test-compile</phase>
  34. <goals>
  35. <goal>run</goal>
  36. </goals>
  37. <configuration>
  38. <tasks>
  39. <mkdir />
  40. <taskdef>
  41. <classpath />
  42. </taskdef>
  43. <mkdir />
  44. <groovyc>
  45. <classpath />
  46. </groovyc>
  47. </tasks>
  48. </configuration>
  49. </execution>
  50. </executions>
  51. </plugin>
  52. <plugin>
  53. <artifactId>maven-shade-plugin</artifactId>
  54. <version>3.2.1</version>
  55. <executions>
  56. <execution>
  57. <phase>package</phase>
  58. <goals>
  59. <goal>shade</goal>
  60. </goals>
  61. <configuration>
  62. <transformers>
  63. <transformer>
  64. <mainClass>${start-class}</mainClass>
  65. </transformer>
  66. </transformers>
  67. </configuration>
  68. </execution>
  69. </executions>
  70. </plugin>
  71. </plugins>
  72. </build>
  73. <dependencies>
  74. <dependency>
  75. <groupId>org.codehaus.groovy</groupId>
  76. <artifactId>groovy-all</artifactId>
  77. <version>2.5.7</version>
  78. <type>pom</type>
  79. <scope>compile</scope>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.sun.mail</groupId>
  83. <artifactId>jakarta.mail</artifactId>
  84. <version>1.6.3</version>
  85. <scope>provided</scope>
  86. <exclusions>
  87. <exclusion>
  88. <artifactId>jakarta.activation</artifactId>
  89. <groupId>com.sun.activation</groupId>
  90. </exclusion>
  91. </exclusions>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.spockframework</groupId>
  95. <artifactId>spock-core</artifactId>
  96. <version>1.3-groovy-2.5</version>
  97. <scope>test</scope>
  98. </dependency>
  99. <dependency>
  100. <groupId>junit</groupId>
  101. <artifactId>junit</artifactId>
  102. <version>4.12</version>
  103. <scope>test</scope>
  104. <exclusions>
  105. <exclusion>
  106. <artifactId>hamcrest-core</artifactId>
  107. <groupId>org.hamcrest</groupId>
  108. </exclusion>
  109. </exclusions>
  110. </dependency>
  111. </dependencies>
  112. <properties />
  113. </project>