Author: simoneg
Date: Tue Jul 21 01:45:00 2009
New Revision: 796112
URL: http://svn.apache.org/viewvc?rev=796112&view=rev
Log:
LABS-393 : missing Apache headers
Modified:
labs/magma/trunk/jobs-simple/pom.xml
labs/magma/trunk/jobs-simple/src/main/java/org/apache/magma/jobs/simple/InstallSimpleScheduler.aj
labs/magma/trunk/jobs-simple/src/main/java/org/apache/magma/jobs/simple/JobData.java
labs/magma/trunk/jobs-simple/src/main/java/org/apache/magma/jobs/simple/JobExecutingThread.java
labs/magma/trunk/jobs-simple/src/main/java/org/apache/magma/jobs/simple/SimpleScheduler.java
labs/magma/trunk/jobs-simple/src/test/java/org/apache/magma/jobs/simple/SimpleSchedulerRunTest.java
labs/magma/trunk/jobs-simple/src/test/java/org/apache/magma/jobs/simple/SimpleSchedulingTest.java
labs/magma/trunk/jobs-simple/src/test/java/org/apache/magma/jobs/simple/StupidJob.java
labs/magma/trunk/magma-domain-archetype/src/main/resources/META-INF/maven/archetype-metadata.xml
labs/magma/trunk/magma-domain-archetype/src/main/resources/archetype-resources/src/main/java/Person.java
labs/magma/trunk/magma-webcomponent-archetype/src/main/resources/META-INF/maven/archetype-metadata.xml
labs/magma/trunk/magma-webcomponent-archetype/src/main/resources/archetype-resources/src/main/java/InstallMyFirstWebHandlerIntoRoot.aj
labs/magma/trunk/magma-webcomponent-archetype/src/main/resources/archetype-resources/src/main/java/MyFirstWebHandler.java
Modified: labs/magma/trunk/jobs-simple/pom.xml
URL:
http://svn.apache.org/viewvc/labs/magma/trunk/jobs-simple/pom.xml?rev=796112&r1=796111&r2=796112&view=diff
==============================================================================
--- labs/magma/trunk/jobs-simple/pom.xml (original)
+++ labs/magma/trunk/jobs-simple/pom.xml Tue Jul 21 01:45:00 2009
@@ -1,4 +1,20 @@
<?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/maven-v4_0_0.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<parent>
<artifactId>magma-parent</artifactId>
@@ -29,4 +45,4 @@
<version>4.5</version>
</dependency>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified:
labs/magma/trunk/jobs-simple/src/main/java/org/apache/magma/jobs/simple/InstallSimpleScheduler.aj
URL:
http://svn.apache.org/viewvc/labs/magma/trunk/jobs-simple/src/main/java/org/apache/magma/jobs/simple/InstallSimpleScheduler.aj?rev=796112&r1=796111&r2=796112&view=diff
==============================================================================
---
labs/magma/trunk/jobs-simple/src/main/java/org/apache/magma/jobs/simple/InstallSimpleScheduler.aj
(original)
+++
labs/magma/trunk/jobs-simple/src/main/java/org/apache/magma/jobs/simple/InstallSimpleScheduler.aj
Tue Jul 21 01:45:00 2009
@@ -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.magma.jobs.simple;
import org.apache.magma.jobs.Scheduler;
Modified:
labs/magma/trunk/jobs-simple/src/main/java/org/apache/magma/jobs/simple/JobData.java
URL:
http://svn.apache.org/viewvc/labs/magma/trunk/jobs-simple/src/main/java/org/apache/magma/jobs/simple/JobData.java?rev=796112&r1=796111&r2=796112&view=diff
==============================================================================
---
labs/magma/trunk/jobs-simple/src/main/java/org/apache/magma/jobs/simple/JobData.java
(original)
+++
labs/magma/trunk/jobs-simple/src/main/java/org/apache/magma/jobs/simple/JobData.java
Tue Jul 21 01:45:00 2009
@@ -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.magma.jobs.simple;
import java.util.Date;
Modified:
labs/magma/trunk/jobs-simple/src/main/java/org/apache/magma/jobs/simple/JobExecutingThread.java
URL:
http://svn.apache.org/viewvc/labs/magma/trunk/jobs-simple/src/main/java/org/apache/magma/jobs/simple/JobExecutingThread.java?rev=796112&r1=796111&r2=796112&view=diff
==============================================================================
---
labs/magma/trunk/jobs-simple/src/main/java/org/apache/magma/jobs/simple/JobExecutingThread.java
(original)
+++
labs/magma/trunk/jobs-simple/src/main/java/org/apache/magma/jobs/simple/JobExecutingThread.java
Tue Jul 21 01:45:00 2009
@@ -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.magma.jobs.simple;
import org.apache.magma.beans.BeanHandler;
Modified:
labs/magma/trunk/jobs-simple/src/main/java/org/apache/magma/jobs/simple/SimpleScheduler.java
URL:
http://svn.apache.org/viewvc/labs/magma/trunk/jobs-simple/src/main/java/org/apache/magma/jobs/simple/SimpleScheduler.java?rev=796112&r1=796111&r2=796112&view=diff
==============================================================================
---
labs/magma/trunk/jobs-simple/src/main/java/org/apache/magma/jobs/simple/SimpleScheduler.java
(original)
+++
labs/magma/trunk/jobs-simple/src/main/java/org/apache/magma/jobs/simple/SimpleScheduler.java
Tue Jul 21 01:45:00 2009
@@ -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.magma.jobs.simple;
import java.util.ArrayList;
Modified:
labs/magma/trunk/jobs-simple/src/test/java/org/apache/magma/jobs/simple/SimpleSchedulerRunTest.java
URL:
http://svn.apache.org/viewvc/labs/magma/trunk/jobs-simple/src/test/java/org/apache/magma/jobs/simple/SimpleSchedulerRunTest.java?rev=796112&r1=796111&r2=796112&view=diff
==============================================================================
---
labs/magma/trunk/jobs-simple/src/test/java/org/apache/magma/jobs/simple/SimpleSchedulerRunTest.java
(original)
+++
labs/magma/trunk/jobs-simple/src/test/java/org/apache/magma/jobs/simple/SimpleSchedulerRunTest.java
Tue Jul 21 01:45:00 2009
@@ -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.magma.jobs.simple;
import java.util.List;
Modified:
labs/magma/trunk/jobs-simple/src/test/java/org/apache/magma/jobs/simple/SimpleSchedulingTest.java
URL:
http://svn.apache.org/viewvc/labs/magma/trunk/jobs-simple/src/test/java/org/apache/magma/jobs/simple/SimpleSchedulingTest.java?rev=796112&r1=796111&r2=796112&view=diff
==============================================================================
---
labs/magma/trunk/jobs-simple/src/test/java/org/apache/magma/jobs/simple/SimpleSchedulingTest.java
(original)
+++
labs/magma/trunk/jobs-simple/src/test/java/org/apache/magma/jobs/simple/SimpleSchedulingTest.java
Tue Jul 21 01:45:00 2009
@@ -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.magma.jobs.simple;
import org.apache.magma.jobs.Every;
Modified:
labs/magma/trunk/jobs-simple/src/test/java/org/apache/magma/jobs/simple/StupidJob.java
URL:
http://svn.apache.org/viewvc/labs/magma/trunk/jobs-simple/src/test/java/org/apache/magma/jobs/simple/StupidJob.java?rev=796112&r1=796111&r2=796112&view=diff
==============================================================================
---
labs/magma/trunk/jobs-simple/src/test/java/org/apache/magma/jobs/simple/StupidJob.java
(original)
+++
labs/magma/trunk/jobs-simple/src/test/java/org/apache/magma/jobs/simple/StupidJob.java
Tue Jul 21 01:45:00 2009
@@ -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.magma.jobs.simple;
import java.util.ArrayList;
Modified:
labs/magma/trunk/magma-domain-archetype/src/main/resources/META-INF/maven/archetype-metadata.xml
URL:
http://svn.apache.org/viewvc/labs/magma/trunk/magma-domain-archetype/src/main/resources/META-INF/maven/archetype-metadata.xml?rev=796112&r1=796111&r2=796112&view=diff
==============================================================================
---
labs/magma/trunk/magma-domain-archetype/src/main/resources/META-INF/maven/archetype-metadata.xml
(original)
+++
labs/magma/trunk/magma-domain-archetype/src/main/resources/META-INF/maven/archetype-metadata.xml
Tue Jul 21 01:45:00 2009
@@ -1,4 +1,20 @@
<?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="magma-domain-archetype">
<fileSets>
<fileSet filtered="true" packaged="true">
@@ -16,4 +32,4 @@
</fileSet -->
</fileSets>
-</archetype-descriptor>
\ No newline at end of file
+</archetype-descriptor>
Modified:
labs/magma/trunk/magma-domain-archetype/src/main/resources/archetype-resources/src/main/java/Person.java
URL:
http://svn.apache.org/viewvc/labs/magma/trunk/magma-domain-archetype/src/main/resources/archetype-resources/src/main/java/Person.java?rev=796112&r1=796111&r2=796112&view=diff
==============================================================================
---
labs/magma/trunk/magma-domain-archetype/src/main/resources/archetype-resources/src/main/java/Person.java
(original)
+++
labs/magma/trunk/magma-domain-archetype/src/main/resources/archetype-resources/src/main/java/Person.java
Tue Jul 21 01:45:00 2009
@@ -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 ${package};
import org.apache.magma.beans.MagmaBean;
Modified:
labs/magma/trunk/magma-webcomponent-archetype/src/main/resources/META-INF/maven/archetype-metadata.xml
URL:
http://svn.apache.org/viewvc/labs/magma/trunk/magma-webcomponent-archetype/src/main/resources/META-INF/maven/archetype-metadata.xml?rev=796112&r1=796111&r2=796112&view=diff
==============================================================================
---
labs/magma/trunk/magma-webcomponent-archetype/src/main/resources/META-INF/maven/archetype-metadata.xml
(original)
+++
labs/magma/trunk/magma-webcomponent-archetype/src/main/resources/META-INF/maven/archetype-metadata.xml
Tue Jul 21 01:45:00 2009
@@ -1,4 +1,20 @@
<?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="magma-webcomponent-archetype">
<fileSets>
<fileSet filtered="true" packaged="true">
@@ -16,4 +32,4 @@
</fileSet>
</fileSets>
-</archetype-descriptor>
\ No newline at end of file
+</archetype-descriptor>
Modified:
labs/magma/trunk/magma-webcomponent-archetype/src/main/resources/archetype-resources/src/main/java/InstallMyFirstWebHandlerIntoRoot.aj
URL:
http://svn.apache.org/viewvc/labs/magma/trunk/magma-webcomponent-archetype/src/main/resources/archetype-resources/src/main/java/InstallMyFirstWebHandlerIntoRoot.aj?rev=796112&r1=796111&r2=796112&view=diff
==============================================================================
---
labs/magma/trunk/magma-webcomponent-archetype/src/main/resources/archetype-resources/src/main/java/InstallMyFirstWebHandlerIntoRoot.aj
(original)
+++
labs/magma/trunk/magma-webcomponent-archetype/src/main/resources/archetype-resources/src/main/java/InstallMyFirstWebHandlerIntoRoot.aj
Tue Jul 21 01:45:00 2009
@@ -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 ${package};
import org.apache.magma.website.RootWebHandler;
Modified:
labs/magma/trunk/magma-webcomponent-archetype/src/main/resources/archetype-resources/src/main/java/MyFirstWebHandler.java
URL:
http://svn.apache.org/viewvc/labs/magma/trunk/magma-webcomponent-archetype/src/main/resources/archetype-resources/src/main/java/MyFirstWebHandler.java?rev=796112&r1=796111&r2=796112&view=diff
==============================================================================
---
labs/magma/trunk/magma-webcomponent-archetype/src/main/resources/archetype-resources/src/main/java/MyFirstWebHandler.java
(original)
+++
labs/magma/trunk/magma-webcomponent-archetype/src/main/resources/archetype-resources/src/main/java/MyFirstWebHandler.java
Tue Jul 21 01:45:00 2009
@@ -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 ${package};
import org.apache.magma.website.HtmlProducer;
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]