|
1 | | -<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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 2 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
2 | 4 | <modelVersion>4.0.0</modelVersion> |
3 | 5 | <groupId>io.bspk</groupId> |
4 | 6 | <artifactId>httpsig</artifactId> |
|
85 | 87 | <artifactId>httpcore5</artifactId> |
86 | 88 | <version>5.1.4</version> |
87 | 89 | </dependency> |
| 90 | + <dependency> |
| 91 | + <groupId>org.junit.platform</groupId> |
| 92 | + <artifactId>junit-platform-launcher</artifactId> |
| 93 | + <scope>test</scope> |
| 94 | + </dependency> |
| 95 | + <dependency> |
| 96 | + <groupId>org.junit.jupiter</groupId> |
| 97 | + <artifactId>junit-jupiter-engine</artifactId> |
| 98 | + <scope>test</scope> |
| 99 | + </dependency> |
| 100 | + <dependency> |
| 101 | + <groupId>org.junit.vintage</groupId> |
| 102 | + <artifactId>junit-vintage-engine</artifactId> |
| 103 | + <scope>test</scope> |
| 104 | + </dependency> |
| 105 | + <dependency> |
| 106 | + <groupId>org.slf4j</groupId> |
| 107 | + <artifactId>slf4j-simple</artifactId> |
| 108 | + <version>1.7.21</version> |
| 109 | + </dependency> |
88 | 110 | </dependencies> |
| 111 | + |
| 112 | + |
| 113 | + <dependencyManagement> |
| 114 | + <dependencies> |
| 115 | + <dependency> |
| 116 | + <groupId>org.junit</groupId> |
| 117 | + <artifactId>junit-bom</artifactId> |
| 118 | + <version>5.12.2</version> |
| 119 | + <type>pom</type> |
| 120 | + <scope>import</scope> |
| 121 | + </dependency> |
| 122 | + </dependencies> |
| 123 | + </dependencyManagement> |
| 124 | + |
89 | 125 | <distributionManagement> |
90 | 126 | <snapshotRepository> |
91 | 127 | <id>ossrh</id> |
92 | 128 | <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
93 | 129 | </snapshotRepository> |
94 | 130 | <repository> |
95 | 131 | <id>ossrh</id> |
96 | | - <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 132 | + <url> |
| 133 | + https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
97 | 134 | </repository> |
98 | 135 | </distributionManagement> |
99 | 136 | <build> |
|
126 | 163 | <groupId>org.apache.maven.plugins</groupId> |
127 | 164 | <artifactId>maven-javadoc-plugin</artifactId> |
128 | 165 | <version>3.0.1</version> |
129 | | - <configuration> |
130 | | - <doclint>all,-missing</doclint> |
131 | | - </configuration> |
| 166 | + <configuration> |
| 167 | + <doclint>all,-missing</doclint> |
| 168 | + </configuration> |
132 | 169 | <executions> |
133 | 170 | <execution> |
134 | 171 | <id>attach-javadocs</id> |
|
152 | 189 | </execution> |
153 | 190 | </executions> |
154 | 191 | </plugin> |
155 | | - <plugin> |
156 | | - <groupId>org.apache.maven.plugins</groupId> |
157 | | - <artifactId>maven-resources-plugin</artifactId> |
158 | | - <version>3.0.1</version> |
159 | | - <executions> |
160 | | - <execution> |
161 | | - <id>readme</id> |
162 | | - <phase>none</phase> |
163 | | - <goals> |
164 | | - <goal>copy-resources</goal> |
165 | | - </goals> |
166 | | - <configuration> |
167 | | - <outputDirectory>${project.basedir}</outputDirectory> |
168 | | - <resources> |
169 | | - <resource> |
170 | | - <directory>src/main/doc</directory> |
171 | | - <includes> |
172 | | - <include>README.md</include> |
173 | | - </includes> |
174 | | - <filtering>true</filtering> |
175 | | - </resource> |
176 | | - </resources> |
177 | | - <encoding>UTF-8</encoding> |
178 | | - </configuration> |
179 | | - </execution> |
180 | | - </executions> |
181 | | - </plugin> |
182 | | - <plugin> |
183 | | - <groupId>org.apache.maven.plugins</groupId> |
184 | | - <artifactId>maven-release-plugin</artifactId> |
185 | | - <version>3.0.0-M4</version> |
186 | | - <configuration> |
187 | | - <preparationGoals>resources:copy-resources@readme scm:add -Dincludes=README.md</preparationGoals> |
188 | | - <completionGoals>resources:copy-resources@readme scm:add -Dincludes=README.md</completionGoals> |
189 | | - </configuration> |
190 | | - </plugin> |
191 | | - </plugins> |
| 192 | + <plugin> |
| 193 | + <groupId>org.apache.maven.plugins</groupId> |
| 194 | + <artifactId>maven-resources-plugin</artifactId> |
| 195 | + <version>3.0.1</version> |
| 196 | + <executions> |
| 197 | + <execution> |
| 198 | + <id>readme</id> |
| 199 | + <phase>none</phase> |
| 200 | + <goals> |
| 201 | + <goal>copy-resources</goal> |
| 202 | + </goals> |
| 203 | + <configuration> |
| 204 | + <outputDirectory>${project.basedir}</outputDirectory> |
| 205 | + <resources> |
| 206 | + <resource> |
| 207 | + <directory>src/main/doc</directory> |
| 208 | + <includes> |
| 209 | + <include>README.md</include> |
| 210 | + </includes> |
| 211 | + <filtering>true</filtering> |
| 212 | + </resource> |
| 213 | + </resources> |
| 214 | + <encoding>UTF-8</encoding> |
| 215 | + </configuration> |
| 216 | + </execution> |
| 217 | + </executions> |
| 218 | + </plugin> |
| 219 | + <plugin> |
| 220 | + <groupId>org.apache.maven.plugins</groupId> |
| 221 | + <artifactId>maven-release-plugin</artifactId> |
| 222 | + <version>3.0.0-M4</version> |
| 223 | + <configuration> |
| 224 | + <preparationGoals>resources:copy-resources@readme scm:add |
| 225 | + -Dincludes=README.md</preparationGoals> |
| 226 | + <completionGoals>resources:copy-resources@readme scm:add |
| 227 | + -Dincludes=README.md</completionGoals> |
| 228 | + </configuration> |
| 229 | + </plugin> |
| 230 | + </plugins> |
192 | 231 | </build> |
193 | 232 | </project> |
0 commit comments