You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by oa...@apache.org on 2019/12/13 13:13:26 UTC

[camel-kafka-connector] branch add-checkstyle updated: remove .flattened-pom file

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

oalsafi pushed a commit to branch add-checkstyle
in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector.git


The following commit(s) were added to refs/heads/add-checkstyle by this push:
     new ce5a5fd  remove .flattened-pom file
ce5a5fd is described below

commit ce5a5fd26eaba5636c63a6e24598cb67f0f023cc
Author: Omar Al-Safi <om...@gmail.com>
AuthorDate: Fri Dec 13 14:13:02 2019 +0100

    remove .flattened-pom file
---
 buildingtools/.flattened-pom.xml | 133 ---------------------------------------
 1 file changed, 133 deletions(-)

diff --git a/buildingtools/.flattened-pom.xml b/buildingtools/.flattened-pom.xml
deleted file mode 100644
index 947ee53..0000000
--- a/buildingtools/.flattened-pom.xml
+++ /dev/null
@@ -1,133 +0,0 @@
-<?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 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
-    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
-  <modelVersion>4.0.0</modelVersion>
-  <parent>
-    <groupId>org.apache.camel</groupId>
-    <artifactId>camel</artifactId>
-    <version>3.1.0-SNAPSHOT</version>
-  </parent>
-  <groupId>org.apache.camel</groupId>
-  <artifactId>camel-buildtools</artifactId>
-  <version>3.1.0-SNAPSHOT</version>
-  <name>Camel :: Buildtools</name>
-  <description>The build tools for the Apache Camel project</description>
-  <licenses>
-    <license>
-      <name>Apache License, Version 2.0</name>
-      <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
-      <distribution>repo</distribution>
-    </license>
-  </licenses>
-  <properties>
-    <maven.test.skip>true</maven.test.skip>
-  </properties>
-  <build>
-    <resources>
-      <resource>
-        <filtering>true</filtering>
-        <directory>src/main/resources</directory>
-      </resource>
-    </resources>
-    <plugins>
-      <plugin>
-        <artifactId>maven-remote-resources-plugin</artifactId>
-        <configuration>
-          <skip>true</skip>
-        </configuration>
-      </plugin>
-      <plugin>
-        <groupId>com.mycila</groupId>
-        <artifactId>license-maven-plugin</artifactId>
-        <version>${mycila-license-version}</version>
-        <executions>
-          <execution>
-            <id>default-cli</id>
-            <phase>generate-resources</phase>
-            <goals>
-              <goal>format</goal>
-            </goals>
-            <configuration>
-              <header>src/main/resources/header.txt</header>
-              <includes>
-                <include>**/header-java.txt</include>
-                <include>**/header-properties.txt</include>
-                <include>**/header-xml.txt</include>
-              </includes>
-              <mapping>
-                <header-java.txt>SLASHSTAR_STYLE</header-java.txt>
-                <header-properties.txt>CAMEL_PROPERTIES_STYLE</header-properties.txt>
-                <header-xml.txt>XML_STYLE</header-xml.txt>
-              </mapping>
-              <headerDefinitions>
-                <headerDefinition>src/main/resources/license-properties-headerdefinition.xml</headerDefinition>
-              </headerDefinitions>
-            </configuration>
-          </execution>
-        </executions>
-      </plugin>
-      <plugin>
-        <groupId>org.codehaus.gmavenplus</groupId>
-        <artifactId>gmavenplus-plugin</artifactId>
-        <version>${gmavenplus-plugin-version}</version>
-        <executions>
-          <execution>
-            <phase>generate-resources</phase>
-            <goals>
-              <goal>execute</goal>
-            </goals>
-            <configuration>
-              <scripts>
-                <script>import groovy.xml.XmlUtil
-                                    project.properties['header-java'] = XmlUtil.escapeXml(new File(project.basedir, 'src/main/resources/header-java.txt').text.replace('\r', '').replace('\n', '\\n'))
-                                    project.properties['header-properties'] = XmlUtil.escapeXml(new File(project.basedir, 'src/main/resources/header-properties.txt').text.replace('\r', '').replace('\n', '\\n'))
-                                    project.properties['header-xml'] = XmlUtil.escapeXml(new File(project.basedir, 'src/main/resources/header-xml.txt').text.replace('\r', '').replaceAll('(.*)\n', '^\\\\Q$1\\\\E\\$\\\\n'))</script>
-              </scripts>
-            </configuration>
-          </execution>
-        </executions>
-        <dependencies>
-          <dependency>
-            <groupId>org.codehaus.groovy</groupId>
-            <artifactId>groovy-ant</artifactId>
-            <version>${groovy-version}</version>
-            <scope>runtime</scope>
-          </dependency>
-          <dependency>
-            <groupId>org.codehaus.groovy</groupId>
-            <artifactId>groovy-xml</artifactId>
-            <version>${groovy-version}</version>
-            <scope>runtime</scope>
-          </dependency>
-        </dependencies>
-      </plugin>
-      <plugin>
-        <artifactId>maven-resources-plugin</artifactId>
-        <configuration>
-          <delimiters>
-            <delimiter>${*}</delimiter>
-          </delimiters>
-          <useDefaultDelimiters>false</useDefaultDelimiters>
-        </configuration>
-      </plugin>
-    </plugins>
-  </build>
-</project>