mirror of
https://codeberg.org/forgejo/docs.git
synced 2024-12-01 19:17:12 -05:00
107 lines
3 KiB
Markdown
107 lines
3 KiB
Markdown
---
|
|
layout: '~/layouts/Markdown.astro'
|
|
title: 'Maven Packages Repository'
|
|
license: 'Apache-2.0'
|
|
origin_url: 'https://github.com/go-gitea/gitea/blob/699f20234b9f7cdbbeeee3be004470c598fa1147/docs/content/doc/packages/maven.en-us.md'
|
|
---
|
|
|
|
Publish [Maven](https://maven.apache.org) packages for your user or organization.
|
|
|
|
## Requirements
|
|
|
|
To work with the Maven package registry, you can use [Maven](https://maven.apache.org/install.html) or [Gradle](https://gradle.org/install/).
|
|
The following examples use `Maven`.
|
|
|
|
## Configuring the package registry
|
|
|
|
To register the package registry you first need to add your access token to the [`settings.xml`](https://maven.apache.org/settings.html) file:
|
|
|
|
```xml
|
|
<settings>
|
|
<servers>
|
|
<server>
|
|
<id>forgejo</id>
|
|
<configuration>
|
|
<httpHeaders>
|
|
<property>
|
|
<name>Authorization</name>
|
|
<value>token {access_token}</value>
|
|
</property>
|
|
</httpHeaders>
|
|
</configuration>
|
|
</server>
|
|
</servers>
|
|
</settings>
|
|
```
|
|
|
|
Afterwards add the following sections to your project `pom.xml` file:
|
|
|
|
```xml
|
|
<repositories>
|
|
<repository>
|
|
<id>forgejo</id>
|
|
<url>https://forgejo.example.com/api/packages/{owner}/maven</url>
|
|
</repository>
|
|
</repositories>
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>forgejo</id>
|
|
<url>https://forgejo.example.com/api/packages/{owner}/maven</url>
|
|
</repository>
|
|
<snapshotRepository>
|
|
<id>forgejo</id>
|
|
<url>https://forgejo.example.com/api/packages/{owner}/maven</url>
|
|
</snapshotRepository>
|
|
</distributionManagement>
|
|
```
|
|
|
|
| Parameter | Description |
|
|
| -------------- | ------------------------------------------------------------------------------------------------ |
|
|
| `access_token` | Your [personal access token]({{< relref "doc/developers/api-usage.en-us.md#authentication" >}}). |
|
|
| `owner` | The owner of the package. |
|
|
|
|
## Publish a package
|
|
|
|
To publish a package simply run:
|
|
|
|
```shell
|
|
mvn deploy
|
|
```
|
|
|
|
If you want to publish a prebuild package to the registry, you can use [`mvn deploy:deploy-file`](https://maven.apache.org/plugins/maven-deploy-plugin/deploy-file-mojo.html):
|
|
|
|
```shell
|
|
mvn deploy:deploy-file -Durl=https://forgejo.example.com/api/packages/{owner}/maven -DrepositoryId=forgejo -Dfile=/path/to/package.jar
|
|
```
|
|
|
|
| Parameter | Description |
|
|
| --------- | ------------------------- |
|
|
| `owner` | The owner of the package. |
|
|
|
|
You cannot publish a package if a package of the same name and version already exists. You must delete the existing package first.
|
|
|
|
## Install a package
|
|
|
|
To install a Maven package from the package registry, add a new dependency to your project `pom.xml` file:
|
|
|
|
```xml
|
|
<dependency>
|
|
<groupId>com.test.package</groupId>
|
|
<artifactId>test_project</artifactId>
|
|
<version>1.0.0</version>
|
|
</dependency>
|
|
```
|
|
|
|
Afterwards run:
|
|
|
|
```shell
|
|
mvn install
|
|
```
|
|
|
|
## Supported commands
|
|
|
|
```
|
|
mvn install
|
|
mvn deploy
|
|
mvn dependency:get:
|
|
```
|