<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.baeldung.maven.plugin</groupId> <artifactId>host-maven-repo-example</artifactId> <version>1.0-SNAPSHOT</version> <url>https://github.com/${repository-owner}/${repository-name}.git</url> <scm> <url>https://github.com/${repository-owner}/${repository-name}.git</url> <connection>scm:git:git@github.com:${repository-owner}/${repository-name}.git</connection> <developerConnection>scm:git:git@github.com:${repository-owner}/${repository-name}.git</developerConnection> </scm> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>com.github.github</groupId> <artifactId>site-maven-plugin</artifactId> <version>0.12</version> <configuration> <message>Maven artifacts for ${project.version}</message> <noJekyll>true</noJekyll> <outputDirectory>${project.build.directory}</outputDirectory> <branch>refs/heads/${branch-name}</branch> <includes> <include>**/*</include> </includes> <merge>true</merge> <repositoryName>${repository-name}</repositoryName> <repositoryOwner>${repository-owner}</repositoryOwner> <server>github</server> </configuration> <executions> <execution> <goals> <goal>site</goal> </goals> <phase>deploy</phase> </execution> </executions> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.2</version> <configuration> <altDeploymentRepository> internal.repo::default::file://${project.build.directory}/mvn-artifact </altDeploymentRepository> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <repositories> <repository> <id>PROJECT-REPO-URL</id> <url>https://github.com/${repository-owner}/${repository-name}/${branch-name}</url> <snapshots> <enabled>true</enabled> <updatePolicy>always</updatePolicy> </snapshots> </repository> </repositories> <distributionManagement> <repository> <id>internal.repo</id> <name>Temporary Staging Repository</name> <url>file://${project.build.directory}/mvn-artifact</url> </repository> </distributionManagement> <properties> <!--Put your own properties --> <repository-owner>Put-repo-owner</repository-owner> <repository-name>Put-repository-name</repository-name> <branch-name>Put-branch-name</branch-name> <github.global.server>github</github.global.server> <maven.compiler.source>8</maven.compiler.source> <maven.compiler.target>8</maven.compiler.target> </properties> </project>