spoon-javadoc
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>fr.inria.gforge.spoon</groupId>
<artifactId>spoon-javadoc</artifactId>
<version>11.3.1-beta-8</version>
</dependency><?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">
<parent>
<artifactId>spoon-pom</artifactId>
<groupId>fr.inria.gforge.spoon</groupId>
<version>11.2.0</version>
<relativePath>../spoon-pom</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>spoon-javadoc</artifactId>
<packaging>jar</packaging>
<version>11.3.1-beta-8</version>
<name>Spoon Javadoc</name>
<description>A javadoc parser for the java source code analysis tool spoon.</description>
<url>http://spoon.gforge.inria.fr/</url>
<scm>
<url>https://github.com/INRIA/spoon/tree/${project.scm.tag}/spoon-javadoc</url>
<connection>scm:git:https://github.com/INRIA/spoon.git</connection>
<developerConnection>scm:git:ssh://github.com/INRIA/spoon.git</developerConnection>
<tag>v${project.version}</tag>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>prepare-package</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
<execution>
<id>check-coverage</id>
<goals>
<goal>check</goal>
</goals>
<configuration>
<rules>
<rule implementation="org.jacoco.maven.RuleConfiguration">
<element>CLASS</element>
<limits>
<limit implementation="org.jacoco.report.check.Limit">
<counter>LINE</counter>
<value>COVEREDRATIO</value>
<minimum>0.1</minimum>
</limit>
</limits>
</rule>
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>fr.inria.gforge.spoon</groupId>
<artifactId>spoon-core</artifactId>
<version>${version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.27.7</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>