|
From: <fb...@us...> - 2003-06-27 16:46:30
|
Update of /cvsroot/jgb/jgb
In directory sc8-pr-cvs1:/tmp/cvs-serv14842
Modified Files:
build.properties.sample build.xml
Log Message:
* all files:
Switched to LGPL.
Index: build.properties.sample
===================================================================
RCS file: /cvsroot/jgb/jgb/build.properties.sample,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** build.properties.sample 14 Jun 2003 15:22:47 -0000 1.7
--- build.properties.sample 27 Jun 2003 16:45:47 -0000 1.8
***************
*** 1,2 ****
--- 1,19 ----
+ # Java Gui Builder - A library to build GUIs using an XML file.
+ # Copyright 2002, 2003 (C) François Beausoleil
+ #
+ # This library is free software; you can redistribute it and/or
+ # modify it under the terms of the GNU Lesser General Public
+ # License as published by the Free Software Foundation; either
+ # version 2.1 of the License, or (at your option) any later version.
+ #
+ # This library is distributed in the hope that it will be useful,
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ # Lesser General Public License for more details.
+ #
+ # You should have received a copy of the GNU Lesser General Public
+ # License along with this library; if not, write to the Free Software
+ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+
# Should the generated Java class files include debugging information ?
# javac.debug=true
Index: build.xml
===================================================================
RCS file: /cvsroot/jgb/jgb/build.xml,v
retrieving revision 1.112
retrieving revision 1.113
diff -C2 -d -r1.112 -r1.113
*** build.xml 25 Jun 2003 19:56:32 -0000 1.112
--- build.xml 27 Jun 2003 16:45:47 -0000 1.113
***************
*** 1,3 ****
--- 1,23 ----
<?xml version="1.0" encoding="ISO-8859-1"?>
+ <!--
+ /**
+ * Java Gui Builder - A library to build GUIs using an XML file.
+ * Copyright 2002, 2003 (C) François Beausoleil
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+ -->
<project name="Java Gui Builder" basedir="." default="test">
<property file="build.properties"/>
|