Changeset db39ed110ef89bf6dad646b774dfa84c2d028d31
- Timestamp:
- 03/16/08 13:02:00
(4 months ago)
- Author:
- Filippo Carone <littlejohn@videolan.org>
- git-committer:
- Filippo Carone <littlejohn@videolan.org> 1205668920 +0100
- git-parent:
[fc3815a7114f9fef7eb47e38903f33bfb10597b7]
- git-author:
- Adrien Grand <jpountz@jpountz.net> 1205668920 +0100
- Message:
[PATCH] Maven2 plugins
Signed-off-by: Filippo Carone <littlejohn@videolan.org>
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| ra19cac2 |
rdb39ed1 |
|
| 2 | 2 | <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 "> |
|---|
| 3 | 3 | <modelVersion>4.0.0</modelVersion> |
|---|
| | 4 | |
|---|
| 4 | 5 | <groupId>org.videolan</groupId> |
|---|
| 5 | 6 | <artifactId>jvlc-parent</artifactId> |
|---|
| | 7 | <version>0.9.0-SNAPSHOT</version> |
|---|
| 6 | 8 | <packaging>pom</packaging> |
|---|
| | 9 | |
|---|
| 7 | 10 | <name>JVLC</name> |
|---|
| 8 | 11 | <description>Java Bindings for VideoLAN</description> |
|---|
| 9 | | <version>0.9.0-SNAPSHOT</version> |
|---|
| | 12 | <url>http://jvlc.ihack.it/</url> |
|---|
| | 13 | <inceptionYear>2005</inceptionYear> |
|---|
| | 14 | <organization> |
|---|
| | 15 | <name>The VideoLAN Team</name> |
|---|
| | 16 | <url>http://www.videolan.org/</url> |
|---|
| | 17 | </organization> |
|---|
| | 18 | |
|---|
| 10 | 19 | <licenses> |
|---|
| 11 | 20 | <license> |
|---|
| … | … | |
| 14 | 23 | </license> |
|---|
| 15 | 24 | </licenses> |
|---|
| | 25 | |
|---|
| | 26 | <issueManagement> |
|---|
| | 27 | <system>Trac</system> |
|---|
| | 28 | <url>http://trac.videolan.org/jvlc</url> |
|---|
| | 29 | </issueManagement> |
|---|
| | 30 | |
|---|
| | 31 | <developers> |
|---|
| | 32 | <developer> |
|---|
| | 33 | <name>Filippo Carone</name> |
|---|
| | 34 | <id>littlejohn</id> |
|---|
| | 35 | </developer> |
|---|
| | 36 | </developers> |
|---|
| | 37 | |
|---|
| | 38 | <build> |
|---|
| | 39 | <plugins> |
|---|
| | 40 | <plugin> |
|---|
| | 41 | <groupId>org.apache.maven.plugins</groupId> |
|---|
| | 42 | <artifactId>maven-surefire-plugin</artifactId> |
|---|
| | 43 | </plugin> |
|---|
| | 44 | </plugins> |
|---|
| | 45 | </build> |
|---|
| | 46 | |
|---|
| | 47 | <reporting> |
|---|
| | 48 | <plugins> |
|---|
| | 49 | <plugin> |
|---|
| | 50 | <groupId>org.apache.maven.plugins</groupId> |
|---|
| | 51 | <artifactId>maven-surefire-report-plugin</artifactId> |
|---|
| | 52 | </plugin> |
|---|
| | 53 | <plugin> |
|---|
| | 54 | <groupId>org.apache.maven.plugins</groupId> |
|---|
| | 55 | <artifactId>maven-jxr-plugin</artifactId> |
|---|
| | 56 | </plugin> |
|---|
| | 57 | <plugin> |
|---|
| | 58 | <groupId>org.apache.maven.plugins</groupId> |
|---|
| | 59 | <artifactId>maven-pmd-plugin</artifactId> |
|---|
| | 60 | <configuration> |
|---|
| | 61 | <linkXref>true</linkXref> |
|---|
| | 62 | <sourceEncoding>utf-8</sourceEncoding> |
|---|
| | 63 | <targetJdk>1.6</targetJdk> |
|---|
| | 64 | </configuration> |
|---|
| | 65 | </plugin> |
|---|
| | 66 | <plugin> |
|---|
| | 67 | <groupId>org.codehaus.mojo</groupId> |
|---|
| | 68 | <artifactId>cobertura-maven-plugin</artifactId> |
|---|
| | 69 | </plugin> |
|---|
| | 70 | <plugin> |
|---|
| | 71 | <groupId>org.apache.maven.plugins</groupId> |
|---|
| | 72 | <artifactId>maven-javadoc-plugin</artifactId> |
|---|
| | 73 | <configuration> |
|---|
| | 74 | <links> |
|---|
| | 75 | <link> |
|---|
| | 76 | http://java.sun.com/javase/6/docs/api/ |
|---|
| | 77 | </link> |
|---|
| | 78 | </links> |
|---|
| | 79 | </configuration> |
|---|
| | 80 | </plugin> |
|---|
| | 81 | <plugin> |
|---|
| | 82 | <groupId>org.apache.maven.plugins</groupId> |
|---|
| | 83 | <artifactId>maven-project-info-reports-plugin</artifactId> |
|---|
| | 84 | <reportSets> |
|---|
| | 85 | <reportSet> |
|---|
| | 86 | <reports> |
|---|
| | 87 | <report>dependencies</report> |
|---|
| | 88 | <report>issue-tracking</report> |
|---|
| | 89 | <report>project-team</report> |
|---|
| | 90 | <report>license</report> |
|---|
| | 91 | </reports> |
|---|
| | 92 | </reportSet> |
|---|
| | 93 | </reportSets> |
|---|
| | 94 | </plugin> |
|---|
| | 95 | </plugins> |
|---|
| | 96 | </reporting> |
|---|
| | 97 | |
|---|
| 16 | 98 | <modules> |
|---|
| 17 | 99 | <module>core</module> |
|---|
| 18 | 100 | <module>samples</module> |
|---|
| 19 | 101 | </modules> |
|---|
| | 102 | |
|---|
| 20 | 103 | </project> |
|---|