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