You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@empire-db.apache.org by fr...@apache.org on 2009/07/10 00:11:33 UTC

svn commit: r792728 - /incubator/empire-db/trunk/pom.xml

Author: francisdb
Date: Thu Jul  9 22:11:33 2009
New Revision: 792728

URL: http://svn.apache.org/viewvc?rev=792728&view=rev
Log:
only check headers for the CI build
that plugin was causing problems when building just an individual module

Modified:
    incubator/empire-db/trunk/pom.xml

Modified: incubator/empire-db/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/empire-db/trunk/pom.xml?rev=792728&r1=792727&r2=792728&view=diff
==============================================================================
--- incubator/empire-db/trunk/pom.xml (original)
+++ incubator/empire-db/trunk/pom.xml Thu Jul  9 22:11:33 2009
@@ -56,6 +56,11 @@
 			</modules>
 			<build>
 				<plugins>
+					<!-- check the headers -->
+					<plugin>
+			            <groupId>com.google.code.maven-license-plugin</groupId>
+			            <artifactId>maven-license-plugin</artifactId>
+			        </plugin>
 					<plugin>
 					  <groupId>org.apache.maven.plugins</groupId>
 					  <artifactId>maven-source-plugin</artifactId>
@@ -213,36 +218,6 @@
 	<build>
 		<defaultGoal>install</defaultGoal>
 		<plugins>
-			<plugin>
-	            <groupId>com.google.code.maven-license-plugin</groupId>
-	            <artifactId>maven-license-plugin</artifactId>
-	            <version>1.4.0</version>
-	            <configuration>
-	                <basedir>${basedir}</basedir>
-	                <header>old/header.txt</header>
-	                <!--<header>${basedir}/src/etc/header.txt</header>-->
-	                <quiet>false</quiet>
-	                <failIfMissing>true</failIfMissing>
-	                <aggregate>false</aggregate>
-	                <includes>
-	                    <include>src/**</include>
-	                    <include>**/test/**</include>
-	                </includes>
-	                <mapping>
-	                    <jwc>XML_STYLE</jwc>
-	                    <application>XML_STYLE</application>
-	                    <myFileExtension>JAVADOC_STYLE</myFileExtension>
-	                </mapping>
-	                <encoding>UTF-8</encoding>
-	            </configuration>
-	            <executions>
-	                <execution>
-	                    <goals>
-	                        <goal>check</goal>
-	                    </goals>
-	                </execution>
-	            </executions>
-	        </plugin>
         </plugins>
 		<pluginManagement>
 			<plugins>
@@ -271,6 +246,36 @@
 						<debug>true</debug>
 					</configuration>
 				</plugin>
+				<plugin>
+		            <groupId>com.google.code.maven-license-plugin</groupId>
+		            <artifactId>maven-license-plugin</artifactId>
+		            <version>1.4.0</version>
+		            <configuration>
+		                <basedir>${basedir}</basedir>
+		                <header>old/header.txt</header>
+		                <!--<header>${basedir}/src/etc/header.txt</header>-->
+		                <quiet>false</quiet>
+		                <failIfMissing>true</failIfMissing>
+		                <aggregate>false</aggregate>
+		                <includes>
+		                    <include>src/**</include>
+		                    <include>**/test/**</include>
+		                </includes>
+		                <mapping>
+		                    <jwc>XML_STYLE</jwc>
+		                    <application>XML_STYLE</application>
+		                    <myFileExtension>JAVADOC_STYLE</myFileExtension>
+		                </mapping>
+		                <encoding>UTF-8</encoding>
+		            </configuration>
+		            <executions>
+		                <execution>
+		                    <goals>
+		                        <goal>check</goal>
+		                    </goals>
+		                </execution>
+		            </executions>
+		        </plugin>
 			</plugins>
 		</pluginManagement>
 	</build>