You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@clerezza.apache.org by re...@apache.org on 2016/04/21 21:00:19 UTC

[2/5] clerezza git commit: started 201604 release

started 201604 release


Project: http://git-wip-us.apache.org/repos/asf/clerezza/repo
Commit: http://git-wip-us.apache.org/repos/asf/clerezza/commit/f8a5c714
Tree: http://git-wip-us.apache.org/repos/asf/clerezza/tree/f8a5c714
Diff: http://git-wip-us.apache.org/repos/asf/clerezza/diff/f8a5c714

Branch: refs/heads/master
Commit: f8a5c71438bba6aeb8c3f2168b4095853e83c65d
Parents: 6517991
Author: Reto Gmür <re...@apache.org>
Authored: Thu Apr 21 17:48:23 2016 +0200
Committer: Reto Gmür <re...@apache.org>
Committed: Thu Apr 21 17:49:15 2016 +0200

----------------------------------------------------------------------
 releases/201604/README.md                       | 15 +++
 releases/201604/pom.xml                         | 98 ++++++++++++++++++++
 releases/201604/src/assembly/source-release.xml | 48 ++++++++++
 3 files changed, 161 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/clerezza/blob/f8a5c714/releases/201604/README.md
----------------------------------------------------------------------
diff --git a/releases/201604/README.md b/releases/201604/README.md
new file mode 100644
index 0000000..7818e2d
--- /dev/null
+++ b/releases/201604/README.md
@@ -0,0 +1,15 @@
+# CLEREZZA 201508 release
+
+This is a partial relase of clerezza.
+
+To build it run
+
+    mvn install
+
+from the folder
+
+    releases/201508/
+
+after that will have several launchers in the target directories below
+
+    provisioning/launchers/

http://git-wip-us.apache.org/repos/asf/clerezza/blob/f8a5c714/releases/201604/pom.xml
----------------------------------------------------------------------
diff --git a/releases/201604/pom.xml b/releases/201604/pom.xml
new file mode 100644
index 0000000..e1f706c
--- /dev/null
+++ b/releases/201604/pom.xml
@@ -0,0 +1,98 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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">
+
+    <!--
+
+        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.
+    -->
+
+    <!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+    !!!!!!                                !!!!!!
+    !!!!!!    This pom is only provided   !!!!!!
+    !!!!!!   for build convenience and    !!!!!!
+    !!!!!!   should not be released       !!!!!!
+    !!!!!!                                !!!!!!
+    !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
+
+    <modelVersion>4.0.0</modelVersion>
+    
+    <parent>
+        <groupId>org.apache.clerezza</groupId>
+        <artifactId>clerezza</artifactId>
+        <version>7</version>
+        <relativePath>../../parent</relativePath>
+    </parent>
+
+    <groupId>org.apache.clerezza.releases</groupId>
+    <artifactId>201508</artifactId>
+    <version>1</version>
+    <packaging>pom</packaging>
+    <name>Clerezza - Release 201508</name>
+
+    <modules>
+        <module>../../rdf/jena</module>
+        <module>../../rdf/rdfjson</module>
+        <module>../../rdf/web/rdf.web.core</module>
+        <!-- this is not yet used in launcher (as it needs to be listed inthe feature.xml -->
+        <module>../../jaxrs.whiteboard.jersey</module>
+        <module>../../provisioning/jaxrs-whiteboard</module>
+        <module>../../provisioning/rdf</module>
+        <module>../../provisioning/rdf.tdb</module>
+        <module>../../provisioning/rdf.web</module>
+        <module>../../provisioning/launchers/content-launcher</module>
+        <module>../../provisioning/launchers/linked-data-launcher</module>
+        <!-- This cannot be released as it has a SNAPSHOT dependency to a stanboltest utility,
+        also it isn't particularly useful to have this in mavencentral.
+        It is howver included in the source distribution.
+        <module>../../provisioning/launchers/tests/content-launcher-tests</module> -->
+    </modules>
+    <scm>
+        <connection>scm:git:git://git.apache.org/clerezza.git</connection>
+        <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/clerezza.git</developerConnection>
+        <url>http://git.apache.org/clerezza.git</url>
+    <tag>201508-1</tag>
+  </scm>
+    <build>
+        <plugins>
+            <plugin>
+                <artifactId>maven-assembly-plugin</artifactId>
+                <version>2.5.4</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.2</version>
+                <configuration>
+                    <updateDependencies>false</updateDependencies>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+</project>

http://git-wip-us.apache.org/repos/asf/clerezza/blob/f8a5c714/releases/201604/src/assembly/source-release.xml
----------------------------------------------------------------------
diff --git a/releases/201604/src/assembly/source-release.xml b/releases/201604/src/assembly/source-release.xml
new file mode 100644
index 0000000..b5b5c4a
--- /dev/null
+++ b/releases/201604/src/assembly/source-release.xml
@@ -0,0 +1,48 @@
+<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>rdf/jena/**</include>
+                <include>rdf/rdfjson/**</include>
+                <include>rdf/web/rdf.web.core/**</include>
+                <include>jaxrs.whiteboard.jersey/**</include>
+                <include>provisioning/jaxrs-whiteboard/**</include>
+                <include>provisioning/rdf/**</include>
+                <include>provisioning/rdf.tdb/**</include>
+                <include>provisioning/rdf.web/**</include>
+                <include>provisioning/launchers/content-launcher/**</include>
+                <include>provisioning/launchers/linked-data-launcher/**</include>
+                <include>provisioning/launchers/tests/content-launcher-tests/**</include>
+                <include>releases/201508/**</include>
+            </includes>
+            <excludes>
+                <exclude>%regex[(?!((?!${project.build.directory}/)[^/]+/)*src/).*${project.build.directory}.*]</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>
\ No newline at end of file