Repository: maven-integration-testing Updated Branches: refs/heads/master ef7b0d378 -> 3987b9fd6
Added some missing license headers Project: http://git-wip-us.apache.org/repos/asf/maven-integration-testing/repo Commit: http://git-wip-us.apache.org/repos/asf/maven-integration-testing/commit/4b717265 Tree: http://git-wip-us.apache.org/repos/asf/maven-integration-testing/tree/4b717265 Diff: http://git-wip-us.apache.org/repos/asf/maven-integration-testing/diff/4b717265 Branch: refs/heads/master Commit: 4b7172658ea22c83425809eb56eeb15352656766 Parents: ef7b0d3 Author: Kristian Rosenvold <krosenv...@apache.org> Authored: Sat Jun 20 13:55:50 2015 +0200 Committer: Kristian Rosenvold <krosenv...@apache.org> Committed: Sat Jun 20 13:58:00 2015 +0200 ---------------------------------------------------------------------- README.md | 18 +++++++++++++++++ .../META-INF/maven/archetype-metadata.xml | 21 +++++++++++++++++++- .../src/main/resources/rule_set.xml | 18 +++++++++++++++++ .../checkstyle-test/src/main/java/Class.java | 19 ++++++++++++++++++ .../src/main/resources/rule_set.xml | 18 +++++++++++++++++ .../src/main/resources/stc_checks.xml | 18 +++++++++++++++++ .../checkstyle-test/src/main/java/Class.java | 18 +++++++++++++++++ run-its.sh | 19 ++++++++++++++++++ src/site/apt/index.apt | 21 ++++++++++++++++++++ 9 files changed, 169 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/maven-integration-testing/blob/4b717265/README.md ---------------------------------------------------------------------- diff --git a/README.md b/README.md index 214cbf2..47233cb 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,21 @@ +<!--- +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. +--> Maven Core Integration Tests ======== http://git-wip-us.apache.org/repos/asf/maven-integration-testing/blob/4b717265/core-it-support/maven-it-sample-archetype/src/main/resources/META-INF/maven/archetype-metadata.xml ---------------------------------------------------------------------- diff --git a/core-it-support/maven-it-sample-archetype/src/main/resources/META-INF/maven/archetype-metadata.xml b/core-it-support/maven-it-sample-archetype/src/main/resources/META-INF/maven/archetype-metadata.xml index 4aba45d..9efaf7a 100644 --- a/core-it-support/maven-it-sample-archetype/src/main/resources/META-INF/maven/archetype-metadata.xml +++ b/core-it-support/maven-it-sample-archetype/src/main/resources/META-INF/maven/archetype-metadata.xml @@ -1,4 +1,23 @@ -<?xml version="1.0" encoding="UTF-8"?><archetype-descriptor name="maven-it-sample"> +<?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. +--> +<archetype-descriptor name="maven-it-sample"> <fileSets> <fileSet filtered="true" packaged="true" encoding="UTF-8"> <directory>src/test/java</directory> http://git-wip-us.apache.org/repos/asf/maven-integration-testing/blob/4b717265/core-it-support/maven-it-sample-archetype/src/main/resources/archetype-resources/src/test/resources/mng-xxxx/checkstyle-assembly/src/main/resources/rule_set.xml ---------------------------------------------------------------------- diff --git a/core-it-support/maven-it-sample-archetype/src/main/resources/archetype-resources/src/test/resources/mng-xxxx/checkstyle-assembly/src/main/resources/rule_set.xml b/core-it-support/maven-it-sample-archetype/src/main/resources/archetype-resources/src/test/resources/mng-xxxx/checkstyle-assembly/src/main/resources/rule_set.xml index 55ea0d3..1976ebf 100644 --- a/core-it-support/maven-it-sample-archetype/src/main/resources/archetype-resources/src/test/resources/mng-xxxx/checkstyle-assembly/src/main/resources/rule_set.xml +++ b/core-it-support/maven-it-sample-archetype/src/main/resources/archetype-resources/src/test/resources/mng-xxxx/checkstyle-assembly/src/main/resources/rule_set.xml @@ -2,6 +2,24 @@ #set( $symbol_dollar = '$' ) #set( $symbol_escape = '\' ) <?xml version="1.0"?> +<!-- +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. +--> <ruleset name="EPHS Custom ruleset" xmlns="http://pmd.sf.net/ruleset/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" http://git-wip-us.apache.org/repos/asf/maven-integration-testing/blob/4b717265/core-it-support/maven-it-sample-archetype/src/main/resources/archetype-resources/src/test/resources/mng-xxxx/checkstyle-test/src/main/java/Class.java ---------------------------------------------------------------------- diff --git a/core-it-support/maven-it-sample-archetype/src/main/resources/archetype-resources/src/test/resources/mng-xxxx/checkstyle-test/src/main/java/Class.java b/core-it-support/maven-it-sample-archetype/src/main/resources/archetype-resources/src/test/resources/mng-xxxx/checkstyle-test/src/main/java/Class.java index 89432ba..49a95de 100644 --- a/core-it-support/maven-it-sample-archetype/src/main/resources/archetype-resources/src/test/resources/mng-xxxx/checkstyle-test/src/main/java/Class.java +++ b/core-it-support/maven-it-sample-archetype/src/main/resources/archetype-resources/src/test/resources/mng-xxxx/checkstyle-test/src/main/java/Class.java @@ -1,3 +1,22 @@ +/* + * 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. + */ + #set( $symbol_pound = '#' ) #set( $symbol_dollar = '$' ) #set( $symbol_escape = '\' ) http://git-wip-us.apache.org/repos/asf/maven-integration-testing/blob/4b717265/core-it-support/maven-it-sample/src/test/resources/mng-xxxx/checkstyle-assembly/src/main/resources/rule_set.xml ---------------------------------------------------------------------- diff --git a/core-it-support/maven-it-sample/src/test/resources/mng-xxxx/checkstyle-assembly/src/main/resources/rule_set.xml b/core-it-support/maven-it-sample/src/test/resources/mng-xxxx/checkstyle-assembly/src/main/resources/rule_set.xml index fc5f454..c03a644 100644 --- a/core-it-support/maven-it-sample/src/test/resources/mng-xxxx/checkstyle-assembly/src/main/resources/rule_set.xml +++ b/core-it-support/maven-it-sample/src/test/resources/mng-xxxx/checkstyle-assembly/src/main/resources/rule_set.xml @@ -1,4 +1,22 @@ <?xml version="1.0"?> +<!-- +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. +--> <ruleset name="EPHS Custom ruleset" xmlns="http://pmd.sf.net/ruleset/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" http://git-wip-us.apache.org/repos/asf/maven-integration-testing/blob/4b717265/core-it-support/maven-it-sample/src/test/resources/mng-xxxx/checkstyle-assembly/src/main/resources/stc_checks.xml ---------------------------------------------------------------------- diff --git a/core-it-support/maven-it-sample/src/test/resources/mng-xxxx/checkstyle-assembly/src/main/resources/stc_checks.xml b/core-it-support/maven-it-sample/src/test/resources/mng-xxxx/checkstyle-assembly/src/main/resources/stc_checks.xml index 02aa309..5771c53 100644 --- a/core-it-support/maven-it-sample/src/test/resources/mng-xxxx/checkstyle-assembly/src/main/resources/stc_checks.xml +++ b/core-it-support/maven-it-sample/src/test/resources/mng-xxxx/checkstyle-assembly/src/main/resources/stc_checks.xml @@ -1,4 +1,22 @@ <?xml version="1.0"?> +<!-- +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. +--> <!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.2//EN" "http://www.puppycrawl.com/dtds/configuration_1_2.dtd"> http://git-wip-us.apache.org/repos/asf/maven-integration-testing/blob/4b717265/core-it-support/maven-it-sample/src/test/resources/mng-xxxx/checkstyle-test/src/main/java/Class.java ---------------------------------------------------------------------- diff --git a/core-it-support/maven-it-sample/src/test/resources/mng-xxxx/checkstyle-test/src/main/java/Class.java b/core-it-support/maven-it-sample/src/test/resources/mng-xxxx/checkstyle-test/src/main/java/Class.java index 244f1e5..9dfe4d7 100644 --- a/core-it-support/maven-it-sample/src/test/resources/mng-xxxx/checkstyle-test/src/main/java/Class.java +++ b/core-it-support/maven-it-sample/src/test/resources/mng-xxxx/checkstyle-test/src/main/java/Class.java @@ -1,3 +1,21 @@ +/* + * 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. + */ public class Class { http://git-wip-us.apache.org/repos/asf/maven-integration-testing/blob/4b717265/run-its.sh ---------------------------------------------------------------------- diff --git a/run-its.sh b/run-its.sh index 3d12f95..76de23d 100755 --- a/run-its.sh +++ b/run-its.sh @@ -1,5 +1,24 @@ #!/bin/sh +# +# 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. +# + # How I run the ITs from a clean slate. Though I do this with a primed Nexus instance. JvZ. mvn clean install -Prun-its,embedded -Dmaven.repo.local=`pwd`/repo http://git-wip-us.apache.org/repos/asf/maven-integration-testing/blob/4b717265/src/site/apt/index.apt ---------------------------------------------------------------------- diff --git a/src/site/apt/index.apt b/src/site/apt/index.apt index 8449fb8..4b1fc4e 100644 --- a/src/site/apt/index.apt +++ b/src/site/apt/index.apt @@ -6,6 +6,27 @@ 2011-09-04 ----- + ~~ 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. + + ~~ NOTE: For help with the syntax of this file, see: + ~~ http://maven.apache.org/doxia/references/apt-format.html + + Maven Core ITs Maven Core Integration Tests provide tooling to test every aspect of Maven functionalities with any Maven version.