/
Nicholas
/
java_basics
Обзор
Документация
Войти
/
Nicholas
/
java_basics
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
StreamAPI/Airport/pom.xml
100 строк
4 KB
Skillbox
Add lesson
21 дек 2023, 20:44
21 дек 2023, 20:44
114efc0
Код
Авторство
О чём код?
<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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>ru.skillbox</groupId> <artifactId>LambdaExpressions-Airport</artifactId> <version>1.0-SNAPSHOT</version> <properties> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.target>17</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <checkstyle-maven-plugin.version>3.1.1</checkstyle-maven-plugin.version> <junit.platform.version>5.9.2</junit.platform.version> <assertj.platform.version>3.4.1</assertj.platform.version> <puppycrawl.version>8.34</puppycrawl.version> <checkstyle.config.remote> https://raw.githubusercontent.com/skillbox-java/checkstyle/master/checkstyle_M4.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> <!-- Use last available 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>3.8.1</version> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.2</version> </plugin> </plugins> </build> <dependencies> <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> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>${junit.platform.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>${assertj.platform.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.puppycrawl.tools</groupId> <artifactId>checkstyle</artifactId> <version>${puppycrawl.version}</version> </dependency> <dependency> <groupId>com.skillbox</groupId> <artifactId>airport</artifactId> <version>1.2</version> <scope>system</scope> <systemPath>${basedir}/lib/airport1.2.jar</systemPath> </dependency> </dependencies> </project>