sonar-timeline-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.codehaus.sonar-plugins</groupId> <artifactId>sonar-timeline-plugin</artifactId> <version>1.5</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.codehaus.sonar-plugins</groupId> <artifactId>parent</artifactId> <version>18</version> <relativePath>../parent</relativePath> </parent> <artifactId>sonar-timeline-plugin</artifactId> <packaging>sonar-plugin</packaging> <version>1.5</version> <name>Sonar Timeline plugin</name> <description>Advanced time machine chart (requires an internet access).</description> <url>http://docs.codehaus.org/display/SONAR/Timeline+Plugin</url> <organization> <name>SonarSource</name> <url>http://www.sonarsource.com</url> </organization> <licenses> <license> <name>GNU LGPL 3</name> <url>http://www.gnu.org/licenses/lgpl.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>cedric.munger</id> <name>Cedric Munger</name> <email>cedric.munger@gmail.com</email> <timezone>+1</timezone> </developer> <developer> <id>simon.brandhof</id> <name>Simon Brandhof</name> <email>simon.brandhof@sonarsource.com</email> <timezone>+1</timezone> </developer> <developer> <id>godin</id> <name>Evgeny Mandrikov</name> <timezone>+3</timezone> </developer> <developer> <id>fabemn</id> <name>Fabrice Bellingard</name> <email>fabrice.bellingard@sonarsource.com</email> <timezone>+1</timezone> </developer> <developer> <id>jean-baptiste.lievremont</id> <name>Jean-Baptiste Lièvremont</name> <email>jean-baptiste.lievremont@sonarsource.com</email> <timezone>+1</timezone> </developer> </developers> <scm> <connection>scm:git:git@github.com:SonarCommunity/sonar-timeline.git</connection> <developerConnection>scm:git:git@github.com:SonarCommunity/sonar-timeline.git</developerConnection> <url>https://github.com/SonarCommunity/sonar-timeline</url> <tag>sonar-timeline-plugin-1.5</tag> </scm> <issueManagement> <system>JIRA</system> <url>http://jira.codehaus.org/browse/SONARPLUGINS/component/14068</url> </issueManagement> <properties> <sonar.version>5.1-RC1</sonar.version> <sonar.pluginName>Timeline</sonar.pluginName> <sonar.pluginClass>org.sonar.plugins.timeline.TimelinePlugin</sonar.pluginClass> </properties> <dependencies> <dependency> <groupId>org.codehaus.sonar</groupId> <artifactId>sonar-plugin-api</artifactId> <version>${sonar.version}</version> <scope>provided</scope> </dependency> <!-- unit tests --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> <scope>test</scope> </dependency> <dependency> <groupId>org.easytesting</groupId> <artifactId>fest-assert</artifactId> <version>1.4</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>native2ascii-maven-plugin</artifactId> <executions> <execution> <goals> <goal>native2ascii</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>