[Schmitzm-commits] r1447 - in trunk: schmitzm-core schmitzm-gt schmitzm-jfree schmitzm-jfree-gt schmitzm-parent

scm-commit@wald.intevation.org scm-commit at wald.intevation.org
Thu Jan 27 14:40:42 CET 2011


Author: alfonx
Date: 2011-01-27 14:40:41 +0100 (Thu, 27 Jan 2011)
New Revision: 1447

Modified:
   trunk/schmitzm-core/pom.xml
   trunk/schmitzm-gt/pom.xml
   trunk/schmitzm-jfree-gt/pom.xml
   trunk/schmitzm-jfree/pom.xml
   trunk/schmitzm-parent/pom.xml
Log:


Modified: trunk/schmitzm-core/pom.xml
===================================================================
--- trunk/schmitzm-core/pom.xml	2011-01-27 13:34:11 UTC (rev 1446)
+++ trunk/schmitzm-core/pom.xml	2011-01-27 13:40:41 UTC (rev 1447)
@@ -122,5 +122,43 @@
 		</plugins>
 
 	</build>
+	
+	
+	<profiles>
+		<profile>
+			<id>resourceOperationRemove</id>
+			<!-- When this profile is activated (e.g with "mavn install -P resourceOperationRemove" 
+				the build will remove any lines in the resource bundes that are tagged with 
+				REMOVEME_ -->
+			<build>
+				<plugins>
+					<plugin>
+						<groupId>org.codehaus.mojo</groupId>
+						<artifactId>exec-maven-plugin</artifactId>
+						<version>1.2</version>
+						<executions>
+							<execution>
+								<phase>generate-sources</phase>
+								<goals>
+									<goal>java</goal>
+								</goals>
+								<configuration>
+									<mainClass>de.schmitzm.lang.ResourceProviderOperator</mainClass>
+									<arguments>
+										<argument>-s</argument>
+										<argument>${project.build.directory}/../src</argument>
+										<argument>-b</argument>
+										<argument>de.schmitzm.swing.resource.locales.SwingResourceBundle;de.schmitzm.lang.resource.locales.LangResourceBundle;de.schmitzm.mail.resource.locales.MailResourceBundle;de.schmitzm.data.resource.locales.DataResourceBundle
+										</argument>
+									</arguments>
+								</configuration>
+							</execution>
+						</executions>
+					</plugin>
+				</plugins>
+			</build>
+		</profile>
+	</profiles>
+	
 
 </project>

Modified: trunk/schmitzm-gt/pom.xml
===================================================================
--- trunk/schmitzm-gt/pom.xml	2011-01-27 13:34:11 UTC (rev 1446)
+++ trunk/schmitzm-gt/pom.xml	2011-01-27 13:40:41 UTC (rev 1447)
@@ -156,4 +156,42 @@
 		</dependency>
 
 	</dependencies>
+	
+	
+	<profiles>
+		<profile>
+			<id>resourceOperationRemove</id>
+			<!-- When this profile is activated (e.g with "mavn install -P resourceOperationRemove" 
+				the build will remove any lines in the resource bundes that are tagged with 
+				REMOVEME_ -->
+			<build>
+				<plugins>
+					<plugin>
+						<groupId>org.codehaus.mojo</groupId>
+						<artifactId>exec-maven-plugin</artifactId>
+						<version>1.2</version>
+						<executions>
+							<execution>
+								<phase>generate-sources</phase>
+								<goals>
+									<goal>java</goal>
+								</goals>
+								<configuration>
+									<mainClass>de.schmitzm.lang.ResourceProviderOperator</mainClass>
+									<arguments>
+										<argument>-s</argument>
+										<argument>${project.build.directory}/../src</argument>
+										<argument>-b</argument>
+										<argument>dschmitzm.geotools.gui.resource.locales.GTResourceBundle;schmitzm.swing.resource.locales.SwingResourceBundle;schmitzm.geotools.feature.resource.locales.FeatureResourceBundle;schmitzm.jfree.resource.locales.JFreeResourceBundle;schmitzm.lang.resource.locales.LangResourceBundle;schmitzm.mail.resource.locales.MailResourceBundle;schmitzm.data.resource.locales.DataResourceBundle
+										</argument>
+									</arguments>
+								</configuration>
+							</execution>
+						</executions>
+					</plugin>
+				</plugins>
+			</build>
+		</profile>
+	</profiles>
+	
 </project>

Modified: trunk/schmitzm-jfree/pom.xml
===================================================================
--- trunk/schmitzm-jfree/pom.xml	2011-01-27 13:34:11 UTC (rev 1446)
+++ trunk/schmitzm-jfree/pom.xml	2011-01-27 13:40:41 UTC (rev 1447)
@@ -50,4 +50,42 @@
 			<scope>compile</scope>
 		</dependency>
 	</dependencies>
+	
+	
+	<profiles>
+		<profile>
+			<id>resourceOperationRemove</id>
+			<!-- When this profile is activated (e.g with "mavn install -P resourceOperationRemove" 
+				the build will remove any lines in the resource bundes that are tagged with 
+				REMOVEME_ -->
+			<build>
+				<plugins>
+					<plugin>
+						<groupId>org.codehaus.mojo</groupId>
+						<artifactId>exec-maven-plugin</artifactId>
+						<version>1.2</version>
+						<executions>
+							<execution>
+								<phase>generate-sources</phase>
+								<goals>
+									<goal>java</goal>
+								</goals>
+								<configuration>
+									<mainClass>de.schmitzm.lang.ResourceProviderOperator</mainClass>
+									<arguments>
+										<argument>-s</argument>
+										<argument>${project.build.directory}/../src</argument>
+										<argument>-b</argument>
+										<argument>dschmitzm.geotools.gui.resource.locales.GTResourceBundle;schmitzm.swing.resource.locales.SwingResourceBundle;schmitzm.geotools.feature.resource.locales.FeatureResourceBundle;schmitzm.jfree.resource.locales.JFreeResourceBundle;schmitzm.lang.resource.locales.LangResourceBundle;schmitzm.mail.resource.locales.MailResourceBundle;schmitzm.data.resource.locales.DataResourceBundle
+										</argument>
+									</arguments>
+								</configuration>
+							</execution>
+						</executions>
+					</plugin>
+				</plugins>
+			</build>
+		</profile>
+	</profiles>
+	
 </project>

Modified: trunk/schmitzm-jfree-gt/pom.xml
===================================================================
--- trunk/schmitzm-jfree-gt/pom.xml	2011-01-27 13:34:11 UTC (rev 1446)
+++ trunk/schmitzm-jfree-gt/pom.xml	2011-01-27 13:40:41 UTC (rev 1447)
@@ -59,4 +59,41 @@
 			<scope>test</scope>
 		</dependency>
 	</dependencies>
+	
+	
+	<profiles>
+		<profile>
+			<id>resourceOperationRemove</id>
+			<!-- When this profile is activated (e.g with "mavn install -P resourceOperationRemove" 
+				the build will remove any lines in the resource bundes that are tagged with 
+				REMOVEME_ -->
+			<build>
+				<plugins>
+					<plugin>
+						<groupId>org.codehaus.mojo</groupId>
+						<artifactId>exec-maven-plugin</artifactId>
+						<version>1.2</version>
+						<executions>
+							<execution>
+								<phase>generate-sources</phase>
+								<goals>
+									<goal>java</goal>
+								</goals>
+								<configuration>
+									<mainClass>de.schmitzm.lang.ResourceProviderOperator</mainClass>
+									<arguments>
+										<argument>-s</argument>
+										<argument>${project.build.directory}/../src</argument>
+										<argument>-b</argument>
+										<argument>de.schmitzm.geotools.feature.resource.locales.FeatureResourceBundle</argument>
+									</arguments>
+								</configuration>
+							</execution>
+						</executions>
+					</plugin>
+				</plugins>
+			</build>
+		</profile>
+	</profiles>
+	
 </project>

Modified: trunk/schmitzm-parent/pom.xml
===================================================================
--- trunk/schmitzm-parent/pom.xml	2011-01-27 13:34:11 UTC (rev 1446)
+++ trunk/schmitzm-parent/pom.xml	2011-01-27 13:40:41 UTC (rev 1447)
@@ -238,40 +238,4 @@
 		</snapshotRepository>
 
 	</distributionManagement>
-	<profiles>
-		<profile>
-			<id>resourceOperationRemove</id>
-			<!-- When this profile is activated (e.g with "mavn install -P resourceOperationRemove" 
-				the build will remove any lines in the resource bundes that are tagged with 
-				REMOVEME_ -->
-			<build>
-				<plugins>
-					<plugin>
-						<groupId>org.codehaus.mojo</groupId>
-						<artifactId>exec-maven-plugin</artifactId>
-						<version>1.2</version>
-						<executions>
-							<execution>
-								<phase>generate-sources</phase>
-								<goals>
-									<goal>java</goal>
-								</goals>
-								<configuration>
-									<mainClass>de.schmitzm.lang.ResourceProviderOperator</mainClass>
-									<arguments>
-										<argument>-s</argument>
-										<argument>${project.build.directory}/../src</argument>
-										<argument>-b</argument>
-										<argument>dschmitzm.geotools.gui.resource.locales.GTResourceBundle;schmitzm.swing.resource.locales.SwingResourceBundle;schmitzm.geotools.feature.resource.locales.FeatureResourceBundle;schmitzm.jfree.resource.locales.JFreeResourceBundle;schmitzm.lang.resource.locales.LangResourceBundle;schmitzm.mail.resource.locales.MailResourceBundle;schmitzm.data.resource.locales.DataResourceBundle
-										</argument>
-									</arguments>
-								</configuration>
-							</execution>
-						</executions>
-					</plugin>
-				</plugins>
-			</build>
-		</profile>
-	</profiles>
-
 </project>



More information about the Schmitzm-commits mailing list