pom.xml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. <parent>
  7. <artifactId>assira.project</artifactId>
  8. <groupId>net.ranides</groupId>
  9. <version>2.8.4-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>assira.core8</artifactId>
  12. <packaging>jar</packaging>
  13. <name>${project.groupId}:${project.artifactId}</name>
  14. <description>assira: general purpose java library: runtime for JDK8</description>
  15. <properties>
  16. <assira.junit.debug>false</assira.junit.debug>
  17. <maven.compiler.source>1.8</maven.compiler.source>
  18. <maven.compiler.target>1.8</maven.compiler.target>
  19. </properties>
  20. <build>
  21. <plugins>
  22. <plugin>
  23. <groupId>org.apache.maven.plugins</groupId>
  24. <artifactId>maven-shade-plugin</artifactId>
  25. <version>2.4.3</version>
  26. <executions>
  27. <execution>
  28. <phase>package</phase>
  29. <goals>
  30. <goal>shade</goal>
  31. </goals>
  32. <configuration>
  33. <shadedArtifactAttached>true</shadedArtifactAttached>
  34. <shadedClassifierName>all</shadedClassifierName>
  35. <createDependencyReducedPom>true</createDependencyReducedPom>
  36. <createSourcesJar>true</createSourcesJar>
  37. <minimizeJar>false</minimizeJar>
  38. </configuration>
  39. </execution>
  40. </executions>
  41. </plugin>
  42. </plugins>
  43. </build>
  44. <dependencies>
  45. <dependency>
  46. <groupId>junit</groupId>
  47. <artifactId>junit</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>net.ranides</groupId>
  51. <artifactId>assira.core</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>net.ranides</groupId>
  55. <artifactId>assira.junit</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.slf4j</groupId>
  59. <artifactId>slf4j-api</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.projectlombok</groupId>
  63. <artifactId>lombok</artifactId>
  64. </dependency>
  65. </dependencies>
  66. </project>