You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by el...@apache.org on 2011/04/08 23:19:15 UTC

svn commit: r1090449 - /mina/branches/3.0/pom.xml

Author: elecharny
Date: Fri Apr  8 21:19:14 2011
New Revision: 1090449

URL: http://svn.apache.org/viewvc?rev=1090449&view=rev
Log:
Added a profile to allow eclipse developpers to load the project in the same workspace

Modified:
    mina/branches/3.0/pom.xml

Modified: mina/branches/3.0/pom.xml
URL: http://svn.apache.org/viewvc/mina/branches/3.0/pom.xml?rev=1090449&r1=1090448&r2=1090449&view=diff
==============================================================================
--- mina/branches/3.0/pom.xml (original)
+++ mina/branches/3.0/pom.xml Fri Apr  8 21:19:14 2011
@@ -258,4 +258,27 @@
       </plugin>
     </plugins>
   </reporting>
+  <profiles>
+    <!-- Specific profile used to append a string to project name -->
+    <profile>
+      <id>append-to-project-name</id>
+      <activation>
+        <property>
+          <name>append.to.project.name</name>
+        </property>
+      </activation>
+      <build>
+         <plugins>
+          <plugin>
+            <artifactId>maven-eclipse-plugin</artifactId>
+            <configuration>
+              <projectNameTemplate>
+                [artifactId]-${append.to.project.name}
+              </projectNameTemplate>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
 </project>