Я медленно понимаю, как публиковать sh пакеты в Git.
Мой проект называется HubspotContacts
Вот верхняя часть моего файла pom. xml:
<modelVersion>4.0.0</modelVersion> <groupId>Hubspot</groupId> <artifactId>Hubspot</artifactId> <version>0.0.1-SNAPSHOT</version>
Вот раздел управления распространением моего pom. xml file:
<distributionManagement> <repository> <id>dell_packages</id> <name>GitHub OWNER Apache Maven Packages</name> <url>https://github.com/dell_computers/HubspotContacts</url> </repository>
Вот мои настройки. xml file:
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> <activeProfiles> <activeProfile>hubspot</activeProfile> </activeProfiles> <profiles> <profile> <id>hubspot</id> <repositories> <repository> <id>central</id> <url>https://repo1.maven.org/maven2</url> <releases><enabled>true</enabled></releases> <snapshots><enabled>false</enabled></snapshots> </repository> <repository> <id>hubspot</id> <name>GitHub OWNER Apache Maven Packages</name> <url>https://maven.pkg.github.com/dell_computers/Hubspot</url> </repository> </repositories> </profile> </profiles> <servers> <server> <id>hubspot</id> <username>username</username> <password>long_token_string</password> </server> </servers> </settings>
Я получаю ошибку:
Ошибка передачи для https://github.com/dell_computers/Hubspot/Hubspot/ATSHubspotContacts/0.0.1-SNAPSHOT/ATSHubspotContacts-0.0.1-20200124.182801-1.jar 422 Необработанный объект
Может кто-то помогите с моим конфигом? Должен ли URL-адрес хранилища быть действительным. git конечный URL или что-то другое?