You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by xi...@apache.org on 2012/04/24 06:47:15 UTC

svn commit: r1329550 - /geronimo/specs/trunk/geronimo-el_2.2_spec/pom.xml

Author: xiaming
Date: Tue Apr 24 04:47:15 2012
New Revision: 1329550

URL: http://svn.apache.org/viewvc?rev=1329550&view=rev
Log:
Use project.xxx to replace xxx to avoid maven warning during build

Modified:
    geronimo/specs/trunk/geronimo-el_2.2_spec/pom.xml

Modified: geronimo/specs/trunk/geronimo-el_2.2_spec/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-el_2.2_spec/pom.xml?rev=1329550&r1=1329549&r2=1329550&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-el_2.2_spec/pom.xml (original)
+++ geronimo/specs/trunk/geronimo-el_2.2_spec/pom.xml Tue Apr 24 04:47:15 2012
@@ -37,16 +37,16 @@
     <version>1.0.3-SNAPSHOT</version>
     <description>Expression Languague API 2.2</description>
 
-    <url>http://geronimo.apache.org/maven/${siteId}/${version}</url>
+    <url>http://geronimo.apache.org/maven/${siteId}/${project.version}</url>
     <distributionManagement>
         <site>
             <id>apache-website</id>
-            <url>${site.deploy.url}/maven/${siteId}/${version}</url>
+            <url>${site.deploy.url}/maven/${siteId}/${project.version}</url>
         </site>
     </distributionManagement>
 
     <properties>
-        <siteId>specs/${artifactId}</siteId>
+        <siteId>specs/${project.artifactId}</siteId>
     </properties>
 
     <scm>
@@ -71,7 +71,7 @@
                 <artifactId>maven-bundle-plugin</artifactId>
                 <configuration>
                     <instructions>
-                        <Bundle-SymbolicName>${groupId}.${artifactId};singleton=true</Bundle-SymbolicName>
+                        <Bundle-SymbolicName>${project.groupId}.${project.artifactId};singleton=true</Bundle-SymbolicName>
                         <Specification-Title>JSR-245 Java Expression Language API 2.2</Specification-Title>
                         <Specification-Vendor>Sun Microsystems, Inc.</Specification-Vendor>
                         <Specification-Version>2.2</Specification-Version>