pom.xml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>net.ranides</groupId>
  6. <artifactId>assira.project</artifactId>
  7. <version>2.9.0</version>
  8. </parent>
  9. <artifactId>assira.core</artifactId>
  10. <packaging>jar</packaging>
  11. <name>${project.groupId}:${project.artifactId}</name>
  12. <description>assira: general purpose java library: core functions</description>
  13. <properties>
  14. <assira.junit.debug>false</assira.junit.debug>
  15. </properties>
  16. <profiles>
  17. <profile>
  18. <id>offline</id>
  19. <activation>
  20. <property>
  21. <name>net.ranides.offline</name>
  22. <value>true</value>
  23. </property>
  24. </activation>
  25. <build>
  26. <plugins>
  27. <plugin>
  28. <groupId>org.apache.maven.plugins</groupId>
  29. <artifactId>maven-surefire-plugin</artifactId>
  30. <configuration>
  31. <excludedGroups>net.ranides.assira.junit.JCategories$Slow,net.ranides.assira.junit.JCategories$UnstableTest,net.ranides.assira.junit.JCategories$Online</excludedGroups>
  32. </configuration>
  33. </plugin>
  34. </plugins>
  35. </build>
  36. </profile>
  37. </profiles>
  38. <build>
  39. <plugins>
  40. <plugin>
  41. <groupId>org.apache.maven.plugins</groupId>
  42. <artifactId>maven-jar-plugin</artifactId>
  43. <version>3.2.0</version>
  44. <executions>
  45. <execution>
  46. <goals>
  47. <goal>test-jar</goal>
  48. </goals>
  49. </execution>
  50. </executions>
  51. </plugin>
  52. </plugins>
  53. </build>
  54. <dependencies>
  55. <dependency>
  56. <groupId>junit</groupId>
  57. <artifactId>junit</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>net.ranides</groupId>
  61. <artifactId>assira.asm</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>net.ranides</groupId>
  65. <artifactId>assira.junit</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.slf4j</groupId>
  69. <artifactId>slf4j-api</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.google.code.findbugs</groupId>
  73. <artifactId>annotations</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>se.fishtank</groupId>
  77. <artifactId>css-selectors</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.projectlombok</groupId>
  81. <artifactId>lombok</artifactId>
  82. <scope>provided</scope>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.fasterxml.jackson.core</groupId>
  86. <artifactId>jackson-core</artifactId>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.jetbrains</groupId>
  90. <artifactId>annotations</artifactId>
  91. <version>26.0.2</version>
  92. <scope>compile</scope>
  93. </dependency>
  94. </dependencies>
  95. </project>