|
1 |
| -<dependencies> |
2 |
| - <dependency> |
3 |
| - <groupId>org.junit.jupiter</groupId> |
4 |
| - <artifactId>junit-jupiter</artifactId> |
5 |
| - <version>5.11.2</version> |
6 |
| - <scope>test</scope> |
7 |
| - </dependency> |
8 |
| - <dependency> |
9 |
| - <groupId>org.junit.jupiter</groupId> |
10 |
| - <artifactId>junit-jupiter-engine</artifactId> |
11 |
| - <version>5.11.2</version> |
12 |
| - <scope>test</scope> |
13 |
| - </dependency> |
14 |
| - <dependency> |
15 |
| - <groupId>org.apache.commons</groupId> |
16 |
| - <artifactId>commons-lang3</artifactId> |
17 |
| - <version>3.12.0</version> |
18 |
| - </dependency> |
19 |
| - <dependency> |
20 |
| - <groupId>org.assertj</groupId> |
21 |
| - <artifactId>assertj-core</artifactId> |
22 |
| - <version>3.21.0</version> |
23 |
| - <scope>test</scope> |
24 |
| - </dependency> |
25 |
| -</dependencies> |
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 2 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
26 | 5 |
|
27 |
| -<build> |
28 |
| - <plugins> |
29 |
| - <plugin> |
30 |
| - <groupId>org.apache.maven.plugins</groupId> |
31 |
| - <artifactId>maven-compiler-plugin</artifactId> |
32 |
| - <version>3.10.1</version> |
33 |
| - <configuration> |
34 |
| - <source>21</source> |
35 |
| - <target>21</target> |
36 |
| - <compilerArgs> |
37 |
| - <arg>-Xlint:unchecked</arg> |
38 |
| - </compilerArgs> |
39 |
| - </configuration> |
40 |
| - </plugin> |
41 |
| - <plugin> |
42 |
| - <groupId>org.apache.maven.plugins</groupId> |
43 |
| - <artifactId>maven-surefire-plugin</artifactId> |
44 |
| - <version>3.5.1</version> |
45 |
| - <configuration> |
46 |
| - <forkNode implementation="org.apache.maven.plugin.surefire.extensions.SurefireForkNodeFactory"/> |
47 |
| - </configuration> |
48 |
| - </plugin> |
49 |
| - <plugin> |
50 |
| - <groupId>org.jacoco</groupId> |
51 |
| - <artifactId>jacoco-maven-plugin</artifactId> |
52 |
| - <version>0.8.8</version> |
53 |
| - <executions> |
54 |
| - <execution> |
55 |
| - <goals> |
56 |
| - <goal>prepare-agent</goal> |
57 |
| - </goals> |
58 |
| - </execution> |
59 |
| - <execution> |
60 |
| - <id>report</id> |
61 |
| - <phase>test</phase> |
62 |
| - <goals> |
63 |
| - <goal>report</goal> |
64 |
| - </goals> |
65 |
| - </execution> |
66 |
| - </executions> |
67 |
| - </plugin> |
68 |
| - <plugin> |
69 |
| - <groupId>org.apache.maven.plugins</groupId> |
70 |
| - <artifactId>maven-checkstyle-plugin</artifactId> |
71 |
| - <version>3.1.2</version> |
72 |
| - <dependencies> |
73 |
| - <dependency> |
74 |
| - <groupId>com.puppycrawl.tools</groupId> |
75 |
| - <artifactId>checkstyle</artifactId> |
76 |
| - <version>10.18.2</version> |
77 |
| - </dependency> |
78 |
| - </dependencies> |
79 |
| - </plugin> |
80 |
| - </plugins> |
81 |
| -</build> |
| 6 | + <groupId>com.thealgorithms</groupId> |
| 7 | + <artifactId>Java</artifactId> |
| 8 | + <version>1.0-SNAPSHOT</version> |
| 9 | + |
| 10 | + <dependencies> |
| 11 | + <dependency> |
| 12 | + <groupId>org.junit.jupiter</groupId> |
| 13 | + <artifactId>junit-jupiter</artifactId> |
| 14 | + <version>5.11.2</version> |
| 15 | + <scope>test</scope> |
| 16 | + </dependency> |
| 17 | + <dependency> |
| 18 | + <groupId>org.junit.jupiter</groupId> |
| 19 | + <artifactId>junit-jupiter-engine</artifactId> |
| 20 | + <version>5.11.2</version> |
| 21 | + <scope>test</scope> |
| 22 | + </dependency> |
| 23 | + <dependency> |
| 24 | + <groupId>org.apache.commons</groupId> |
| 25 | + <artifactId>commons-lang3</artifactId> |
| 26 | + <version>3.12.0</version> |
| 27 | + </dependency> |
| 28 | + <dependency> |
| 29 | + <groupId>org.assertj</groupId> |
| 30 | + <artifactId>assertj-core</artifactId> |
| 31 | + <version>3.21.0</version> |
| 32 | + <scope>test</scope> |
| 33 | + </dependency> |
| 34 | + </dependencies> |
| 35 | + |
| 36 | + <build> |
| 37 | + <plugins> |
| 38 | + <plugin> |
| 39 | + <groupId>org.apache.maven.plugins</groupId> |
| 40 | + <artifactId>maven-compiler-plugin</artifactId> |
| 41 | + <version>3.10.1</version> |
| 42 | + <configuration> |
| 43 | + <source>21</source> |
| 44 | + <target>21</target> |
| 45 | + <compilerArgs> |
| 46 | + <arg>-Xlint:unchecked</arg> |
| 47 | + </compilerArgs> |
| 48 | + </configuration> |
| 49 | + </plugin> |
| 50 | + <plugin> |
| 51 | + <groupId>org.apache.maven.plugins</groupId> |
| 52 | + <artifactId>maven-surefire-plugin</artifactId> |
| 53 | + <version>3.5.1</version> |
| 54 | + <configuration> |
| 55 | + <forkNode implementation="org.apache.maven.plugin.surefire.extensions.SurefireForkNodeFactory"/> |
| 56 | + </configuration> |
| 57 | + </plugin> |
| 58 | + <plugin> |
| 59 | + <groupId>org.jacoco</groupId> |
| 60 | + <artifactId>jacoco-maven-plugin</artifactId> |
| 61 | + <version>0.8.8</version> |
| 62 | + <executions> |
| 63 | + <execution> |
| 64 | + <goals> |
| 65 | + <goal>prepare-agent</goal> |
| 66 | + </goals> |
| 67 | + </execution> |
| 68 | + <execution> |
| 69 | + <id>report</id> |
| 70 | + <phase>test</phase> |
| 71 | + <goals> |
| 72 | + <goal>report</goal> |
| 73 | + </goals> |
| 74 | + </execution> |
| 75 | + </executions> |
| 76 | + </plugin> |
| 77 | + <plugin> |
| 78 | + <groupId>org.apache.maven.plugins</groupId> |
| 79 | + <artifactId>maven-checkstyle-plugin</artifactId> |
| 80 | + <version>3.1.2</version> |
| 81 | + <dependencies> |
| 82 | + <dependency> |
| 83 | + <groupId>com.puppycrawl.tools</groupId> |
| 84 | + <artifactId>checkstyle</artifactId> |
| 85 | + <version>10.18.2</version> |
| 86 | + </dependency> |
| 87 | + </dependencies> |
| 88 | + </plugin> |
| 89 | + </plugins> |
| 90 | + </build> |
| 91 | +</project> |
0 commit comments