Skip to content

Commit 1c4038a

Browse files
committed
Preparing for release: configuring POM-s; adding copyright headers
1 parent 6f2c152 commit 1c4038a

File tree

152 files changed

+2201
-230
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

152 files changed

+2201
-230
lines changed

HEADER.txt renamed to HEADER-DERRIVED.txt

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
1-
Copyright � 2013-2016 Valery Silaev ([email protected])
1+
Original work: copyright 1999-2004 The Apache Software Foundation
2+
(http://www.apache.org/)
23

3-
This project is based on the code licensed to the Apache Software
4+
This project is based on the work licensed to the Apache Software
45
Foundation (ASF) under one or more contributor license agreements.
5-
See the NOTICE file distributed with this work for additional information
6-
regarding copyright ownership.
6+
See the NOTICE file distributed with this work for additional
7+
information regarding copyright ownership.
8+
9+
Modified work: copyright 2013-2017 Valery Silaev (http://vsilaev.com)
710

811
Licensed under the Apache License, Version 2.0 (the "License");
912
you may not use this file except in compliance with the License.

HEADER-ORIGINAL.txt

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Copyright 2013-2017 Valery Silaev (http://vsilaev.com)
2+
3+
Licensed under the Apache License, Version 2.0 (the "License");
4+
you may not use this file except in compliance with the License.
5+
You may obtain a copy of the License at
6+
7+
http://www.apache.org/licenses/LICENSE-2.0
8+
9+
Unless required by applicable law or agreed to in writing, software
10+
distributed under the License is distributed on an "AS IS" BASIS,
11+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
See the License for the specific language governing permissions and
13+
limitations under the License.

NOTICE.txt renamed to NOTICE

File renamed without changes.

net.tascalate.javaflow.api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<url>http://maven.apache.org</url>
1717

1818
<properties>
19-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
19+
<license.header>../HEADER-DERRIVED.txt</license.header>
2020
</properties>
2121

2222
<dependencies>

net.tascalate.javaflow.api/src/main/java/org/apache/commons/javaflow/api/ContinuableAnnotation.java

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
/**
2+
* Copyright 2013-2017 Valery Silaev (http://vsilaev.com)
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
116
package org.apache.commons.javaflow.api;
217

318
import java.lang.annotation.Documented;

net.tascalate.javaflow.api/src/main/java/org/apache/commons/javaflow/api/Continuation.java

Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,19 @@
1-
/*
2-
* Licensed to the Apache Software Foundation (ASF) under one or more
3-
* contributor license agreements. See the NOTICE file distributed with
4-
* this work for additional information regarding copyright ownership.
5-
* The ASF licenses this file to You under the Apache License, Version 2.0
6-
* (the "License"); you may not use this file except in compliance with
7-
* the License. You may obtain a copy of the License at
1+
/**
2+
* Original work: copyright 1999-2004 The Apache Software Foundation
3+
* (http://www.apache.org/)
4+
*
5+
* This project is based on the work licensed to the Apache Software
6+
* Foundation (ASF) under one or more contributor license agreements.
7+
* See the NOTICE file distributed with this work for additional
8+
* information regarding copyright ownership.
9+
*
10+
* Modified work: copyright 2013-2017 Valery Silaev (http://vsilaev.com)
811
*
9-
* http://www.apache.org/licenses/LICENSE-2.0
12+
* Licensed under the Apache License, Version 2.0 (the "License");
13+
* you may not use this file except in compliance with the License.
14+
* You may obtain a copy of the License at
15+
*
16+
* http://www.apache.org/licenses/LICENSE-2.0
1017
*
1118
* Unless required by applicable law or agreed to in writing, software
1219
* distributed under the License is distributed on an "AS IS" BASIS,
@@ -39,7 +46,7 @@
3946
* <tt>Continuation</tt> objects are used to restore the captured execution states
4047
* later.
4148
*
42-
*/
49+
*/
4350
public final class Continuation implements Serializable {
4451

4552
private static final Log log = LogFactory.getLog(Continuation.class);

net.tascalate.javaflow.api/src/main/java/org/apache/commons/javaflow/api/InterceptorSupport.java

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
/**
2+
* Copyright 2013-2017 Valery Silaev (http://vsilaev.com)
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
116
package org.apache.commons.javaflow.api;
217

318
import java.lang.reflect.Field;

net.tascalate.javaflow.api/src/main/java/org/apache/commons/javaflow/api/ccs.java

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
/**
2+
* Copyright 2013-2017 Valery Silaev (http://vsilaev.com)
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
116
package org.apache.commons.javaflow.api;
217

318
import java.lang.annotation.Documented;

net.tascalate.javaflow.api/src/main/java/org/apache/commons/javaflow/api/continuable.java

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
/**
2+
* Copyright 2013-2017 Valery Silaev (http://vsilaev.com)
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
116
package org.apache.commons.javaflow.api;
217

318
import java.lang.annotation.Documented;

net.tascalate.javaflow.api/src/main/java/org/apache/commons/javaflow/core/ContinuationDeath.java

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/**
2+
* Licensed to the Apache Software Foundation (ASF) under one or more
3+
* contributor license agreements. See the NOTICE file distributed with
4+
* this work for additional information regarding copyright ownership.
5+
* The ASF licenses this file to You under the Apache License, Version 2.0
6+
* (the "License"); you may not use this file except in compliance with
7+
* the License. You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/
117
package org.apache.commons.javaflow.core;
218

319
/**

0 commit comments

Comments
 (0)