Author: ngn
Date: Fri Apr 30 18:10:34 2010
New Revision: 939765

URL: http://svn.apache.org/viewvc?rev=939765&view=rev
Log:
Fixing invalid uses of POM properties (FTPSERVER-368)

Modified:
    mina/ftpserver/branches/1.0.x/core/pom.xml
    mina/ftpserver/branches/1.0.x/distribution/pom.xml
    mina/ftpserver/branches/1.0.x/examples/ftpserver-example-spring-war/pom.xml
    mina/ftpserver/branches/1.0.x/examples/ftpserver-osgi-ftplet-service/pom.xml
    mina/ftpserver/branches/1.0.x/examples/ftpserver-osgi-spring-service/pom.xml
    mina/ftpserver/branches/1.0.x/ftplet-api/pom.xml
    mina/ftpserver/branches/1.0.x/pom.xml

Modified: mina/ftpserver/branches/1.0.x/core/pom.xml
URL: 
http://svn.apache.org/viewvc/mina/ftpserver/branches/1.0.x/core/pom.xml?rev=939765&r1=939764&r2=939765&view=diff
==============================================================================
--- mina/ftpserver/branches/1.0.x/core/pom.xml (original)
+++ mina/ftpserver/branches/1.0.x/core/pom.xml Fri Apr 30 18:10:34 2010
@@ -64,16 +64,16 @@
                                        <instructions>
                                                <Bundle-SymbolicName> 
${artifactId}</Bundle-SymbolicName>
                                                <Bundle-Vendor>The Apache 
Software Foundation</Bundle-Vendor>
-                                               <Export-Package> 
org.apache.ftpserver;version=${pom.version},
-                                                       
org.apache.ftpserver.command;version=${pom.version},
-                                                       
org.apache.ftpserver.config.spring;version=${pom.version},
-                                                       
org.apache.ftpserver.filesystem.nativefs;version=${pom.version},
-                                                       
org.apache.ftpserver.ftpletcontainer;version=${pom.version},
-                                                       
org.apache.ftpserver.listener;version=${pom.version}, 
-                                                       
org.apache.ftpserver.main;version=${pom.version},
-                                                       
org.apache.ftpserver.message;version=${pom.version},
-                                                       
org.apache.ftpserver.ssl;version=${pom.version},
-                                                       
org.apache.ftpserver.usermanager;version=${pom.version}
+                                               <Export-Package> 
org.apache.ftpserver;version=${project.version},
+                                                       
org.apache.ftpserver.command;version=${project.version},
+                                                       
org.apache.ftpserver.config.spring;version=${project.version},
+                                                       
org.apache.ftpserver.filesystem.nativefs;version=${project.version},
+                                                       
org.apache.ftpserver.ftpletcontainer;version=${project.version},
+                                                       
org.apache.ftpserver.listener;version=${project.version}, 
+                                                       
org.apache.ftpserver.main;version=${project.version},
+                                                       
org.apache.ftpserver.message;version=${project.version},
+                                                       
org.apache.ftpserver.ssl;version=${project.version},
+                                                       
org.apache.ftpserver.usermanager;version=${project.version}
                                                </Export-Package>
                                                <Private-Package> 
org.apache.ftpserver.command.impl,
                                                    
org.apache.ftpserver.command.impl.listing,
@@ -108,7 +108,7 @@
        </build>
        <dependencies>
                <dependency>
-                       <groupId>${groupId}</groupId>
+                       <groupId>${project.groupId}</groupId>
                        <artifactId>ftplet-api</artifactId>
                </dependency>
                <dependency>

Modified: mina/ftpserver/branches/1.0.x/distribution/pom.xml
URL: 
http://svn.apache.org/viewvc/mina/ftpserver/branches/1.0.x/distribution/pom.xml?rev=939765&r1=939764&r2=939765&view=diff
==============================================================================
--- mina/ftpserver/branches/1.0.x/distribution/pom.xml (original)
+++ mina/ftpserver/branches/1.0.x/distribution/pom.xml Fri Apr 30 18:10:34 2010
@@ -131,8 +131,8 @@
               <tasks>
                 <echo>Downloading Manual</echo>
                 <mkdir dir="${project.build.directory}/site"></mkdir>
-                <get 
src="http://people.apache.org/~ngn/ftpserver/docs/ftpserver.zip"; 
dest="${project.build.directory}/${pom.artifactId}-docs.zip"></get>
-                <unzip 
src="${project.build.directory}/${pom.artifactId}-docs.zip" 
dest="${project.build.directory}/docs"></unzip>
+                <get 
src="http://people.apache.org/~ngn/ftpserver/docs/ftpserver.zip"; 
dest="${project.build.directory}/${project.artifactId}-docs.zip"></get>
+                <unzip 
src="${project.build.directory}/${project.artifactId}-docs.zip" 
dest="${project.build.directory}/docs"></unzip>
               </tasks>
             </configuration>
           </execution>

