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 c6c9c93 CLEREZZA-1057: Add releases/20200220
c6c9c93 is described below
commit c6c9c9336fddfdecc95502d9121cee5f06102bf5
Author: Hasan <[email protected]>
AuthorDate: Fri Feb 21 00:08:36 2020 +0100
CLEREZZA-1057: Add releases/20200220
---
releases/20200220/README.md | 14 ++++
releases/20200220/pom.xml | 88 +++++++++++++++++++++++
releases/20200220/src/assembly/source-release.xml | 38 ++++++++++
3 files changed, 140 insertions(+)
diff --git a/releases/20200220/README.md b/releases/20200220/README.md
new file mode 100644
index 0000000..304f751
--- /dev/null
+++ b/releases/20200220/README.md
@@ -0,0 +1,14 @@
+# Apache Clerezza Partial Release 20200220
+
+This is a partial release of Apache Clerezza consisting of
+- Representation 2.0.0
+- SPARQL 2.0.0
+- Test Utils 2.0.0
+
+To build it run
+
+ mvn install
+
+from the folder
+
+ releases/20200220/
diff --git a/releases/20200220/pom.xml b/releases/20200220/pom.xml
new file mode 100644
index 0000000..97d4810
--- /dev/null
+++ b/releases/20200220/pom.xml
@@ -0,0 +1,88 @@
+<?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>20200220</artifactId>
+ <version>3-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <name>Clerezza - Partial Release 20200220</name>
+
+ <modules>
+ <module>../../representation</module>
+ <module>../../sparql</module>
+ <module>../../test.utils</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/20200220/src/assembly/source-release.xml
b/releases/20200220/src/assembly/source-release.xml
new file mode 100644
index 0000000..3874b13
--- /dev/null
+++ b/releases/20200220/src/assembly/source-release.xml
@@ -0,0 +1,38 @@
+<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>representation/**</include>
+ <include>sparql/**</include>
+ <include>test.utils/**</include>
+ <include>releases/20200220/**</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>