maven-plugins
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.yahoo.vespa</groupId> <artifactId>maven-plugins</artifactId> <version>8.363.17</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. --> <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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.yahoo.vespa</groupId> <artifactId>parent</artifactId> <version>8.363.17</version> <relativePath>../parent/pom.xml</relativePath> </parent> <groupId>com.yahoo.vespa</groupId> <artifactId>maven-plugins</artifactId> <packaging>pom</packaging> <version>8.363.17</version> <description>Parent artifact for Vespa maven plugins.</description> <url>http://yahoo.github.io/vespa</url> <modules> <module>../abi-check-plugin</module> <module>../annotations</module> <module>../bundle-plugin</module> <module>../config-class-plugin</module> <module>../configgen</module> <module>../vespa-application-maven-plugin</module> <module>../vespa-enforcer-extensions</module> </modules> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <inherited>false</inherited> <dependencies> <dependency> <groupId>com.yahoo.vespa</groupId> <artifactId>vespa-enforcer-extensions</artifactId> <version>${project.version}</version> </dependency> </dependencies> <executions> <execution> <id>default-cli</id> <goals> <!-- To allow running 'mvn enforcer:enforce' from the command line --> <goal>enforce</goal> </goals> <configuration> <rules> <enforceDependencies implementation="com.yahoo.vespa.maven.plugin.enforcer.AllowedDependencies"> <rootProjectId>com.yahoo.vespa:maven-plugins</rootProjectId> <specFile>allowed-maven-dependencies.txt</specFile> <ignored> <i>com.yahoo.vespa:*:*</i> <i>ai.vespa:*:*</i> </ignored> </enforceDependencies> </rules> <fail>true</fail> </configuration> </execution> </executions> </plugin> </plugins> </build> <properties> <maven.deploy.skip>true</maven.deploy.skip> <maven.javadoc.skip>true</maven.javadoc.skip> </properties> </project>