Changeset b7c2f1b54a4c28d41b141ccd483f0508bd521662
- Timestamp:
- 03/16/08 17:11:44
(4 months ago)
- Author:
- Filippo Carone <littlejohn@videolan.org>
- git-committer:
- Filippo Carone <littlejohn@videolan.org> 1205683904 +0100
- git-parent:
[ad53a53efbb955ad8116d68f6d2f74953f1775ed]
- git-author:
- Filippo Carone <littlejohn@videolan.org> 1205683813 +0100
- Message:
centralize maven compiler plugin
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| ra130c17 |
rb7c2f1b |
|
| 11 | 11 | <name>JVLC - Core</name> |
|---|
| 12 | 12 | <description>Java Bindings for VideoLAN - Core</description> |
|---|
| 13 | | <build> |
|---|
| 14 | | <plugins> |
|---|
| 15 | | <plugin> |
|---|
| 16 | | <artifactId>maven-compiler-plugin</artifactId> |
|---|
| 17 | | <configuration> |
|---|
| 18 | | <source>1.5</source> |
|---|
| 19 | | <target>1.5</target> |
|---|
| 20 | | </configuration> |
|---|
| 21 | | </plugin> |
|---|
| 22 | | </plugins> |
|---|
| 23 | | </build> |
|---|
| 24 | 13 | <dependencies> |
|---|
| 25 | 14 | <dependency> |
|---|
| r7a9a29f |
rb7c2f1b |
|
| 28 | 28 | <url>http://trac.videolan.org/jvlc</url> |
|---|
| 29 | 29 | </issueManagement> |
|---|
| | 30 | |
|---|
| | 31 | <distributionManagement> |
|---|
| | 32 | <site> |
|---|
| | 33 | <id>jvlc</id> |
|---|
| | 34 | <url>http://jvlc.ihack.it/maven-site</url> |
|---|
| | 35 | <name>JVLC Maven Site</name> |
|---|
| | 36 | </site> |
|---|
| | 37 | </distributionManagement> |
|---|
| | 38 | |
|---|
| | 39 | <scm> |
|---|
| | 40 | <connection>scm:git:git://git.videolan.org/vlc</connection> |
|---|
| | 41 | <developerConnection>scm:git:git://git.videolan.org/vlc</developerConnection> |
|---|
| | 42 | <tag>HEAD</tag> |
|---|
| | 43 | <url>http://git.videolan.org/gitweb.cgi</url> |
|---|
| | 44 | </scm> |
|---|
| 30 | 45 | |
|---|
| 31 | 46 | <developers> |
|---|
| … | … | |
| 59 | 74 | <plugins> |
|---|
| 60 | 75 | <plugin> |
|---|
| | 76 | <artifactId>maven-compiler-plugin</artifactId> |
|---|
| | 77 | <configuration> |
|---|
| | 78 | <source>1.5</source> |
|---|
| | 79 | <target>1.5</target> |
|---|
| | 80 | </configuration> |
|---|
| | 81 | </plugin> |
|---|
| | 82 | <plugin> |
|---|
| 61 | 83 | <groupId>org.apache.maven.plugins</groupId> |
|---|
| 62 | 84 | <artifactId>maven-surefire-plugin</artifactId> |
|---|
| | 85 | </plugin> |
|---|
| | 86 | <plugin> |
|---|
| | 87 | <groupId>org.apache.maven.plugins</groupId> |
|---|
| | 88 | <artifactId>maven-site-plugin</artifactId> |
|---|
| | 89 | <version>2.0-beta-5</version> |
|---|
| | 90 | <configuration> |
|---|
| | 91 | <stagingSiteURL> |
|---|
| | 92 | scp://jvlc.ihack.it//home/littlejohn/www/ihack.it/jvlc/maven-site/staging/${pom.artifactId}/ |
|---|
| | 93 | </stagingSiteURL> |
|---|
| | 94 | </configuration> |
|---|
| 63 | 95 | </plugin> |
|---|
| 64 | 96 | </plugins> |
|---|
| … | … | |
| 94 | 126 | <links> |
|---|
| 95 | 127 | <link> |
|---|
| 96 | | http://java.sun.com/j2se/1.5.0/docs/api/ |
|---|
| | 128 | http://java.sun.com/j2se/1.5.0/docs/api/ |
|---|
| 97 | 129 | </link> |
|---|
| 98 | 130 | </links> |
|---|
| … | … | |
| 102 | 134 | <groupId>org.apache.maven.plugins</groupId> |
|---|
| 103 | 135 | <artifactId>maven-project-info-reports-plugin</artifactId> |
|---|
| 104 | | <reportSets> |
|---|
| 105 | | <reportSet> |
|---|
| 106 | | <reports> |
|---|
| 107 | | <report>dependencies</report> |
|---|
| 108 | | <report>issue-tracking</report> |
|---|
| 109 | | <report>project-team</report> |
|---|
| 110 | | <report>license</report> |
|---|
| 111 | | </reports> |
|---|
| 112 | | </reportSet> |
|---|
| 113 | | </reportSets> |
|---|
| 114 | 136 | </plugin> |
|---|
| 115 | 137 | </plugins> |
|---|
| | 138 | |
|---|
| 116 | 139 | </reporting> |
|---|
| 117 | 140 | |
|---|
| r12c70d4 |
rb7c2f1b |
|
| 16 | 16 | <build> |
|---|
| 17 | 17 | <plugins> |
|---|
| 18 | | <plugin> |
|---|
| 19 | | <artifactId>maven-compiler-plugin</artifactId> |
|---|
| 20 | | <configuration> |
|---|
| 21 | | <source>1.5</source> |
|---|
| 22 | | <target>1.5</target> |
|---|
| 23 | | </configuration> |
|---|
| 24 | | </plugin> |
|---|
| 25 | 18 | <plugin> |
|---|
| 26 | 19 | <groupId>org.codehaus.mojo</groupId> |
|---|