123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- <?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.anas.alqurancloudapi</groupId>
- <artifactId>alquran-cloud-api</artifactId>
- <version>0.2.0-v1</version>
- <packaging>jar</packaging>
- <name>alquran-cloud-api</name>
- <description>A simple java wrapper library for alquran-cloud api</description>
- <url>https://github.com/anas-elgarhy/alquran-cloud-api</url>
- <distributionManagement>
- <repository>
- <id>github</id>
- <name>GitHub Anas Elgarhy Apache Maven Packages</name>
- <url>https://maven.pkg.github.com/${repository-owner}/${repository-name}</url>
- </repository>
- </distributionManagement>
- <licenses>
- <license>
- <name>GNU General Public License v3.0</name>
- <url>https://www.gnu.org/licenses/gpl-3.0.txt</url>
- <distribution>repo</distribution>
- </license>
- </licenses>
- <scm>
- <url>https://svn.apache.org/viewvc/maven</url>
- </scm>
- <dependencies>
- <dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-databind</artifactId>
- <version>2.13.3</version>
- </dependency>
- </dependencies>
- <build>
- <pluginManagement>
- <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-->
- <!-- online.repo::default::https://maven.pkg.github.com/${repository-owner}/${repository-name}-->
- <!-- </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>
- </pluginManagement>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>10</source>
- <target>10</target>
- </configuration>
- </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>
- <properties>
- <repository-owner>anas-elgarhy</repository-owner>
- <repository-name>alquran-cloud-api</repository-name>
- <branch-name>master</branch-name>
- <github.global.server>github</github.global.server>
- <maven.compiler.source>17</maven.compiler.source>
- <maven.compiler.target>17</maven.compiler.target>
- </properties>
- </project>
|