Modified: 
mina/ftpserver/branches/1.0.x/examples/ftpserver-example-spring-war/pom.xml
URL: 
http://svn.apache.org/viewvc/mina/ftpserver/branches/1.0.x/examples/ftpserver-example-spring-war/pom.xml?rev=939765&r1=939764&r2=939765&view=diff
==============================================================================
--- mina/ftpserver/branches/1.0.x/examples/ftpserver-example-spring-war/pom.xml 
(original)
+++ mina/ftpserver/branches/1.0.x/examples/ftpserver-example-spring-war/pom.xml 
Fri Apr 30 18:10:34 2010
@@ -37,7 +37,7 @@
         <dependency>
             <groupId>org.apache.ftpserver</groupId>
             <artifactId>ftpserver-core</artifactId>
-            <version>${pom.version}</version>
+            <version>${project.version}</version>
         </dependency>
                <dependency>
                        <groupId>javax.servlet</groupId>

Modified: 
mina/ftpserver/branches/1.0.x/examples/ftpserver-osgi-ftplet-service/pom.xml
URL: 
http://svn.apache.org/viewvc/mina/ftpserver/branches/1.0.x/examples/ftpserver-osgi-ftplet-service/pom.xml?rev=939765&r1=939764&r2=939765&view=diff
==============================================================================
--- 
mina/ftpserver/branches/1.0.x/examples/ftpserver-osgi-ftplet-service/pom.xml 
(original)
+++ 
mina/ftpserver/branches/1.0.x/examples/ftpserver-osgi-ftplet-service/pom.xml 
Fri Apr 30 18:10:34 2010
@@ -32,7 +32,7 @@
                <dependency>
                        <groupId>org.apache.ftpserver</groupId>
                        <artifactId>ftplet-api</artifactId>
-                       <version>${pom.version}</version>
+                       <version>${project.version}</version>
                </dependency>
                <dependency>
                  <groupId>org.osgi</groupId>

Modified: 
mina/ftpserver/branches/1.0.x/examples/ftpserver-osgi-spring-service/pom.xml
URL: 
http://svn.apache.org/viewvc/mina/ftpserver/branches/1.0.x/examples/ftpserver-osgi-spring-service/pom.xml?rev=939765&r1=939764&r2=939765&view=diff
==============================================================================
--- 
mina/ftpserver/branches/1.0.x/examples/ftpserver-osgi-spring-service/pom.xml 
(original)
+++ 
mina/ftpserver/branches/1.0.x/examples/ftpserver-osgi-spring-service/pom.xml 
Fri Apr 30 18:10:34 2010
@@ -32,7 +32,7 @@
                <dependency>
                        <groupId>org.apache.ftpserver</groupId>
                        <artifactId>ftpserver-core</artifactId>
-                       <version>${pom.version}</version>
+                       <version>${project.version}</version>
                </dependency>
        </dependencies>
        <build>

Modified: mina/ftpserver/branches/1.0.x/ftplet-api/pom.xml
URL: 
http://svn.apache.org/viewvc/mina/ftpserver/branches/1.0.x/ftplet-api/pom.xml?rev=939765&r1=939764&r2=939765&view=diff
==============================================================================
--- mina/ftpserver/branches/1.0.x/ftplet-api/pom.xml (original)
+++ mina/ftpserver/branches/1.0.x/ftplet-api/pom.xml Fri Apr 30 18:10:34 2010
@@ -52,7 +52,7 @@
                                        <instructions>
                                                <Bundle-SymbolicName> 
${artifactId}</Bundle-SymbolicName>
                                                <Bundle-Vendor>The Apache 
Software Foundation</Bundle-Vendor>
-                                               <Export-Package> 
org.apache.ftpserver.ftplet;version=${pom.version}</Export-Package>
+                                               <Export-Package> 
org.apache.ftpserver.ftplet;version=${project.version}</Export-Package>
                                        </instructions>
                                </configuration>
                        </plugin>

Modified: mina/ftpserver/branches/1.0.x/pom.xml
URL: 
http://svn.apache.org/viewvc/mina/ftpserver/branches/1.0.x/pom.xml?rev=939765&r1=939764&r2=939765&view=diff
==============================================================================
--- mina/ftpserver/branches/1.0.x/pom.xml (original)
+++ mina/ftpserver/branches/1.0.x/pom.xml Fri Apr 30 18:10:34 2010
@@ -136,15 +136,15 @@
     <dependencies>
       <!-- Submodules -->
       <dependency>
-        <groupId>${groupId}</groupId>
+        <groupId>${project.groupId}</groupId>
         <artifactId>ftplet-api</artifactId>
-        <version>${pom.version}</version>
+        <version>${project.version}</version>
       </dependency>
 
       <dependency>
-        <groupId>${groupId}</groupId>
+        <groupId>${project.groupId}</groupId>
         <artifactId>ftpserver-core</artifactId>
-        <version>${pom.version}</version>
+        <version>${project.version}</version>
       </dependency>
 
       <dependency>


Reply via email to