rips-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.ripstech.maven</groupId> <artifactId>rips-maven-plugin</artifactId> <version>1.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>com.ripstech.maven</groupId> <artifactId>rips-maven-plugin</artifactId> <version>1.0.0</version> <packaging>maven-plugin</packaging> <name>RIPS maven plugin</name> <description>A plugin to start scans on a maven project.</description> <url>https://www.ripstech.com</url> <licenses> <license> <name>BSD-3-Clause</name> <url>https://github.com/rips/maven-plugin/blob/master/LICENSE</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Amin Dada</name> <email>adada@ripstech.com</email> <organization>RIPS Technologies GmbH</organization> <organizationUrl>https://ripstech.com</organizationUrl> </developer> <developer> <name>Malena Ebert</name> <email>mebert@ripstech.com</email> <organization>RIPS Technologies GmbH</organization> <organizationUrl>https://ripstech.com</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git://github.com/rips/maven-plugin.git</connection> <developerConnection>scm:git:ssh://github.com:rips/maven-plugin.git</developerConnection> <url>https://github.com/rips/maven-plugin/tree/master</url> </scm> <dependencies> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>3.5.2</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>3.5.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>3.3.3</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.ripstech.api</groupId> <artifactId>connector</artifactId> <version>3.1.1</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.ripstech.api</groupId> <artifactId>utils</artifactId> <version>3.1.1</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.jetbrains</groupId> <artifactId>annotations</artifactId> <version>16.0.3</version> <scope>runtime</scope> </dependency> </dependencies> </project>