1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <?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>org.example</groupId>
- <artifactId>SearchEngine</artifactId>
- <version>1.0-SNAPSHOT</version>
- <properties>
- <maven.compiler.source>22.0.1</maven.compiler.source>
- <maven.compiler.target>22.0.1</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
- <maven.compiler.version>3.13.0</maven.compiler.version>
- <maven.surefire.version>3.2.5</maven.surefire.version>
- <puppycrawl.version>10.17.0</puppycrawl.version>
- <junit.platform.version>5.3.2</junit.platform.version>
- <checkstyle-maven-plugin.version>3.3.1</checkstyle-maven-plugin.version>
- <checkstyle.config.remote>
- https://notabug.org/Grigorii_Kuznetsov/dotfiles/raw/master/checks.xml
- </checkstyle.config.remote>
- </properties>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-checkstyle-plugin</artifactId>
- <version>${checkstyle-maven-plugin.version}</version>
- <configuration>
- <configLocation>checkstyle.xml</configLocation>
- <configLocation>${checkstyle.config.remote}</configLocation>
- <encoding>UTF-8</encoding>
- <consoleOutput>true</consoleOutput>
- <violationSeverity>warning</violationSeverity>
- <logViolationsToConsole>false</logViolationsToConsole>
- </configuration>
- <executions>
- <execution>
- <id>verify-style</id>
- <phase>validate</phase>
- <goals>
- <goal>check</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>${maven.compiler.version}</version>
- </plugin>
- <plugin>
- <artifactId>maven-surefire-plugin</artifactId>
- <version>${maven.surefire.version}</version>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>com.puppycrawl.tools</groupId>
- <artifactId>checkstyle</artifactId>
- <version>${puppycrawl.version}</version>
- </dependency>
- <dependency>
- <groupId>org.junit.jupiter</groupId>
- <artifactId>junit-jupiter-api</artifactId>
- <version>${junit.platform.version}</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.junit.jupiter</groupId>
- <artifactId>junit-jupiter-engine</artifactId>
- <version>${junit.platform.version}</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
- </project>
|