This is an automated email from the ASF dual-hosted git repository.

elecharny pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mina-ftpserver.git


The following commit(s) were added to refs/heads/master by this push:
     new 5c7fa64  [maven-release-plugin] prepare release ftpserver-1.1.2
5c7fa64 is described below

commit 5c7fa64cdcd2ff24f9c2c971a28f42fb16145843
Author: emmanuel lecharny <elecha...@apache.org>
AuthorDate: Sun Dec 12 02:32:13 2021 +0100

    [maven-release-plugin] prepare release ftpserver-1.1.2
---
 core/pom.xml                                   | 10 ++++------
 distribution/pom.xml                           | 18 ++++++------------
 examples/ftpserver-example-spring-war/pom.xml  |  8 +++-----
 examples/ftpserver-osgi-ftplet-service/pom.xml |  4 ++--
 examples/ftpserver-osgi-spring-service/pom.xml |  4 ++--
 examples/pom.xml                               |  4 ++--
 ftplet-api/pom.xml                             |  6 +++---
 pom.xml                                        |  8 +++-----
 8 files changed, 25 insertions(+), 37 deletions(-)

diff --git a/core/pom.xml b/core/pom.xml
index 2d7a386..4bb2024 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -9,18 +9,16 @@
        License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR 
CONDITIONS 
        OF ANY KIND, either express or implied. See the License for the 
specific 
        language governing permissions and limitations under the License. -->
-<project xmlns="http://maven.apache.org/POM/4.0.0";
-       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-       xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
+<project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
        <parent>
                <artifactId>ftpserver-parent</artifactId>
                <groupId>org.apache.ftpserver</groupId>
-               <version>1.1.2-SNAPSHOT</version>
+               <version>1.1.2</version>
        </parent>
        <modelVersion>4.0.0</modelVersion>
        <artifactId>ftpserver-core</artifactId>
        <name>Apache FtpServer Core</name>
-       <version>1.1.2-SNAPSHOT</version>
+       <version>1.1.2</version>
        <packaging>bundle</packaging>
        <scm>
                <connection>
@@ -30,7 +28,7 @@
       scm:svn:https://svn.apache.org/repos/asf/mina/ftpserver/trunk/core
     </developerConnection>
                <url> 
http://svn.apache.org/viewvc/mina/ftpserver/trunk/core</url>
-               <tag>HEAD</tag>
+               <tag>ftpserver-1.1.2</tag>
        </scm>
        <build>
                <resources>
diff --git a/distribution/pom.xml b/distribution/pom.xml
index b48f6cd..ea45ac6 100644
--- a/distribution/pom.xml
+++ b/distribution/pom.xml
@@ -11,26 +11,24 @@
        language governing permissions and limitations under the License. -->
 
 
-<project xmlns="http://maven.apache.org/POM/4.0.0";
-       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-       xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
+<project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
        <parent>
                <artifactId>ftpserver-parent</artifactId>
                <groupId>org.apache.ftpserver</groupId>
-               <version>1.1.2-SNAPSHOT</version>
+               <version>1.1.2</version>
        </parent>
        <modelVersion>4.0.0</modelVersion>
        <groupId>org.apache.ftpserver</groupId>
        <artifactId>ftpserver</artifactId>
        <packaging>pom</packaging>
        <name>Apache FtpServer</name>
-       <version>1.1.2-SNAPSHOT</version>
+       <version>1.1.2</version>
 
        <scm>
                
<connection>scm:svn:http://svn.apache.org/repos/asf/mina/ftpserver/trunk/distribution</connection>
                
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/mina/ftpserver/trunk/distribution</developerConnection>
                
<url>http://svn.apache.org/viewvc/mina/ftpserver/trunk/distribution</url>
-               <tag>HEAD</tag>
+               <tag>ftpserver-1.1.2</tag>
        </scm>
 
        <build>
@@ -135,12 +133,8 @@
                                                                        <tasks>
                                                                                
<echo>Downloading Manual</echo>
                                                                                
<mkdir dir="${project.build.directory}/site" />
-                                                                               
<get
-                                                                               
        src="http://people.apache.org/~ngn/ftpserver/docs/ftpserver.zip";
-                                                                               
        dest="${project.build.directory}/${project.artifactId}-docs.zip" />
-                                                                               
<unzip
-                                                                               
        src="${project.build.directory}/${project.artifactId}-docs.zip"
-                                                                               
        dest="${project.build.directory}/docs" />
+                                                                               
<get src="http://people.apache.org/~ngn/ftpserver/docs/ftpserver.zip"; 
dest="${project.build.directory}/${project.artifactId}-docs.zip" />
+                                                                               
<unzip src="${project.build.directory}/${project.artifactId}-docs.zip" 
dest="${project.build.directory}/docs" />
                                                                        </tasks>
                                                                </configuration>
                                                        </execution>
diff --git a/examples/ftpserver-example-spring-war/pom.xml 
b/examples/ftpserver-example-spring-war/pom.xml
index a5d29f8..a6cf213 100644
--- a/examples/ftpserver-example-spring-war/pom.xml
+++ b/examples/ftpserver-example-spring-war/pom.xml
@@ -9,13 +9,11 @@
        License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR 
CONDITIONS 
        OF ANY KIND, either express or implied. See the License for the 
specific 
        language governing permissions and limitations under the License. -->
-<project xmlns="http://maven.apache.org/POM/4.0.0";
-       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-       xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
+<project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
        <parent>
                <artifactId>ftpserver-parent</artifactId>
                <groupId>org.apache.ftpserver</groupId>
