Используйте github для создания собственной библиотеки maven.

Java maven

Для публикации рекомендуется использовать центральный репозиторий maven, но я думаю, что шаги слишком громоздки и нуждаются в проверке, поэтому я использую для этого github. Публикация центрального склада может относиться кMaven публикует собственный проект в центральном репозитории Maven.

Есть два вида использования github, один из нихmvn installилиdeployна локальный путь, затем后git add && commit && push, одинmaven-plugins

Для обоих решений необходимо создать соответствующий репозиторий на github.О конкретных этапах создания говорить особо нечего, просто Baidu.

1. maven-plugins

Ссылаться наstackoverflow.com/a/14013645

1. Изменить~/.m2/settings.xml

<!-- NOTE: MAKE SURE THAT settings.xml IS NOT WORLD READABLE! -->
<settings>
  <servers>
    <server>
      <id>github</id>
      <username>YOUR-USERNAME</username>
      <password>YOUR-PASSWORD</password>
    </server>
  </servers>
</settings>

2. Измените pom.xml

<properties>
    <!-- github server corresponds to entry in ~/.m2/settings.xml -->
    <github.global.server>github</github.global.server>
</properties>

<distributionManagement>
    <repository>
        <id>internal.repo</id>
        <name>Temporary Staging Repository</name>
        <url>file://${project.build.directory}/mvn-repo</url>
    </repository>
</distributionManagement>

	<build>
		<plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-deploy-plugin</artifactId>
                <version>2.8.2</version>
                <configuration>
                    <altDeploymentRepository>internal.repo::default::file://${project.build.directory}/mvn-repo</altDeploymentRepository>
                </configuration>
            </plugin>
		</plugins>
	</build>

3. Измените pom.xml и настройте maven-плагины.

<build>
    <plugins>
        <plugin>
            <groupId>com.github.github</groupId>
            <artifactId>site-maven-plugin</artifactId>
            <version>0.12</version>
            <configuration>
                <message>Maven artifacts for ${project.version}</message>  <!-- git commit message -->
                <noJekyll>true</noJekyll>                                  <!-- disable webpage processing -->
                <outputDirectory>${project.build.directory}/mvn-repo</outputDirectory> <!-- matches distribution management repository url above -->
                <branch>refs/heads/master</branch>                       <!-- remote branch name -->
                <includes><include>**/*</include></includes>
                <repositoryName>YOUR-REPOSITORY-NAME</repositoryName>      <!-- github repo name -->
                <repositoryOwner>YOUR-GITHUB-USERNAME</repositoryOwner>    <!-- github username  -->
                <force>false</force> <!-- force commit or no -->
                <merge>true</merge> <!-- merge or no -->
            </configuration>
            <executions>
              <!-- run site-maven-plugin's 'site' target as part of the build's normal 'deploy' phase -->
              <execution>
                <goals>
                  <goal>site</goal>
                </goals>
                <phase>deploy</phase>
              </execution>
            </executions>
        </plugin>
    </plugins>
</build>

4. Отправить на гитхаб

mvn clean deploy

2. mvn deploy && git add && commit && push

Ссылаться наblog.CSDN.net/U010442302/…

1.clone github repo

git clone https://github.com/YOUR-USERNAME/YOUR-PROJECT-NAME /home/my/code/maven-repo/

2. Выполните развертывание mvn из командной строки.

mvn deploy -DaltDeploymentRepository=my-mvn-repo::default::file:/home/my/code/maven-repo/

3. нажать на гитхаб

cd /home/my/code/maven-repo/
git add .
git commit -m 'Maven artifacts for 0.0.1'
git push -u origin master

3. Используйте репозиторий github в своем проекте

<repositories>
    <repository>
        <id>YOUR-PROJECT-NAME-mvn-repo</id>
        <url>https://raw.githubusercontent.com/YOUR-USERNAME/YOUR-PROJECT-NAME/master/</url>
        <snapshots>
            <enabled>true</enabled>
            <updatePolicy>always</updatePolicy>
        </snapshots>
    </repository>
</repositories>

Суммировать

Если вы можете изменить pom, рекомендуется использовать maven-плагины, если вы не можете изменить pom, используйте командную строкуmvn deploy&&git add&&commit&&push