|
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/maven-v4_0_0.xsd"> |
| 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 https://maven.apache.org/maven-v4_0_0.xsd"> |
2 | 3 | <modelVersion>4.0.0</modelVersion> |
3 | 4 | <groupId>net.datafaker</groupId> |
4 | 5 | <artifactId>datafaker</artifactId> |
5 | 6 | <packaging>jar</packaging> |
6 | 7 | <version>2.4.3-SNAPSHOT</version> |
7 | 8 | <name>Datafaker</name> |
8 | 9 | <description> |
9 | | - This library is an improved fork of JavaFaker (as well as Ruby's stympy/faker gem and Perl's Data::Faker library) |
10 | | - that generates fake data. It's useful when you're developing a new project and need some pretty data for showcase. |
| 10 | + This library is an improved fork of JavaFaker (as well as Ruby's stympy/faker gem and Perl's Data::Faker |
| 11 | + library) |
| 12 | + that generates fake data. It's useful when you're developing a new project and need some pretty data for |
| 13 | + showcase. |
11 | 14 | </description> |
12 | 15 | <url>https://www.datafaker.net</url> |
13 | 16 | <developers> |
|
176 | 179 | <scope>test</scope> |
177 | 180 | </dependency> |
178 | 181 | </dependencies> |
179 | | - <distributionManagement> |
180 | | - <snapshotRepository> |
181 | | - <id>ossrh</id> |
182 | | - <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
183 | | - </snapshotRepository> |
184 | | - <repository> |
185 | | - <id>ossrh</id> |
186 | | - <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
187 | | - </repository> |
188 | | - </distributionManagement> |
189 | 182 | <build> |
190 | 183 | <pluginManagement> |
191 | 184 | <plugins> |
|
214 | 207 | </plugins> |
215 | 208 | </pluginManagement> |
216 | 209 | <plugins> |
| 210 | + <plugin> |
| 211 | + <groupId>org.sonatype.central</groupId> |
| 212 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 213 | + <version>0.8.0</version> |
| 214 | + <extensions>true</extensions> |
| 215 | + <configuration> |
| 216 | + <publishingServerId>central</publishingServerId> |
| 217 | + </configuration> |
| 218 | + </plugin> |
217 | 219 | <plugin> |
218 | 220 | <groupId>org.apache.maven.plugins</groupId> |
219 | 221 | <artifactId>maven-enforcer-plugin</artifactId> |
|
240 | 242 | <version>${spotless-maven-plugin.version}</version> |
241 | 243 | <configuration> |
242 | 244 | <java> |
243 | | - <removeUnusedImports /> |
| 245 | + <removeUnusedImports/> |
244 | 246 | </java> |
245 | 247 | <yaml> |
246 | | - <includes> |
247 | | - <include>src/main/resources/en/**/*.yml</include> |
248 | | - <include>src/test/resources/**/*.yml</include> |
249 | | - </includes> |
250 | | - <jackson> |
251 | | - <features> |
252 | | - <ORDER_MAP_ENTRIES_BY_KEYS>true</ORDER_MAP_ENTRIES_BY_KEYS> |
253 | | - </features> |
254 | | - <yamlFeatures> |
255 | | - <WRITE_DOC_START_MARKER>false</WRITE_DOC_START_MARKER> |
256 | | - <SPLIT_LINES>false</SPLIT_LINES> |
257 | | - </yamlFeatures> |
258 | | - </jackson> |
| 248 | + <includes> |
| 249 | + <include>src/main/resources/en/**/*.yml</include> |
| 250 | + <include>src/test/resources/**/*.yml</include> |
| 251 | + </includes> |
| 252 | + <jackson> |
| 253 | + <features> |
| 254 | + <ORDER_MAP_ENTRIES_BY_KEYS>true</ORDER_MAP_ENTRIES_BY_KEYS> |
| 255 | + </features> |
| 256 | + <yamlFeatures> |
| 257 | + <WRITE_DOC_START_MARKER>false</WRITE_DOC_START_MARKER> |
| 258 | + <SPLIT_LINES>false</SPLIT_LINES> |
| 259 | + </yamlFeatures> |
| 260 | + </jackson> |
259 | 261 | </yaml> |
260 | 262 | </configuration> |
261 | 263 | <executions> |
|
358 | 360 | </execution> |
359 | 361 | </executions> |
360 | 362 | </plugin> |
361 | | - <plugin> |
362 | | - <groupId>org.sonatype.plugins</groupId> |
363 | | - <artifactId>nexus-staging-maven-plugin</artifactId> |
364 | | - <version>${nexus-staging-maven-plugin.version}</version> |
365 | | - <extensions>true</extensions> |
366 | | - <configuration> |
367 | | - <serverId>ossrh</serverId> |
368 | | - <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> |
369 | | - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
370 | | - </configuration> |
371 | | - </plugin> |
372 | 363 | <!-- Attaching source to comply OSSRH --> |
373 | 364 | <plugin> |
374 | 365 | <groupId>org.apache.maven.plugins</groupId> |
|
0 commit comments