|
From: <fg...@us...> - 2010-01-31 16:09:00
|
Revision: 1721
http://openutils.svn.sourceforge.net/openutils/?rev=1721&view=rev
Author: fgiust
Date: 2010-01-31 16:08:52 +0000 (Sun, 31 Jan 2010)
Log Message:
-----------
moving common plugin configurations to the top level pom
Modified Paths:
--------------
trunk/openutils-parent/pom.xml
Modified: trunk/openutils-parent/pom.xml
===================================================================
--- trunk/openutils-parent/pom.xml 2010-01-31 15:32:59 UTC (rev 1720)
+++ trunk/openutils-parent/pom.xml 2010-01-31 16:08:52 UTC (rev 1721)
@@ -1,5 +1,6 @@
<?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 ">
+<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>
<groupId>net.sourceforge.openutils</groupId>
<artifactId>openutils-parent</artifactId>
@@ -13,6 +14,9 @@
<developerConnection>scm:svn:https://openutils.svn.sourceforge.net/svnroot/openutils/trunk</developerConnection>
<url>http://openutils.svn.sourceforge.net/viewcvs.cgi/openutils/trunk</url>
</scm>
+ <issueManagement>
+ <system>jira</system>
+ </issueManagement>
<organization>
<name>Openmind</name>
<url>http://www.openmindonline.it</url>
@@ -96,8 +100,7 @@
<artifactId>maven-site-plugin</artifactId>
<version>2.0-beta-7</version>
<configuration>
- <stagingSiteURL>scp://shell.sourceforge.net/home/groups/o/op/openutils/htdocs/staging/${pom.artifactId}/
- </stagingSiteURL>
+ <stagingSiteURL>scp://shell.sourceforge.net/home/groups/o/op/openutils/htdocs/staging/${pom.artifactId}/</stagingSiteURL>
</configuration>
</plugin>
<plugin>
@@ -159,6 +162,47 @@
</additionalConfig>
</configuration>
</plugin>
+ <plugin>
+ <groupId>com.mycila.maven-license-plugin</groupId>
+ <artifactId>maven-license-plugin</artifactId>
+ <version>1.5.0</version>
+ <configuration>
+ <header>src/main/etc/header.txt</header>
+ <includes>
+ <include>src/**/*.java</include>
+ </includes>
+ <properties>
+ <year>${project.inceptionYear}-2010</year>
+ <name>${project.name}</name>
+ <description>${project.description}</description>
+ <url>${project.url}</url>
+ </properties>
+ </configuration>
+ <executions>
+ <execution>
+ <goals>
+ <goal>check</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>bundle</id>
+ <phase>package</phase>
+ <goals>
+ <goal>single</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <descriptors>
+ <descriptor>${basedir}/src/main/assembly/assembly-bundle.xml</descriptor>
+ </descriptors>
+ </configuration>
+ </plugin>
</plugins>
</build>
<reporting>
@@ -176,14 +220,11 @@
</plugin>
<plugin>
<artifactId>maven-changes-plugin</artifactId>
- <version>2.0-beta-3</version>
- <configuration>
- <xmlPath>${basedir}/src/site/changes/changes.xml</xmlPath>
- </configuration>
+ <version>2.3</version>
<reportSets>
<reportSet>
<reports>
- <report>changes-report</report>
+ <report>jira-report</report>
</reports>
</reportSet>
</reportSets>
@@ -303,4 +344,4 @@
</dependency>
</dependencies>
</dependencyManagement>
-</project>
+</project>
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|