|
9 | 9 |
|
10 | 10 | <name>PostGIS Java Project</name> |
11 | 11 | <description>Aggregates java projects associated with the PostGIS project.</description> |
12 | | - <url>http://postgis.net</url> |
| 12 | + <url>https://postgis.net</url> |
13 | 13 | <licenses> |
14 | 14 | <license> |
15 | 15 | <name>GNU Lesser General Public License</name> |
16 | | - <url>http://www.gnu.org/licenses/lgpl-2.1.txt</url> |
| 16 | + <url>https://www.gnu.org/licenses/lgpl-2.1.txt</url> |
17 | 17 | <distribution>repo</distribution> |
18 | 18 | </license> |
19 | 19 | </licenses> |
20 | 20 |
|
21 | 21 | <developers> |
22 | 22 | <developer> |
23 | 23 | <name>PostGIS Development Team</name> |
24 | | - <url>http://postgis.net</url> |
| 24 | + <url>https://postgis.net</url> |
25 | 25 | </developer> |
26 | 26 | <developer> |
27 | 27 | <name>Phillip Ross</name> |
|
35 | 35 | <contributor> |
36 | 36 | <name>Hakan Tandogan</name> |
37 | 37 | |
38 | | - <url>http://www.gurkensalat.com/</url> |
| 38 | + <url>https://www.gurkensalat.com/</url> |
39 | 39 | <roles> |
40 | 40 | <role>Maven Packager</role> |
41 | 41 | </roles> |
42 | 42 | </contributor> |
43 | 43 | <contributor> |
44 | 44 | <name>Baris Ergun</name> |
45 | 45 | |
46 | | - <url>http://www.barisergun.com/</url> |
47 | 46 | <roles> |
48 | 47 | <role>Maven Packager</role> |
49 | 48 | </roles> |
|
56 | 55 | < subscribe> [email protected]</ subscribe> |
57 | 56 | < unsubscribe> [email protected]</ unsubscribe> |
58 | 57 | |
59 | | - <archive>http://lists.osgeo.org/pipermail/postgis-users/</archive> |
| 58 | + <archive>https://lists.osgeo.org/pipermail/postgis-users/</archive> |
60 | 59 | </mailingList> |
61 | 60 | <mailingList> |
62 | 61 | <name>Developer List</name> |
63 | 62 | < subscribe> [email protected]</ subscribe> |
64 | 63 | < unsubscribe> [email protected]</ unsubscribe> |
65 | 64 | |
66 | | - <archive>http://lists.osgeo.org/pipermail/postgis-devel/</archive> |
| 65 | + <archive>https://lists.osgeo.org/pipermail/postgis-devel/</archive> |
67 | 66 | </mailingList> |
68 | 67 | </mailingLists> |
69 | 68 |
|
|
88 | 87 | <distributionManagement> |
89 | 88 | <site> |
90 | 89 | <id>local-staging-site</id> |
91 | | - <url>http://local-staging/</url> |
| 90 | + <url>https://local-staging/</url> |
92 | 91 | </site> |
93 | 92 | </distributionManagement> |
94 | 93 |
|
|
462 | 461 | <autoVersionSubmodules>true</autoVersionSubmodules> |
463 | 462 | <localCheckout>true</localCheckout> |
464 | 463 | <pushChanges>false</pushChanges> |
465 | | - <releaseProfiles>release-sign-artifacts,sonatype-deployment</releaseProfiles> |
| 464 | + <releaseProfiles>release-sign-artifacts,sonatype-central-portal-deployment</releaseProfiles> |
466 | 465 | </configuration> |
467 | 466 | </plugin> |
468 | 467 | <plugin> |
|
860 | 859 | </build> |
861 | 860 | </profile> |
862 | 861 | <!-- |
863 | | - The release-sign-artifacts and sonatype deployment profiles only need activated when pushing snapshots or |
864 | | - releases to maven central. When enabled, additional artifacts will be generated for javadoc and source as well |
865 | | - as GPG signatures for each artifact. This profiles assume that the properties for the gpg plugin |
866 | | - (such as gpg.keyname and gpg.passphrase are either defined in a settings.xml file or similar facility. |
| 862 | + The release-sign-artifacts and sonatype-central-portal-deployment profiles only need activated when pushing |
| 863 | + snapshots or releases to maven central. When enabled, additional artifacts will be generated for javadoc and |
| 864 | + source as well as GPG signatures for each artifact. These profiles assume that the properties for the gpg |
| 865 | + plugin (such as gpg.keyname and gpg.passphrase) are either defined in a settings.xml file or similar facility. |
867 | 866 | --> |
868 | 867 | <profile> |
869 | 868 | <id>release-sign-artifacts</id> |
|
910 | 909 | </build> |
911 | 910 | </profile> |
912 | 911 | <profile> |
913 | | - <id>sonatype-deployment</id> |
914 | | - <distributionManagement> |
915 | | - <snapshotRepository> |
916 | | - <id>ossrh</id> |
917 | | - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
918 | | - </snapshotRepository> |
919 | | - <repository> |
920 | | - <id>ossrh</id> |
921 | | - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
922 | | - </repository> |
923 | | - </distributionManagement> |
| 912 | + <id>sonatype-central-portal-deployment</id> |
| 913 | + <properties> |
| 914 | + <central-publishing-maven-plugin.version>0.7.0</central-publishing-maven-plugin.version> |
| 915 | + </properties> |
| 916 | + <build> |
| 917 | + <pluginManagement> |
| 918 | + <plugins> |
| 919 | + <plugin> |
| 920 | + <groupId>org.sonatype.central</groupId> |
| 921 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 922 | + <version>${central-publishing-maven-plugin.version}</version> |
| 923 | + <extensions>true</extensions> |
| 924 | + <configuration> |
| 925 | + <!-- publishing server id refers to <id> element in <server> section of settings.xml --> |
| 926 | + <publishingServerId>sonatype-central-portal</publishingServerId> |
| 927 | + </configuration> |
| 928 | + </plugin> |
| 929 | + </plugins> |
| 930 | + </pluginManagement> |
| 931 | + <plugins> |
| 932 | + <plugin> |
| 933 | + <groupId>org.sonatype.central</groupId> |
| 934 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 935 | + </plugin> |
| 936 | + </plugins> |
| 937 | + </build> |
924 | 938 | </profile> |
925 | 939 |
|
926 | 940 | <profile> |
|
0 commit comments