Author: sisbell Date: Thu Oct 25 16:23:03 2007 New Revision: 588387 URL: http://svn.apache.org/viewvc?rev=588387&view=rev Log: License headers.
Modified: incubator/nmaven/trunk/components/dotnet-artifact/src/test/java/org/apache/maven/dotnet/artifact/impl/ArtifactFactoryTestStub.java incubator/nmaven/trunk/components/dotnet-artifact/src/test/java/org/apache/maven/dotnet/artifact/impl/ArtifactInstallerImplTest.java incubator/nmaven/trunk/components/dotnet-artifact/src/test/java/org/apache/maven/dotnet/artifact/impl/DummyLogger.java incubator/nmaven/trunk/components/dotnet-dao/project/src/test/java/org/apache/maven/dotnet/dao/impl/ArtifactFactoryTestStub.java incubator/nmaven/trunk/components/dotnet-dao/project/src/test/java/org/apache/maven/dotnet/dao/impl/ProjectDaoImplTest.java incubator/nmaven/trunk/components/dotnet-dao/project/src/test/java/org/apache/maven/dotnet/dao/impl/WagonManagerTestStub.java incubator/nmaven/trunk/components/dotnet-embedder/src/main/java/org/apache/maven/dotnet/embedder/EmbedderException.java incubator/nmaven/trunk/components/dotnet-jetty/src/main/java/org/apache/maven/dotnet/jetty/JettyStarter.java incubator/nmaven/trunk/components/dotnet-plugin/src/main/java/org/apache/maven/dotnet/plugin/ConfigurationAppender.java incubator/nmaven/trunk/components/dotnet-plugin/src/main/java/org/apache/maven/dotnet/plugin/FieldAnnotation.java incubator/nmaven/trunk/components/dotnet-plugin/src/main/java/org/apache/maven/dotnet/plugin/FieldInfo.java incubator/nmaven/trunk/components/dotnet-plugin/src/main/java/org/apache/maven/dotnet/plugin/MavenProjectConfigurationAppender.java incubator/nmaven/trunk/components/dotnet-plugin/src/main/java/org/apache/maven/dotnet/plugin/PluginContext.java incubator/nmaven/trunk/components/dotnet-plugin/src/main/java/org/apache/maven/dotnet/plugin/PomFileConfigurationAppender.java incubator/nmaven/trunk/components/dotnet-plugin/src/main/java/org/apache/maven/dotnet/plugin/StringConfigurationAppender.java incubator/nmaven/trunk/plugins/maven-link-plugin/src/main/java/org/apache/maven/dotnet/plugin/link/LinkerMojo.java incubator/nmaven/trunk/plugins/maven-repository-plugin/src/main/java/org/apache/maven/dotnet/plugin/repository/ArtifactManagerMojo.java incubator/nmaven/trunk/plugins/maven-vsinstaller-plugin/src/main/java/org/apache/maven/dotnet/plugin/vsinstaller/VsInstallerMojo.java incubator/nmaven/trunk/plugins/netplugins/NMaven.Plugin.Addin/javabinding/src/main/java/NMaven/Plugin/Addin/AutomationExtensibilityMojo.java incubator/nmaven/trunk/plugins/netplugins/NMaven.Plugin.Devenv/javabinding/src/main/java/NMaven/Plugin/Devenv/DevenvMojo.java incubator/nmaven/trunk/plugins/netplugins/NMaven.Plugin.Settings/javabinding/src/main/java/NMaven/Plugin/Settings/SettingsGeneratorMojo.java incubator/nmaven/trunk/plugins/netplugins/NMaven.Plugin.Solution/javabinding/src/main/java/NMaven/Plugin/Solution/SolutionMojo.java Modified: incubator/nmaven/trunk/components/dotnet-artifact/src/test/java/org/apache/maven/dotnet/artifact/impl/ArtifactFactoryTestStub.java URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/components/dotnet-artifact/src/test/java/org/apache/maven/dotnet/artifact/impl/ArtifactFactoryTestStub.java?rev=588387&r1=588386&r2=588387&view=diff ============================================================================== --- incubator/nmaven/trunk/components/dotnet-artifact/src/test/java/org/apache/maven/dotnet/artifact/impl/ArtifactFactoryTestStub.java (original) +++ incubator/nmaven/trunk/components/dotnet-artifact/src/test/java/org/apache/maven/dotnet/artifact/impl/ArtifactFactoryTestStub.java Thu Oct 25 16:23:03 2007 @@ -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. + */ + package org.apache.maven.dotnet.artifact.impl; import org.apache.maven.artifact.factory.ArtifactFactory; Modified: incubator/nmaven/trunk/components/dotnet-artifact/src/test/java/org/apache/maven/dotnet/artifact/impl/ArtifactInstallerImplTest.java URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/components/dotnet-artifact/src/test/java/org/apache/maven/dotnet/artifact/impl/ArtifactInstallerImplTest.java?rev=588387&r1=588386&r2=588387&view=diff ============================================================================== --- incubator/nmaven/trunk/components/dotnet-artifact/src/test/java/org/apache/maven/dotnet/artifact/impl/ArtifactInstallerImplTest.java (original) +++ incubator/nmaven/trunk/components/dotnet-artifact/src/test/java/org/apache/maven/dotnet/artifact/impl/ArtifactInstallerImplTest.java Thu Oct 25 16:23:03 2007 @@ -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. + */ + package org.apache.maven.dotnet.artifact.impl; import junit.framework.TestCase; Modified: incubator/nmaven/trunk/components/dotnet-artifact/src/test/java/org/apache/maven/dotnet/artifact/impl/DummyLogger.java URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/components/dotnet-artifact/src/test/java/org/apache/maven/dotnet/artifact/impl/DummyLogger.java?rev=588387&r1=588386&r2=588387&view=diff ============================================================================== --- incubator/nmaven/trunk/components/dotnet-artifact/src/test/java/org/apache/maven/dotnet/artifact/impl/DummyLogger.java (original) +++ incubator/nmaven/trunk/components/dotnet-artifact/src/test/java/org/apache/maven/dotnet/artifact/impl/DummyLogger.java Thu Oct 25 16:23:03 2007 @@ -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. + */ + package org.apache.maven.dotnet.artifact.impl; import org.codehaus.plexus.logging.Logger; Modified: incubator/nmaven/trunk/components/dotnet-dao/project/src/test/java/org/apache/maven/dotnet/dao/impl/ArtifactFactoryTestStub.java URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/components/dotnet-dao/project/src/test/java/org/apache/maven/dotnet/dao/impl/ArtifactFactoryTestStub.java?rev=588387&r1=588386&r2=588387&view=diff ============================================================================== --- incubator/nmaven/trunk/components/dotnet-dao/project/src/test/java/org/apache/maven/dotnet/dao/impl/ArtifactFactoryTestStub.java (original) +++ incubator/nmaven/trunk/components/dotnet-dao/project/src/test/java/org/apache/maven/dotnet/dao/impl/ArtifactFactoryTestStub.java Thu Oct 25 16:23:03 2007 @@ -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. + */ package org.apache.maven.dotnet.dao.impl; import org.apache.maven.artifact.factory.ArtifactFactory; Modified: incubator/nmaven/trunk/components/dotnet-dao/project/src/test/java/org/apache/maven/dotnet/dao/impl/ProjectDaoImplTest.java URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/components/dotnet-dao/project/src/test/java/org/apache/maven/dotnet/dao/impl/ProjectDaoImplTest.java?rev=588387&r1=588386&r2=588387&view=diff ============================================================================== --- incubator/nmaven/trunk/components/dotnet-dao/project/src/test/java/org/apache/maven/dotnet/dao/impl/ProjectDaoImplTest.java (original) +++ incubator/nmaven/trunk/components/dotnet-dao/project/src/test/java/org/apache/maven/dotnet/dao/impl/ProjectDaoImplTest.java Thu Oct 25 16:23:03 2007 @@ -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. + */ package org.apache.maven.dotnet.dao.impl; import junit.framework.TestCase; Modified: incubator/nmaven/trunk/components/dotnet-dao/project/src/test/java/org/apache/maven/dotnet/dao/impl/WagonManagerTestStub.java URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/components/dotnet-dao/project/src/test/java/org/apache/maven/dotnet/dao/impl/WagonManagerTestStub.java?rev=588387&r1=588386&r2=588387&view=diff ============================================================================== --- incubator/nmaven/trunk/components/dotnet-dao/project/src/test/java/org/apache/maven/dotnet/dao/impl/WagonManagerTestStub.java (original) +++ incubator/nmaven/trunk/components/dotnet-dao/project/src/test/java/org/apache/maven/dotnet/dao/impl/WagonManagerTestStub.java Thu Oct 25 16:23:03 2007 @@ -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. + */ package org.apache.maven.dotnet.dao.impl; import org.apache.maven.artifact.manager.WagonManager; Modified: incubator/nmaven/trunk/components/dotnet-embedder/src/main/java/org/apache/maven/dotnet/embedder/EmbedderException.java URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/components/dotnet-embedder/src/main/java/org/apache/maven/dotnet/embedder/EmbedderException.java?rev=588387&r1=588386&r2=588387&view=diff ============================================================================== --- incubator/nmaven/trunk/components/dotnet-embedder/src/main/java/org/apache/maven/dotnet/embedder/EmbedderException.java (original) +++ incubator/nmaven/trunk/components/dotnet-embedder/src/main/java/org/apache/maven/dotnet/embedder/EmbedderException.java Thu Oct 25 16:23:03 2007 @@ -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. + */ package org.apache.maven.dotnet.embedder; public class EmbedderException extends Exception Modified: incubator/nmaven/trunk/components/dotnet-jetty/src/main/java/org/apache/maven/dotnet/jetty/JettyStarter.java URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/components/dotnet-jetty/src/main/java/org/apache/maven/dotnet/jetty/JettyStarter.java?rev=588387&r1=588386&r2=588387&view=diff ============================================================================== --- incubator/nmaven/trunk/components/dotnet-jetty/src/main/java/org/apache/maven/dotnet/jetty/JettyStarter.java (original) +++ incubator/nmaven/trunk/components/dotnet-jetty/src/main/java/org/apache/maven/dotnet/jetty/JettyStarter.java Thu Oct 25 16:23:03 2007 @@ -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. + */ package org.apache.maven.dotnet.jetty; import org.mortbay.jetty.Server; Modified: incubator/nmaven/trunk/components/dotnet-plugin/src/main/java/org/apache/maven/dotnet/plugin/ConfigurationAppender.java URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/components/dotnet-plugin/src/main/java/org/apache/maven/dotnet/plugin/ConfigurationAppender.java?rev=588387&r1=588386&r2=588387&view=diff ============================================================================== --- incubator/nmaven/trunk/components/dotnet-plugin/src/main/java/org/apache/maven/dotnet/plugin/ConfigurationAppender.java (original) +++ incubator/nmaven/trunk/components/dotnet-plugin/src/main/java/org/apache/maven/dotnet/plugin/ConfigurationAppender.java Thu Oct 25 16:23:03 2007 @@ -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. + */ + package org.apache.maven.dotnet.plugin; import org.apache.maven.plugin.MojoExecutionException; Modified: incubator/nmaven/trunk/components/dotnet-plugin/src/main/java/org/apache/maven/dotnet/plugin/FieldAnnotation.java URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/components/dotnet-plugin/src/main/java/org/apache/maven/dotnet/plugin/FieldAnnotation.java?rev=588387&r1=588386&r2=588387&view=diff ============================================================================== --- incubator/nmaven/trunk/components/dotnet-plugin/src/main/java/org/apache/maven/dotnet/plugin/FieldAnnotation.java (original) +++ incubator/nmaven/trunk/components/dotnet-plugin/src/main/java/org/apache/maven/dotnet/plugin/FieldAnnotation.java Thu Oct 25 16:23:03 2007 @@ -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. + */ + package org.apache.maven.dotnet.plugin; import java.lang.annotation.Retention; Modified: incubator/nmaven/trunk/components/dotnet-plugin/src/main/java/org/apache/maven/dotnet/plugin/FieldInfo.java URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/components/dotnet-plugin/src/main/java/org/apache/maven/dotnet/plugin/FieldInfo.java?rev=588387&r1=588386&r2=588387&view=diff ============================================================================== --- incubator/nmaven/trunk/components/dotnet-plugin/src/main/java/org/apache/maven/dotnet/plugin/FieldInfo.java (original) +++ incubator/nmaven/trunk/components/dotnet-plugin/src/main/java/org/apache/maven/dotnet/plugin/FieldInfo.java Thu Oct 25 16:23:03 2007 @@ -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. + */ + package org.apache.maven.dotnet.plugin; public interface FieldInfo Modified: incubator/nmaven/trunk/components/dotnet-plugin/src/main/java/org/apache/maven/dotnet/plugin/MavenProjectConfigurationAppender.java URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/components/dotnet-plugin/src/main/java/org/apache/maven/dotnet/plugin/MavenProjectConfigurationAppender.java?rev=588387&r1=588386&r2=588387&view=diff ============================================================================== --- incubator/nmaven/trunk/components/dotnet-plugin/src/main/java/org/apache/maven/dotnet/plugin/MavenProjectConfigurationAppender.java (original) +++ incubator/nmaven/trunk/components/dotnet-plugin/src/main/java/org/apache/maven/dotnet/plugin/MavenProjectConfigurationAppender.java Thu Oct 25 16:23:03 2007 @@ -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. + */ + package org.apache.maven.dotnet.plugin; import org.w3c.dom.Element; Modified: incubator/nmaven/trunk/components/dotnet-plugin/src/main/java/org/apache/maven/dotnet/plugin/PluginContext.java URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/components/dotnet-plugin/src/main/java/org/apache/maven/dotnet/plugin/PluginContext.java?rev=588387&r1=588386&r2=588387&view=diff ============================================================================== --- incubator/nmaven/trunk/components/dotnet-plugin/src/main/java/org/apache/maven/dotnet/plugin/PluginContext.java (original) +++ incubator/nmaven/trunk/components/dotnet-plugin/src/main/java/org/apache/maven/dotnet/plugin/PluginContext.java Thu Oct 25 16:23:03 2007 @@ -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. + */ + package org.apache.maven.dotnet.plugin; import java.lang.reflect.Field; Modified: incubator/nmaven/trunk/components/dotnet-plugin/src/main/java/org/apache/maven/dotnet/plugin/PomFileConfigurationAppender.java URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/components/dotnet-plugin/src/main/java/org/apache/maven/dotnet/plugin/PomFileConfigurationAppender.java?rev=588387&r1=588386&r2=588387&view=diff ============================================================================== --- incubator/nmaven/trunk/components/dotnet-plugin/src/main/java/org/apache/maven/dotnet/plugin/PomFileConfigurationAppender.java (original) +++ incubator/nmaven/trunk/components/dotnet-plugin/src/main/java/org/apache/maven/dotnet/plugin/PomFileConfigurationAppender.java Thu Oct 25 16:23:03 2007 @@ -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. + */ + package org.apache.maven.dotnet.plugin; import org.w3c.dom.Document; Modified: incubator/nmaven/trunk/components/dotnet-plugin/src/main/java/org/apache/maven/dotnet/plugin/StringConfigurationAppender.java URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/components/dotnet-plugin/src/main/java/org/apache/maven/dotnet/plugin/StringConfigurationAppender.java?rev=588387&r1=588386&r2=588387&view=diff ============================================================================== --- incubator/nmaven/trunk/components/dotnet-plugin/src/main/java/org/apache/maven/dotnet/plugin/StringConfigurationAppender.java (original) +++ incubator/nmaven/trunk/components/dotnet-plugin/src/main/java/org/apache/maven/dotnet/plugin/StringConfigurationAppender.java Thu Oct 25 16:23:03 2007 @@ -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. + */ + package org.apache.maven.dotnet.plugin; import org.w3c.dom.Document; Modified: incubator/nmaven/trunk/plugins/maven-link-plugin/src/main/java/org/apache/maven/dotnet/plugin/link/LinkerMojo.java URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/plugins/maven-link-plugin/src/main/java/org/apache/maven/dotnet/plugin/link/LinkerMojo.java?rev=588387&r1=588386&r2=588387&view=diff ============================================================================== --- incubator/nmaven/trunk/plugins/maven-link-plugin/src/main/java/org/apache/maven/dotnet/plugin/link/LinkerMojo.java (original) +++ incubator/nmaven/trunk/plugins/maven-link-plugin/src/main/java/org/apache/maven/dotnet/plugin/link/LinkerMojo.java Thu Oct 25 16:23:03 2007 @@ -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. + */ + package org.apache.maven.dotnet.plugin.link; import org.apache.maven.plugin.AbstractMojo; Modified: incubator/nmaven/trunk/plugins/maven-repository-plugin/src/main/java/org/apache/maven/dotnet/plugin/repository/ArtifactManagerMojo.java URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/plugins/maven-repository-plugin/src/main/java/org/apache/maven/dotnet/plugin/repository/ArtifactManagerMojo.java?rev=588387&r1=588386&r2=588387&view=diff ============================================================================== --- incubator/nmaven/trunk/plugins/maven-repository-plugin/src/main/java/org/apache/maven/dotnet/plugin/repository/ArtifactManagerMojo.java (original) +++ incubator/nmaven/trunk/plugins/maven-repository-plugin/src/main/java/org/apache/maven/dotnet/plugin/repository/ArtifactManagerMojo.java Thu Oct 25 16:23:03 2007 @@ -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. + */ + package org.apache.maven.dotnet.plugin.repository; import org.apache.maven.plugin.AbstractMojo; Modified: incubator/nmaven/trunk/plugins/maven-vsinstaller-plugin/src/main/java/org/apache/maven/dotnet/plugin/vsinstaller/VsInstallerMojo.java URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/plugins/maven-vsinstaller-plugin/src/main/java/org/apache/maven/dotnet/plugin/vsinstaller/VsInstallerMojo.java?rev=588387&r1=588386&r2=588387&view=diff ============================================================================== --- incubator/nmaven/trunk/plugins/maven-vsinstaller-plugin/src/main/java/org/apache/maven/dotnet/plugin/vsinstaller/VsInstallerMojo.java (original) +++ incubator/nmaven/trunk/plugins/maven-vsinstaller-plugin/src/main/java/org/apache/maven/dotnet/plugin/vsinstaller/VsInstallerMojo.java Thu Oct 25 16:23:03 2007 @@ -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. + */ + package org.apache.maven.dotnet.plugin.vsinstaller; import org.apache.maven.plugin.AbstractMojo; Modified: incubator/nmaven/trunk/plugins/netplugins/NMaven.Plugin.Addin/javabinding/src/main/java/NMaven/Plugin/Addin/AutomationExtensibilityMojo.java URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/plugins/netplugins/NMaven.Plugin.Addin/javabinding/src/main/java/NMaven/Plugin/Addin/AutomationExtensibilityMojo.java?rev=588387&r1=588386&r2=588387&view=diff ============================================================================== --- incubator/nmaven/trunk/plugins/netplugins/NMaven.Plugin.Addin/javabinding/src/main/java/NMaven/Plugin/Addin/AutomationExtensibilityMojo.java (original) +++ incubator/nmaven/trunk/plugins/netplugins/NMaven.Plugin.Addin/javabinding/src/main/java/NMaven/Plugin/Addin/AutomationExtensibilityMojo.java Thu Oct 25 16:23:03 2007 @@ -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. + */ + package NMaven.Plugin.Addin; import org.apache.maven.dotnet.plugin.FieldAnnotation; Modified: incubator/nmaven/trunk/plugins/netplugins/NMaven.Plugin.Devenv/javabinding/src/main/java/NMaven/Plugin/Devenv/DevenvMojo.java URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/plugins/netplugins/NMaven.Plugin.Devenv/javabinding/src/main/java/NMaven/Plugin/Devenv/DevenvMojo.java?rev=588387&r1=588386&r2=588387&view=diff ============================================================================== --- incubator/nmaven/trunk/plugins/netplugins/NMaven.Plugin.Devenv/javabinding/src/main/java/NMaven/Plugin/Devenv/DevenvMojo.java (original) +++ incubator/nmaven/trunk/plugins/netplugins/NMaven.Plugin.Devenv/javabinding/src/main/java/NMaven/Plugin/Devenv/DevenvMojo.java Thu Oct 25 16:23:03 2007 @@ -1,4 +1,23 @@ -package NMaven.Plugin.Devenv; +/* + * 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 NMaven.Plugin.Devenv; import org.apache.maven.dotnet.plugin.FieldAnnotation; Modified: incubator/nmaven/trunk/plugins/netplugins/NMaven.Plugin.Settings/javabinding/src/main/java/NMaven/Plugin/Settings/SettingsGeneratorMojo.java URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/plugins/netplugins/NMaven.Plugin.Settings/javabinding/src/main/java/NMaven/Plugin/Settings/SettingsGeneratorMojo.java?rev=588387&r1=588386&r2=588387&view=diff ============================================================================== --- incubator/nmaven/trunk/plugins/netplugins/NMaven.Plugin.Settings/javabinding/src/main/java/NMaven/Plugin/Settings/SettingsGeneratorMojo.java (original) +++ incubator/nmaven/trunk/plugins/netplugins/NMaven.Plugin.Settings/javabinding/src/main/java/NMaven/Plugin/Settings/SettingsGeneratorMojo.java Thu Oct 25 16:23:03 2007 @@ -1,4 +1,23 @@ -package NMaven.Plugin.Settings; +/* + * 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 NMaven.Plugin.Settings; import org.apache.maven.dotnet.plugin.FieldAnnotation; import org.apache.maven.plugin.MojoExecutionException; Modified: incubator/nmaven/trunk/plugins/netplugins/NMaven.Plugin.Solution/javabinding/src/main/java/NMaven/Plugin/Solution/SolutionMojo.java URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/plugins/netplugins/NMaven.Plugin.Solution/javabinding/src/main/java/NMaven/Plugin/Solution/SolutionMojo.java?rev=588387&r1=588386&r2=588387&view=diff ============================================================================== --- incubator/nmaven/trunk/plugins/netplugins/NMaven.Plugin.Solution/javabinding/src/main/java/NMaven/Plugin/Solution/SolutionMojo.java (original) +++ incubator/nmaven/trunk/plugins/netplugins/NMaven.Plugin.Solution/javabinding/src/main/java/NMaven/Plugin/Solution/SolutionMojo.java Thu Oct 25 16:23:03 2007 @@ -1,4 +1,23 @@ -package NMaven.Plugin.Solution; +/* + * 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 NMaven.Plugin.Solution; import org.apache.maven.dotnet.plugin.FieldAnnotation;