You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@clerezza.apache.org by ha...@apache.org on 2020/02/02 23:25:19 UTC

[clerezza] branch master updated: CLEREZZA-1056: Add releases/20200202

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

hasan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/clerezza.git


The following commit(s) were added to refs/heads/master by this push:
     new 41a3be3  CLEREZZA-1056: Add releases/20200202
41a3be3 is described below

commit 41a3be3d262b87b9224d36f8aae23de8d1862f76
Author: Hasan <ha...@apache.org>
AuthorDate: Mon Feb 3 00:25:00 2020 +0100

    CLEREZZA-1056: Add releases/20200202
---
 releases/20200202/README.md                       | 13 ++++
 releases/20200202/pom.xml                         | 87 +++++++++++++++++++++++
 releases/20200202/src/assembly/source-release.xml | 37 ++++++++++
 3 files changed, 137 insertions(+)

diff --git a/releases/20200202/README.md b/releases/20200202/README.md
new file mode 100644
index 0000000..7fe38b0
--- /dev/null
+++ b/releases/20200202/README.md
@@ -0,0 +1,13 @@
+# Apache Clerezza Partial Release 20200202
+
+This is a partial release of Apache Clerezza consisting of
+- API Implementation 2.0.0
+- Ontologies 2.0.0
+
+To build it run
+
+    mvn install
+
+from the folder
+
+    releases/20200202/
diff --git a/releases/20200202/pom.xml b/releases/20200202/pom.xml
new file mode 100644
index 0000000..a084f9b
--- /dev/null
+++ b/releases/20200202/pom.xml
@@ -0,0 +1,87 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor  license  agreements.  See the NOTICE file distributed
+  with this work  for  additional  information  regarding  copyright
+  ownership.  The ASF  licenses  this file to you under  the  Apache
+  License, Version 2.0 (the "License"); you may not  use  this  file
+  except in compliance with the License.  You may obtain  a copy  of
+  the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless  required  by  applicable law  or  agreed  to  in  writing,
+  software  distributed  under  the  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/maven-v4_0_0.xsd">
+
+<!--
+    !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+    !!!!!!                                !!!!!!
+    !!!!!!   This pom is provided for     !!!!!!
+    !!!!!!   build convenience of the     !!!!!!
+    !!!!!!   partial release              !!!!!!
+    !!!!!!                                !!!!!!
+    !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+-->
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.clerezza</groupId>
+        <artifactId>clerezza</artifactId>
+        <version>8</version>
+        <relativePath>../../parent/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.clerezza.releases</groupId>
+    <artifactId>20200202</artifactId>
+    <version>2-SNAPSHOT</version>
+    <packaging>pom</packaging>
+    <name>Clerezza - Partial Release 20200202</name>
+
+    <modules>
+        <module>../../api-implementation</module>
+        <module>../../ontologies</module>
+    </modules>
+
+    <scm>
+        <url>https://github.com/apache/clerezza</url>
+        <connection>scm:git:https://gitbox.apache.org/repos/asf/clerezza.git</connection>
+        <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/clerezza.git</developerConnection>
+        <tag>HEAD</tag>
+    </scm>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-assembly-plugin</artifactId>
+                <version>3.2.0</version>
+                <executions>
+                    <execution>
+                        <id>distro-assembly</id>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>single</goal>
+                        </goals>
+                        <configuration>
+                            <descriptors>
+                                <descriptor>src/assembly/source-release.xml</descriptor>
+                            </descriptors>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-release-plugin</artifactId>
+                <version>2.5.3</version>
+                <configuration>
+                    <updateDependencies>false</updateDependencies>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+</project>
diff --git a/releases/20200202/src/assembly/source-release.xml b/releases/20200202/src/assembly/source-release.xml
new file mode 100644
index 0000000..de82561
--- /dev/null
+++ b/releases/20200202/src/assembly/source-release.xml
@@ -0,0 +1,37 @@
+<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3"
+          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+          xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 http://maven.apache.org/xsd/assembly-1.1.3.xsd">
+    <id>src</id>
+    <formats>
+        <format>zip</format>
+    </formats>
+    <baseDirectory>clerezza</baseDirectory>
+    <fileSets>
+        <fileSet>
+            <directory>../../</directory>
+            <outputDirectory>/</outputDirectory>
+            <includes>
+                <include>api-implementation/**</include>
+                <include>ontologies/**</include>
+                <include>releases/20200202/**</include>
+            </includes>
+            <excludes>
+                <exclude>%regex[(?!((?!${project.build.directory}/)[^/]+/)*src/).*${project.build.directory}.*]</exclude>
+                <exclude>**/*.iml</exclude>
+                <exclude>**/.idea/**</exclude>
+            </excludes>
+        </fileSet>
+        <fileSet>
+            <directory>${project.build.directory}/maven-shared-archive-resources/META-INF</directory>
+            <outputDirectory>/</outputDirectory>
+        </fileSet>
+        <!-- license, readme, etc. calculated at build time -->
+        <fileSet>
+            <directory>./</directory>
+            <outputDirectory>/</outputDirectory>
+            <includes>
+                <include>README.md</include>
+            </includes>
+        </fileSet>
+    </fileSets>
+</assembly>