|
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | + 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>io.github.hikingc</groupId> |
| 6 | + <artifactId>java-matrix-sdk</artifactId> |
| 7 | + <version>1.0-SNAPSHOT</version> |
| 8 | + </parent> |
| 9 | + |
| 10 | + <artifactId>matrix-sdk-core</artifactId> |
| 11 | + <packaging>jar</packaging> |
| 12 | + |
| 13 | + <name>matrix-sdk-core</name> |
| 14 | + |
| 15 | + <properties> |
| 16 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 17 | + </properties> |
| 18 | + |
| 19 | + <dependencies> |
| 20 | + <dependency> |
| 21 | + <groupId>tools.jackson.core</groupId> |
| 22 | + <artifactId>jackson-databind</artifactId> |
| 23 | + <scope>compile</scope> |
| 24 | + </dependency> |
| 25 | + |
| 26 | + |
| 27 | + <dependency> |
| 28 | + <groupId>io.fusionauth</groupId> |
| 29 | + <artifactId>java-http</artifactId> |
| 30 | + </dependency> |
| 31 | + |
| 32 | + <dependency> |
| 33 | + <groupId>org.jspecify</groupId> |
| 34 | + <artifactId>jspecify</artifactId> |
| 35 | + </dependency> |
| 36 | + |
| 37 | + <dependency> |
| 38 | + <groupId>org.slf4j</groupId> |
| 39 | + <artifactId>slf4j-api</artifactId> |
| 40 | + </dependency> |
| 41 | + |
| 42 | + <dependency> |
| 43 | + <groupId>org.junit.jupiter</groupId> |
| 44 | + <artifactId>junit-jupiter</artifactId> |
| 45 | + <scope>test</scope> |
| 46 | + </dependency> |
| 47 | + |
| 48 | + <!-- Testing deps --> |
| 49 | + |
| 50 | + <dependency> |
| 51 | + <groupId>org.wiremock</groupId> |
| 52 | + <artifactId>wiremock</artifactId> |
| 53 | + <scope>test</scope> |
| 54 | + </dependency> |
| 55 | + |
| 56 | + <dependency> |
| 57 | + <groupId>org.assertj</groupId> |
| 58 | + <artifactId>assertj-core</artifactId> |
| 59 | + <scope>test</scope> |
| 60 | + </dependency> |
| 61 | + |
| 62 | + <dependency> |
| 63 | + <groupId>org.instancio</groupId> |
| 64 | + <artifactId>instancio-junit</artifactId> |
| 65 | + <version>6.0.0-RC4</version> |
| 66 | + <scope>test</scope> |
| 67 | + </dependency> |
| 68 | + |
| 69 | + <dependency> |
| 70 | + <groupId>org.slf4j</groupId> |
| 71 | + <artifactId>slf4j-simple</artifactId> |
| 72 | + <version>2.0.18</version> |
| 73 | + <scope>test</scope> |
| 74 | + </dependency> |
| 75 | + |
| 76 | + <!-- publishing --> |
| 77 | + <dependency> |
| 78 | + <groupId>org.sonatype.central</groupId> |
| 79 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 80 | + <version>0.11.0</version> |
| 81 | + </dependency> |
| 82 | + </dependencies> |
| 83 | + |
| 84 | + <build> |
| 85 | + <plugins> |
| 86 | + <plugin> |
| 87 | + <groupId>org.apache.maven.plugins</groupId> |
| 88 | + <artifactId>maven-source-plugin</artifactId> |
| 89 | + <version>3.4.0</version> |
| 90 | + <executions> |
| 91 | + <execution> |
| 92 | + <id>attach-sources</id> |
| 93 | + <goals> |
| 94 | + <goal>jar-no-fork</goal> |
| 95 | + </goals> |
| 96 | + </execution> |
| 97 | + </executions> |
| 98 | + </plugin> |
| 99 | + |
| 100 | + <!-- Generates <artifactId>-<version>-javadoc.jar --> |
| 101 | + <plugin> |
| 102 | + <groupId>org.apache.maven.plugins</groupId> |
| 103 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 104 | + <configuration> |
| 105 | + <tags> |
| 106 | + <tag> |
| 107 | + <name>apiNote</name> |
| 108 | + <placement>a</placement> |
| 109 | + <head>API Note:</head> |
| 110 | + </tag> |
| 111 | + <tag> |
| 112 | + <name>implSpec</name> |
| 113 | + <placement>a</placement> |
| 114 | + <head>Implementation Requirements:</head> |
| 115 | + </tag> |
| 116 | + <tag> |
| 117 | + <name>implNote</name> |
| 118 | + <placement>a</placement> |
| 119 | + <head>Implementation Note:</head> |
| 120 | + </tag> |
| 121 | + </tags> |
| 122 | + </configuration> |
| 123 | + <version>3.12.0</version> |
| 124 | + <executions> |
| 125 | + <execution> |
| 126 | + <id>attach-javadocs</id> |
| 127 | + <goals> |
| 128 | + <goal>jar</goal> |
| 129 | + </goals> |
| 130 | + </execution> |
| 131 | + </executions> |
| 132 | + </plugin> |
| 133 | + |
| 134 | + |
| 135 | + <plugin> |
| 136 | + <groupId>org.apache.maven.plugins</groupId> |
| 137 | + <artifactId>maven-gpg-plugin</artifactId> |
| 138 | + <version>3.2.8</version> |
| 139 | + <executions> |
| 140 | + <execution> |
| 141 | + <id>sign-artifacts</id> |
| 142 | + <phase>verify</phase> |
| 143 | + <goals> |
| 144 | + <goal>sign</goal> |
| 145 | + </goals> |
| 146 | + </execution> |
| 147 | + </executions> |
| 148 | + </plugin> |
| 149 | + |
| 150 | + |
| 151 | + <plugin> |
| 152 | + <groupId>org.jacoco</groupId> |
| 153 | + <artifactId>jacoco-maven-plugin</artifactId> |
| 154 | + <version>0.8.15</version> |
| 155 | + |
| 156 | + |
| 157 | + <executions> |
| 158 | + <execution> |
| 159 | + <id>prepare-agent</id> |
| 160 | + <goals> |
| 161 | + <goal>prepare-agent</goal> |
| 162 | + </goals> |
| 163 | + </execution> |
| 164 | + <execution> |
| 165 | + <id>report</id> |
| 166 | + <phase>test</phase> |
| 167 | + <goals> |
| 168 | + <goal>report</goal> |
| 169 | + </goals> |
| 170 | + </execution> |
| 171 | + <execution> |
| 172 | + <id>check</id> |
| 173 | + <goals> |
| 174 | + <goal>check</goal> |
| 175 | + </goals> |
| 176 | + <configuration> |
| 177 | + <rules> |
| 178 | + <rule> |
| 179 | + <element>BUNDLE</element> |
| 180 | + <limits> |
| 181 | + <limit> |
| 182 | + <counter>LINE</counter> |
| 183 | + <value>COVEREDRATIO</value> |
| 184 | + <minimum>0.80</minimum> |
| 185 | + </limit> |
| 186 | + </limits> |
| 187 | + </rule> |
| 188 | + </rules> |
| 189 | + </configuration> |
| 190 | + </execution> |
| 191 | + </executions> |
| 192 | + </plugin> |
| 193 | + </plugins> |
| 194 | + </build> |
| 195 | +</project> |
0 commit comments