/
NikolayIvkin
/
tutorials1
Обзор
Документация
Войти
/
NikolayIvkin
/
tutorials1
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
web-modules/restx/pom.xml
140 строк
5 KB
anuragkumawat
JAVA-38468 Fix references to parents (#17348)
18 авг 2024, 16:21
Не верифицирован
18 авг 2024, 16:21
618d605
Код
Авторство
О чём код?
<?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> <artifactId>restx</artifactId> <version>0.1-SNAPSHOT</version> <packaging>war</packaging> <name>restx</name> <parent> <groupId>com.baeldung</groupId> <artifactId>web-modules</artifactId> <version>1.0.0-SNAPSHOT</version> </parent> <dependencies> <dependency> <groupId>io.restx</groupId> <artifactId>restx-core</artifactId> <version>${restx.version}</version> </dependency> <dependency> <groupId>io.restx</groupId> <artifactId>restx-security-basic</artifactId> <version>${restx.version}</version> </dependency> <dependency> <groupId>io.restx</groupId> <artifactId>restx-core-annotation-processor</artifactId> <version>${restx.version}</version> </dependency> <dependency> <groupId>io.restx</groupId> <artifactId>restx-factory</artifactId> <version>${restx.version}</version> </dependency> <dependency> <groupId>io.restx</groupId> <artifactId>restx-factory-admin</artifactId> <version>${restx.version}</version> </dependency> <dependency> <groupId>io.restx</groupId> <artifactId>restx-validation</artifactId> <version>${restx.version}</version> </dependency> <dependency> <groupId>io.restx</groupId> <artifactId>restx-monitor-codahale</artifactId> <version>${restx.version}</version> </dependency> <dependency> <groupId>io.restx</groupId> <artifactId>restx-monitor-admin</artifactId> <version>${restx.version}</version> </dependency> <dependency> <groupId>io.restx</groupId> <artifactId>restx-log-admin</artifactId> <version>${restx.version}</version> </dependency> <dependency> <groupId>io.restx</groupId> <artifactId>restx-i18n-admin</artifactId> <version>${restx.version}</version> </dependency> <dependency> <groupId>io.restx</groupId> <artifactId>restx-stats-admin</artifactId> <version>${restx.version}</version> </dependency> <dependency> <groupId>io.restx</groupId> <artifactId>restx-servlet</artifactId> <version>${restx.version}</version> </dependency> <dependency> <groupId>io.restx</groupId> <artifactId>restx-server-jetty11</artifactId> <version>${restx.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>io.restx</groupId> <artifactId>restx-apidocs</artifactId> <version>${restx.version}</version> </dependency> <dependency> <groupId>io.restx</groupId> <artifactId>restx-specs-admin</artifactId> <version>${restx.version}</version> </dependency> <dependency> <groupId>io.restx</groupId> <artifactId>restx-admin</artifactId> <version>${restx.version}</version> </dependency> <dependency> <groupId>io.restx</groupId> <artifactId>restx-specs-tests</artifactId> <version>${restx.version}</version> <scope>test</scope> <exclusions> <exclusion> <groupId>junit</groupId> <artifactId>junit</artifactId> </exclusion> </exclusions> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <executions> <execution> <id>attach-docs</id> <!-- we generate javadoc before packaging the jar to let a chance to apidocs --> <!-- doclet to generate comments dictionary to be packaged inside the jar as --> <!-- a resource --> <phase>prepare-package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <properties> <restx.version>1.0.0-rc3</restx.version> <maven-javadoc-plugin.version>3.6.3</maven-javadoc-plugin.version> </properties> </project>