|
3 | 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
|
4 | 4 | http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
5 | 5 | <modelVersion>4.0.0</modelVersion>
|
6 |
| - <groupId>crosby.binary</groupId> |
| 6 | + <groupId>org.openstreetmap.pbf</groupId> |
7 | 7 | <artifactId>osmpbf</artifactId>
|
8 | 8 | <packaging>jar</packaging>
|
9 | 9 | <version>1.4.0</version>
|
10 | 10 | <name>OSM-Binary</name>
|
11 | 11 | <description>Library for the OpenStreetMap PBF format</description>
|
12 |
| - <url>https://github.com/scrosby/OSM-binary</url> |
| 12 | + <url>https://github.com/openstreetmap/OSM-binary</url> |
13 | 13 | <licenses>
|
14 | 14 | <license>
|
15 | 15 | <name>GNU General Lesser Public License (LGPL) version 3.0</name>
|
|
18 | 18 | </license>
|
19 | 19 | </licenses>
|
20 | 20 | <scm>
|
21 |
| - <url>https://github.com/scrosby/OSM-binary</url> |
22 |
| - <connection>https://github.com/scrosby/OSM-binary.git</connection> |
| 21 | + <url>https://github.com/openstreetmap/OSM-binary</url> |
| 22 | + <connection>https://github.com/openstreetmap/OSM-binary.git</connection> |
23 | 23 | </scm>
|
| 24 | + <developers> |
| 25 | + <developer> |
| 26 | + <id>osm-dev</id> |
| 27 | + <name>OpenStreetMap developers</name> |
| 28 | + <email>dev@openstreetmap.org</email> |
| 29 | + </developer> |
| 30 | + </developers> |
24 | 31 |
|
25 | 32 | <properties>
|
26 | 33 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
67 | 74 | </execution>
|
68 | 75 | </executions>
|
69 | 76 | </plugin>
|
| 77 | + |
| 78 | + <plugin> |
| 79 | + <groupId>org.apache.maven.plugins</groupId> |
| 80 | + <artifactId>maven-source-plugin</artifactId> |
| 81 | + <version>3.2.0</version> |
| 82 | + <executions> |
| 83 | + <execution> |
| 84 | + <id>attach-sources</id> |
| 85 | + <goals> |
| 86 | + <goal>jar-no-fork</goal> |
| 87 | + </goals> |
| 88 | + </execution> |
| 89 | + </executions> |
| 90 | + </plugin> |
| 91 | + <plugin> |
| 92 | + <groupId>org.apache.maven.plugins</groupId> |
| 93 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 94 | + <version>3.2.0</version> |
| 95 | + <configuration> |
| 96 | + <failOnError>false</failOnError> |
| 97 | + </configuration> |
| 98 | + <executions> |
| 99 | + <execution> |
| 100 | + <id>attach-javadocs</id> |
| 101 | + <goals> |
| 102 | + <goal>jar</goal> |
| 103 | + </goals> |
| 104 | + </execution> |
| 105 | + </executions> |
| 106 | + </plugin> |
| 107 | + <plugin> |
| 108 | + <groupId>org.apache.maven.plugins</groupId> |
| 109 | + <artifactId>maven-gpg-plugin</artifactId> |
| 110 | + <version>1.6</version> |
| 111 | + <executions> |
| 112 | + <execution> |
| 113 | + <id>sign-artifacts</id> |
| 114 | + <phase>verify</phase> |
| 115 | + <goals> |
| 116 | + <goal>sign</goal> |
| 117 | + </goals> |
| 118 | + </execution> |
| 119 | + </executions> |
| 120 | + </plugin> |
70 | 121 | </plugins>
|
71 | 122 | </build>
|
72 | 123 |
|
|
91 | 142 | <version>3.13.0</version>
|
92 | 143 | </dependency>
|
93 | 144 | </dependencies>
|
| 145 | + |
| 146 | + <distributionManagement> |
| 147 | + <repository> |
| 148 | + <id>ossrh</id> |
| 149 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> |
| 150 | + </repository> |
| 151 | + <snapshotRepository> |
| 152 | + <id>ossrh</id> |
| 153 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 154 | + </snapshotRepository> |
| 155 | + </distributionManagement> |
| 156 | + |
94 | 157 | </project>
|
0 commit comments