|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | + |
| 3 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 4 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 5 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 6 | + <modelVersion>4.0.0</modelVersion> |
| 7 | + |
| 8 | + <groupId>com.java8dsaproblems</groupId> |
| 9 | + <artifactId>java8dsa_problemSolutions</artifactId> |
| 10 | + <version>0.0.1-SNAPSHOT</version> |
| 11 | + <name>java8dsa_problemSolutions</name> |
| 12 | + <packaging>jar</packaging> |
| 13 | + <url>https://github.com/abhinay5993/DSA_Java8ProblemSolving</url> |
| 14 | + |
| 15 | + <distributionManagement> |
| 16 | + <repository> |
| 17 | + <id>github</id> |
| 18 | + <name>GitHub abhinay5993 DSA Problem Solving with Java8</name> |
| 19 | + <url>https://maven.pkg.github.com/abhinay5993/DSA_Java8ProblemSolving</url> |
| 20 | + </repository> |
| 21 | + </distributionManagement> |
| 22 | + |
| 23 | + <developers> |
| 24 | + <developer> |
| 25 | + <name>abhinay5993</name> |
| 26 | + <email>abhinaylunawat5993@gmail.com</email> |
| 27 | + <organizationUrl>https://github.com/abhinay5993/DSA_Java8ProblemSolving</organizationUrl> |
| 28 | + </developer> |
| 29 | + </developers> |
| 30 | + |
| 31 | + <scm> |
| 32 | + <connection>scm:git:git://github.com/abhinay5993/DSA_Java8ProblemSolving.git</connection> |
| 33 | + <developerConnection>scm:git:https://github.com/abhinay5993/DSA_Java8ProblemSolving.git</developerConnection> |
| 34 | + <url>https://github.com/abhinay5993/DSA_Java8ProblemSolving</url> |
| 35 | + <tag>DSA_with_Java8</tag> |
| 36 | + </scm> |
| 37 | + |
| 38 | + <properties> |
| 39 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 40 | + <maven.compiler.source>21</maven.compiler.source> |
| 41 | + <maven.compiler.target>21</maven.compiler.target> |
| 42 | + </properties> |
| 43 | + |
| 44 | + <dependencies> |
| 45 | + <dependency> |
| 46 | + <groupId>org.testng</groupId> |
| 47 | + <artifactId>testng</artifactId> |
| 48 | + <version>7.8.0</version> |
| 49 | + </dependency> |
| 50 | + </dependencies> |
| 51 | + |
| 52 | + <build> |
| 53 | + <pluginManagement> |
| 54 | + <plugins> |
| 55 | + <plugin> |
| 56 | + <groupId>org.apache.maven.plugins</groupId> |
| 57 | + <artifactId>maven-plugin-plugin</artifactId> |
| 58 | + <version>3.6.0</version> |
| 59 | + <configuration> |
| 60 | + <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound> |
| 61 | + </configuration> |
| 62 | + </plugin> |
| 63 | + <plugin> |
| 64 | + <groupId>org.apache.maven.plugins</groupId> |
| 65 | + <artifactId>maven-site-plugin</artifactId> |
| 66 | + <version>3.9.1</version> |
| 67 | + </plugin> |
| 68 | + </plugins> |
| 69 | + </pluginManagement> |
| 70 | + <plugins> |
| 71 | + <plugin> |
| 72 | + <artifactId>maven-compiler-plugin</artifactId> |
| 73 | + <version>3.8.1</version> |
| 74 | + <configuration> |
| 75 | + <source>21</source> |
| 76 | + <target>21</target> |
| 77 | + <release>21</release> |
| 78 | + </configuration> |
| 79 | + </plugin> |
| 80 | + <plugin> |
| 81 | + <groupId>org.apache.maven.plugins</groupId> |
| 82 | + <artifactId>maven-surefire-plugin</artifactId> |
| 83 | + <version>2.22.1</version> |
| 84 | + <configuration> |
| 85 | + <includes> |
| 86 | + <include>**/*.java</include> |
| 87 | + <include>**/*Tests.java</include> |
| 88 | + </includes> |
| 89 | + <suiteXmlFiles> |
| 90 | + <defaultSuiteXmlFile>src/test/resources/testSuites/*.xml</defaultSuiteXmlFile> |
| 91 | + </suiteXmlFiles> |
| 92 | + </configuration> |
| 93 | + </plugin> |
| 94 | + <plugin> |
| 95 | + <groupId>org.apache.maven.plugins</groupId> |
| 96 | + <artifactId>maven-release-plugin</artifactId> |
| 97 | + <version>3.0.0-M1</version> |
| 98 | + </plugin> |
| 99 | + </plugins> |
| 100 | + </build> |
| 101 | +</project> |
0 commit comments