-               <version>1.1.2-SNAPSHOT</version>
+               <version>1.1.2</version>
                <relativePath>../../pom.xml</relativePath>
        </parent>
 
@@ -24,7 +22,7 @@
        <artifactId>ftpserver-spring-war</artifactId>
        <name>FtpServer Spring web project example</name>
        <packaging>war</packaging>
-       <version>1.1.2-SNAPSHOT</version>
+       <version>1.1.2</version>
 
        <dependencies>
                <dependency>
diff --git a/examples/ftpserver-osgi-ftplet-service/pom.xml 
b/examples/ftpserver-osgi-ftplet-service/pom.xml
index 55f7edc..1bb97ca 100644
--- a/examples/ftpserver-osgi-ftplet-service/pom.xml
+++ b/examples/ftpserver-osgi-ftplet-service/pom.xml
@@ -18,7 +18,7 @@
   <parent>
     <artifactId>ftpserver-parent</artifactId>
     <groupId>org.apache.ftpserver</groupId>
-    <version>1.1.2-SNAPSHOT</version>
+    <version>1.1.2</version>
     <relativePath>../../pom.xml</relativePath>
   </parent>
   
@@ -27,7 +27,7 @@
   <artifactId>ftpserver-osgi-ftplet-service</artifactId>
   <name>FtpServer OSGi Ftplet service example</name>
   <packaging>bundle</packaging>
-  <version>1.1.2-SNAPSHOT</version>
+  <version>1.1.2</version>
   
   <dependencies>
     <dependency>
diff --git a/examples/ftpserver-osgi-spring-service/pom.xml 
b/examples/ftpserver-osgi-spring-service/pom.xml
index 8968e2f..44ec911 100644
--- a/examples/ftpserver-osgi-spring-service/pom.xml
+++ b/examples/ftpserver-osgi-spring-service/pom.xml
@@ -18,7 +18,7 @@
   <parent>
     <artifactId>ftpserver-parent</artifactId>
     <groupId>org.apache.ftpserver</groupId>
-    <version>1.1.2-SNAPSHOT</version>
+    <version>1.1.2</version>
     <relativePath>../../pom.xml</relativePath>
   </parent>
   
@@ -27,7 +27,7 @@
   <artifactId>ftpserver-osgi-spring-service</artifactId>
   <name>FtpServer OSGi Spring-DM example</name>
   <packaging>bundle</packaging>
-  <version>1.1.2-SNAPSHOT</version>
+  <version>1.1.2</version>
   
   <dependencies>
     <dependency>
diff --git a/examples/pom.xml b/examples/pom.xml
index 5692c6c..fddac7c 100644
--- a/examples/pom.xml
+++ b/examples/pom.xml
@@ -21,14 +21,14 @@
   <parent>
       <artifactId>ftpserver-parent</artifactId>
       <groupId>org.apache.ftpserver</groupId>
-      <version>1.1.2-SNAPSHOT</version>
+      <version>1.1.2</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.ftpserver</groupId>
   <artifactId>ftpserver-examples</artifactId>
   <packaging>pom</packaging>
   <name>Apache FtpServer Examples</name>
-  <version>1.1.2-SNAPSHOT</version>
+  <version>1.1.2</version>
   <modules>
     <module>ftpserver-example-spring-war</module>
     <module>ftpserver-osgi-ftplet-service</module>
diff --git a/ftplet-api/pom.xml b/ftplet-api/pom.xml
index 54d01ca..7044712 100644
--- a/ftplet-api/pom.xml
+++ b/ftplet-api/pom.xml
@@ -17,13 +17,13 @@
   <parent>
     <artifactId>ftpserver-parent</artifactId>
     <groupId>org.apache.ftpserver</groupId>
-    <version>1.1.2-SNAPSHOT</version>
+    <version>1.1.2</version>
   </parent>
   
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.ftpserver</groupId>
   <artifactId>ftplet-api</artifactId>
-  <version>1.1.2-SNAPSHOT</version>
+  <version>1.1.2</version>
   <packaging>bundle</packaging>
   <name>Apache Ftplet API</name>
   
@@ -43,7 +43,7 @@
     </developerConnection>
     <url>http://svn.apache.org/viewvc/mina/ftpserver/trunk/ftplet-api
     </url>
-    <tag>HEAD</tag>
+    <tag>ftpserver-1.1.2</tag>
   </scm>
   
   <build>
diff --git a/pom.xml b/pom.xml
index 9fd3202..6c2685e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -10,9 +10,7 @@
        OF ANY KIND, either express or implied. See the License for the 
specific 
        language governing permissions and limitations under the License. -->
 
-<project xmlns="http://maven.apache.org/POM/4.0.0";
-       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-       xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
+<project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
        <parent>
                <artifactId>apache</artifactId>
                <groupId>org.apache</groupId>
@@ -23,7 +21,7 @@
        <artifactId>ftpserver-parent</artifactId>
        <packaging>pom</packaging>
        <name>Apache FtpServer Parent</name>
-       <version>1.1.2-SNAPSHOT</version>
+       <version>1.1.2</version>
        <url>https://mina.apache.org/ftpserver</url>
        <issueManagement>
                <system>Jira</system>
@@ -125,7 +123,7 @@
                
<connection>scm:git:https://gitbox.apache.org/repos/asf/mina-ftpserver.git</connection>
                
<developerConnection>scm:git:https://gitbox.apache.org/repos/asf/mina-ftpserver.git</developerConnection>
                
<url>https://github.com/apache/mina-ftpserver/tree/${project.scm.tag}</url>
-               <tag>master</tag>
+               <tag>ftpserver-1.1.2</tag>
        </scm>
 
        <properties>

Reply via email to