You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by nf...@apache.org on 2020/10/08 17:29:15 UTC

svn commit: r41852 - /dev/camel/camel-k-runtime/1.5.0/

Author: nferraro
Date: Thu Oct  8 17:29:15 2020
New Revision: 41852

Log:
Camel K Runtime 1.5.0

Added:
    dev/camel/camel-k-runtime/1.5.0/
    dev/camel/camel-k-runtime/1.5.0/apache-camel-k-runtime-1.5.0-source-release.zip   (with props)
    dev/camel/camel-k-runtime/1.5.0/apache-camel-k-runtime-1.5.0-source-release.zip.asc   (with props)
    dev/camel/camel-k-runtime/1.5.0/apache-camel-k-runtime-1.5.0-source-release.zip.md5
    dev/camel/camel-k-runtime/1.5.0/apache-camel-k-runtime-1.5.0-source-release.zip.sha1
    dev/camel/camel-k-runtime/1.5.0/apache-camel-k-runtime-1.5.0.pom
    dev/camel/camel-k-runtime/1.5.0/apache-camel-k-runtime-1.5.0.pom.asc   (with props)
    dev/camel/camel-k-runtime/1.5.0/apache-camel-k-runtime-1.5.0.pom.md5
    dev/camel/camel-k-runtime/1.5.0/apache-camel-k-runtime-1.5.0.pom.sha1

Added: dev/camel/camel-k-runtime/1.5.0/apache-camel-k-runtime-1.5.0-source-release.zip
==============================================================================
Binary file - no diff available.

Propchange: dev/camel/camel-k-runtime/1.5.0/apache-camel-k-runtime-1.5.0-source-release.zip
------------------------------------------------------------------------------
    svn:mime-type = application/zip

Added: dev/camel/camel-k-runtime/1.5.0/apache-camel-k-runtime-1.5.0-source-release.zip.asc
==============================================================================
Binary file - no diff available.

Propchange: dev/camel/camel-k-runtime/1.5.0/apache-camel-k-runtime-1.5.0-source-release.zip.asc
------------------------------------------------------------------------------
    svn:mime-type = application/pgp-signature

Added: dev/camel/camel-k-runtime/1.5.0/apache-camel-k-runtime-1.5.0-source-release.zip.md5
==============================================================================
--- dev/camel/camel-k-runtime/1.5.0/apache-camel-k-runtime-1.5.0-source-release.zip.md5 (added)
+++ dev/camel/camel-k-runtime/1.5.0/apache-camel-k-runtime-1.5.0-source-release.zip.md5 Thu Oct  8 17:29:15 2020
@@ -0,0 +1 @@
+15e3d75939297c48a58a832def57f3b1
\ No newline at end of file

Added: dev/camel/camel-k-runtime/1.5.0/apache-camel-k-runtime-1.5.0-source-release.zip.sha1
==============================================================================
--- dev/camel/camel-k-runtime/1.5.0/apache-camel-k-runtime-1.5.0-source-release.zip.sha1 (added)
+++ dev/camel/camel-k-runtime/1.5.0/apache-camel-k-runtime-1.5.0-source-release.zip.sha1 Thu Oct  8 17:29:15 2020
@@ -0,0 +1 @@
+0909ff28aab172eb8b363476a137d5c956ea38a9
\ No newline at end of file

Added: dev/camel/camel-k-runtime/1.5.0/apache-camel-k-runtime-1.5.0.pom
==============================================================================
--- dev/camel/camel-k-runtime/1.5.0/apache-camel-k-runtime-1.5.0.pom (added)
+++ dev/camel/camel-k-runtime/1.5.0/apache-camel-k-runtime-1.5.0.pom Thu Oct  8 17:29:15 2020
@@ -0,0 +1,71 @@
+<?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/xsd/maven-4.0.0.xsd">
+  <parent>
+    <groupId>org.apache.camel.k</groupId>
+    <artifactId>camel-k-runtime-parent</artifactId>
+    <version>1.5.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <packaging>pom</packaging>
+
+  <artifactId>apache-camel-k-runtime</artifactId>
+  <profiles>
+    <profile>
+      <id>release</id>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-assembly-plugin</artifactId>
+            <version>${maven-assembly-plugin-version}</version>
+            <executions>
+              <execution>
+                <id>source-release</id>
+                <phase>package</phase>
+                <goals>
+                  <goal>single</goal>
+                </goals>
+                <configuration>
+                  <finalName>apache-camel-k-runtime-${project.version}</finalName>
+                  <descriptors>
+                    <descriptor>src/main/assemblies/source-release.xml</descriptor>
+                  </descriptors>
+                </configuration>
+              </execution>
+              <execution>
+                <id>maven-repository</id>
+                <phase>package</phase>
+                <goals>
+                  <goal>single</goal>
+                </goals>
+                <configuration>
+                  <descriptors>
+                    <descriptor>src/main/assemblies/repository.xml</descriptor>
+                  </descriptors>
+                </configuration>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
+</project>

Added: dev/camel/camel-k-runtime/1.5.0/apache-camel-k-runtime-1.5.0.pom.asc
==============================================================================
Binary file - no diff available.

Propchange: dev/camel/camel-k-runtime/1.5.0/apache-camel-k-runtime-1.5.0.pom.asc
------------------------------------------------------------------------------
    svn:mime-type = application/pgp-signature

Added: dev/camel/camel-k-runtime/1.5.0/apache-camel-k-runtime-1.5.0.pom.md5
==============================================================================
--- dev/camel/camel-k-runtime/1.5.0/apache-camel-k-runtime-1.5.0.pom.md5 (added)
+++ dev/camel/camel-k-runtime/1.5.0/apache-camel-k-runtime-1.5.0.pom.md5 Thu Oct  8 17:29:15 2020
@@ -0,0 +1 @@
+fadb171f9be1f01a508f7245e2081dc5
\ No newline at end of file

Added: dev/camel/camel-k-runtime/1.5.0/apache-camel-k-runtime-1.5.0.pom.sha1
==============================================================================
--- dev/camel/camel-k-runtime/1.5.0/apache-camel-k-runtime-1.5.0.pom.sha1 (added)
+++ dev/camel/camel-k-runtime/1.5.0/apache-camel-k-runtime-1.5.0.pom.sha1 Thu Oct  8 17:29:15 2020
@@ -0,0 +1 @@
+766515732295e9fc7b0355a8ad5783ac67e404a0
\ No newline at end of file