Skip to content

Commit

Permalink
Fix apache#170: add license headers and remove typos
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolaferraro committed Oct 23, 2019
1 parent 9c5d205 commit 42304f8
Show file tree
Hide file tree
Showing 5 changed files with 50 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,6 @@ public final class Constants {
public static final String ENV_CAMEL_K_CUSTOMIZERS = "CAMEL_K_CUSTOMIZERS";
public static final String PROPERTY_CAMEL_K_CUSTOMIZER = "camel.k.customizer";

public static final String ENV_CAMEL_K_WEBHOOK_ACTION = "CAMEL_K_WEBHOOK_ACTION";
public static final String PROPERTY_CAMEL_K_WEBHOOK_ACTION = "camel.k.webhook.action";

public static final String SCHEME_CLASSPATH = "classpath:";
public static final String SCHEME_FILE = "file:";
public static final String LOGGING_LEVEL_PREFIX = "logging.level.";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
* 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.
*/
package org.apache.camel.k.webhook;

public enum WebhookAction {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
* 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.
*/
package org.apache.camel.k.webhook;

import org.apache.camel.CamelContext;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
* 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.
*/
package org.apache.camel.k.webhook;

import java.util.Collections;
Expand Down
4 changes: 2 additions & 2 deletions camel-k-runtime-webhook/src/test/resources/log4j2-test.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
<Logger name="io.netty" level="INFO"/>
<Logger name="io.netty.handler.logging" level="DEBUG"/>
<Root level="INFO">
<AppenderRef ref="STDOUT"/>

<!--<AppenderRef ref="STDOUT"/>-->
<AppenderRef ref="NONE"/>
</Root>
</Loggers>

Expand Down

0 comments on commit 42304f8

Please sign in to comment.