pom.xml 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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.8.4-SNAPSHOT</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. </dependencies>
  85. </project>