codespotter-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.code-spotter</groupId>
<artifactId>codespotter-maven-plugin</artifactId>
<version>1.3.615</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.code-spotter</groupId>
<artifactId>codespotter-maven-plugin</artifactId>
<version>1.3.615</version>
<name>Code Spotter Maven Plugin</name>
<description>Maven plugin for static code analysis with the Code Spotter service</description>
<url>https://ondemand.coverity.com</url>
<licenses>
<license>
<name>Coverity Software License</name>
<url>https://ondemand.coverity.com/terms</url>
<comments>Your use of and access to the plugin is governed by the current version of the Coverity
Terms of Service available at https://ondemand.coverity.com/terms (“Terms”). Notwithstanding
anything to the contrary in the Terms, your redistribution of the plugin is permitted
subject to your use of all Coverity marks referenced therein.</comments>
</license>
</licenses>
<developers>
<developer>
<id>coverity.ondemand</id>
<name>Coverity On Demand Team</name>
<email>feedback-ondemand@coverity.com</email>
<timezone>US/Pacific</timezone>
</developer>
</developers>
<prerequisites>
<maven>3.0.3</maven>
</prerequisites>
<scm>
<connection>scm:git:git@github.com</connection>
<url>https://github.com</url>
</scm>
<distributionManagement>
<relocation>
<groupId>com.coverity</groupId>
<artifactId>ondemand-maven-plugin</artifactId>
<message>Code Spotter has been renamed to Coverity On Demand.</message>
</relocation>
<repository>
<id>staging</id>
<name>Local staging repository</name>
<url>file:target/staging-repo</url>
</repository>
</distributionManagement>
<profiles>
<profile>
<id>caas-local-repository</id>
<repositories>
<repository>
<id>caas-local</id>
<url>http://artifactory.sf.coverity.com:8081/artifactory/caas-local</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
</repository>
</repositories>
</profile>
<profile>
<id>deploy-to-caas-local</id>
<distributionManagement>
<repository>
<id>caas-local</id>
<url>http://artifactory.sf.coverity.com:8081/artifactory/caas-local</url>
</repository>
</distributionManagement>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.4</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.4</version>
<configuration>
<descriptors>
<descriptor>../maven-plugin/src/assemble/empty-source-assembly.xml</descriptor>
<descriptor>../maven-plugin/src/assemble/empty-javadoc-assembly.xml</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<id>empty-source-javadoc-jars</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>