You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by im...@apache.org on 2007/08/21 20:29:05 UTC

svn commit: r568226 - in /myfaces/orchestra/trunk: core/src/main/resources/META-INF/LICENSE.txt core15/src/main/resources/META-INF/LICENSE.txt examples/NOTICE.txt examples/src/main/resources/META-INF/LICENSE.txt pom.xml

Author: imario
Date: Tue Aug 21 11:29:04 2007
New Revision: 568226

URL: http://svn.apache.org/viewvc?rev=568226&view=rev
Log:
added maven-remote plugin, removed unused files. Thanks to Wendy Smoak
for pointing this out! Cool stuff.


Removed:
    myfaces/orchestra/trunk/core/src/main/resources/META-INF/LICENSE.txt
    myfaces/orchestra/trunk/core15/src/main/resources/META-INF/LICENSE.txt
    myfaces/orchestra/trunk/examples/NOTICE.txt
    myfaces/orchestra/trunk/examples/src/main/resources/META-INF/LICENSE.txt
Modified:
    myfaces/orchestra/trunk/pom.xml

Modified: myfaces/orchestra/trunk/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/orchestra/trunk/pom.xml?rev=568226&r1=568225&r2=568226&view=diff
==============================================================================
--- myfaces/orchestra/trunk/pom.xml (original)
+++ myfaces/orchestra/trunk/pom.xml Tue Aug 21 11:29:04 2007
@@ -31,19 +31,19 @@
 
 	<dependencyManagement>
 		<dependencies>
-		
+
 			<dependency>
-         			<groupId>org.apache.myfaces.orchestra</groupId>
-			        <artifactId>myfaces-orchestra-core</artifactId>
+				<groupId>org.apache.myfaces.orchestra</groupId>
+				<artifactId>myfaces-orchestra-core</artifactId>
 				<version>${project.version}</version>
 			</dependency>
 
 			<dependency>
-         			<groupId>org.apache.myfaces.orchestra</groupId>
-			        <artifactId>myfaces-orchestra-core15</artifactId>
+				<groupId>org.apache.myfaces.orchestra</groupId>
+				<artifactId>myfaces-orchestra-core15</artifactId>
 				<version>${project.version}</version>
 			</dependency>
-		
+
 			<dependency>
 				<groupId>org.apache.myfaces.core</groupId>
 				<artifactId>myfaces-api</artifactId>
@@ -64,13 +64,13 @@
 		</dependencies>
 	</dependencyManagement>
 
-  <distributionManagement>
-    <site>
-      <id>apache-site</id>
-      <name>Apache Website</name>
-      <url>scpexe://minotaur.apache.org/www/myfaces.apache.org/orchestra</url>
-    </site>
-  </distributionManagement>
+	<distributionManagement>
+		<site>
+			<id>apache-site</id>
+			<name>Apache Website</name>
+			<url>scpexe://minotaur.apache.org/www/myfaces.apache.org/orchestra</url>
+		</site>
+	</distributionManagement>
 
 
 	<repositories>
@@ -121,6 +121,25 @@
 						<goals>
 							<goal>jar</goal>
 						</goals>
+					</execution>
+				</executions>
+			</plugin>
+			<plugin>
+				<artifactId>maven-remote-resources-plugin</artifactId>
+				<version>1.0-alpha-5</version>
+				<executions>
+					<execution>
+						<goals>
+							<goal>process</goal>
+						</goals>
+						<configuration>
+							<resourceBundles>
+								<resourceBundle>org.apache:apache-jar-resource-bundle:1.1</resourceBundle>
+							</resourceBundles>
+							<properties>
+								<addLicense>true</addLicense>
+							</properties>
+						</configuration>
 					</execution>
 				</executions>
 			</plugin>