Fixing license dew
authorJaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 16 Jan 2013 12:28:56 +0100
branchdew
changeset 468a7ff47e054f3
parent 467 c50c541368f8
child 469 c6e6782950b8
Fixing license
launcher/src/main/java/org/apidesign/bck2brwsr/dew/Compile.java
launcher/src/main/java/org/apidesign/bck2brwsr/dew/Dew.java
launcher/src/test/java/org/apidesign/bck2brwsr/dew/CompileTest.java
pom.xml
     1.1 --- a/launcher/src/main/java/org/apidesign/bck2brwsr/dew/Compile.java	Wed Jan 16 12:27:53 2013 +0100
     1.2 +++ b/launcher/src/main/java/org/apidesign/bck2brwsr/dew/Compile.java	Wed Jan 16 12:28:56 2013 +0100
     1.3 @@ -1,3 +1,20 @@
     1.4 +/**
     1.5 + * Back 2 Browser Bytecode Translator
     1.6 + * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     1.7 + *
     1.8 + * This program is free software: you can redistribute it and/or modify
     1.9 + * it under the terms of the GNU General Public License as published by
    1.10 + * the Free Software Foundation, version 2 of the License.
    1.11 + *
    1.12 + * This program is distributed in the hope that it will be useful,
    1.13 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    1.14 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    1.15 + * GNU General Public License for more details.
    1.16 + *
    1.17 + * You should have received a copy of the GNU General Public License
    1.18 + * along with this program. Look for COPYING file in the top folder.
    1.19 + * If not, see http://opensource.org/licenses/GPL-2.0.
    1.20 + */
    1.21  package org.apidesign.bck2brwsr.dew;
    1.22  
    1.23  import java.io.ByteArrayInputStream;
     2.1 --- a/launcher/src/main/java/org/apidesign/bck2brwsr/dew/Dew.java	Wed Jan 16 12:27:53 2013 +0100
     2.2 +++ b/launcher/src/main/java/org/apidesign/bck2brwsr/dew/Dew.java	Wed Jan 16 12:28:56 2013 +0100
     2.3 @@ -1,16 +1,26 @@
     2.4 -/*
     2.5 - * To change this template, choose Tools | Templates
     2.6 - * and open the template in the editor.
     2.7 +/**
     2.8 + * Back 2 Browser Bytecode Translator
     2.9 + * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    2.10 + *
    2.11 + * This program is free software: you can redistribute it and/or modify
    2.12 + * it under the terms of the GNU General Public License as published by
    2.13 + * the Free Software Foundation, version 2 of the License.
    2.14 + *
    2.15 + * This program is distributed in the hope that it will be useful,
    2.16 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    2.17 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    2.18 + * GNU General Public License for more details.
    2.19 + *
    2.20 + * You should have received a copy of the GNU General Public License
    2.21 + * along with this program. Look for COPYING file in the top folder.
    2.22 + * If not, see http://opensource.org/licenses/GPL-2.0.
    2.23   */
    2.24  package org.apidesign.bck2brwsr.dew;
    2.25  
    2.26 -import java.io.ByteArrayInputStream;
    2.27 -import java.io.DataOutputStream;
    2.28  import java.io.IOException;
    2.29  import java.io.InputStream;
    2.30  import java.io.InputStreamReader;
    2.31  import java.io.OutputStream;
    2.32 -import java.io.OutputStreamWriter;
    2.33  import java.io.Writer;
    2.34  import java.util.List;
    2.35  import java.util.logging.Logger;
     3.1 --- a/launcher/src/test/java/org/apidesign/bck2brwsr/dew/CompileTest.java	Wed Jan 16 12:27:53 2013 +0100
     3.2 +++ b/launcher/src/test/java/org/apidesign/bck2brwsr/dew/CompileTest.java	Wed Jan 16 12:28:56 2013 +0100
     3.3 @@ -1,3 +1,20 @@
     3.4 +/**
     3.5 + * Back 2 Browser Bytecode Translator
     3.6 + * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     3.7 + *
     3.8 + * This program is free software: you can redistribute it and/or modify
     3.9 + * it under the terms of the GNU General Public License as published by
    3.10 + * the Free Software Foundation, version 2 of the License.
    3.11 + *
    3.12 + * This program is distributed in the hope that it will be useful,
    3.13 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    3.14 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    3.15 + * GNU General Public License for more details.
    3.16 + *
    3.17 + * You should have received a copy of the GNU General Public License
    3.18 + * along with this program. Look for COPYING file in the top folder.
    3.19 + * If not, see http://opensource.org/licenses/GPL-2.0.
    3.20 + */
    3.21  package org.apidesign.bck2brwsr.dew;
    3.22  
    3.23  import java.io.IOException;
     4.1 --- a/pom.xml	Wed Jan 16 12:27:53 2013 +0100
     4.2 +++ b/pom.xml	Wed Jan 16 12:28:56 2013 +0100
     4.3 @@ -74,6 +74,7 @@
     4.4                         <exclude>*</exclude>
     4.5                         <exclude>.*/**</exclude>
     4.6                         <exclude>mojo/src/main/resources/archetype-resources/**</exclude>
     4.7 +                       <exclude>launcher/src/main/resources/org/apidesign/bck2brwsr/dew/**</exclude>
     4.8                         <exclude>vmtest/src/test/resources/**</exclude>
     4.9                    </excludes>
    4.10                </configuration>