Author: bpoussin Date: 2014-07-11 17:35:04 +0200 (Fri, 11 Jul 2014) New Revision: 4038 Url: http://forge.codelutin.com/projects/isis-fish/repository/revisions/4038 Log: - add license header - use nuiton-matrix 2.5-SNAPSHOT Modified: trunk/pom.xml trunk/src/license/THIRD-PARTY.properties trunk/src/main/java/fr/ifremer/isisfish/datastore/ResultStorageCSV.java trunk/src/main/java/fr/ifremer/isisfish/ui/sensitivity/wizard/ContinuousDistributionPanel.java trunk/src/main/java/fr/ifremer/isisfish/util/SimpleParser.java Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2014-07-11 11:21:35 UTC (rev 4037) +++ trunk/pom.xml 2014-07-11 15:35:04 UTC (rev 4038) @@ -88,14 +88,14 @@ <dependency> <groupId>org.nuiton.matrix</groupId> <artifactId>nuiton-matrix</artifactId> - <version>2.4.2-SNAPSHOT</version> + <version>2.5-SNAPSHOT</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.nuiton.matrix</groupId> <artifactId>nuiton-matrix-gui</artifactId> - <version>2.4.2-SNAPSHOT</version> + <version>2.5-SNAPSHOT</version> <scope>compile</scope> </dependency> Modified: trunk/src/license/THIRD-PARTY.properties =================================================================== --- trunk/src/license/THIRD-PARTY.properties 2014-07-11 11:21:35 UTC (rev 4037) +++ trunk/src/license/THIRD-PARTY.properties 2014-07-11 15:35:04 UTC (rev 4038) @@ -45,9 +45,8 @@ # Please fill the missing licenses for dependencies : # # -#Fri May 30 10:59:27 CEST 2014 +#Fri Jul 11 17:44:59 CEST 2014 commons-jxpath--commons-jxpath--1.3=The Apache Software License, Version 2.0 commons-primitives--commons-primitives--1.0=The Apache Software License, Version 2.0 dom4j--dom4j--1.6.1=BSD License -javax.activation--activation--1.1.1=COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0 org.antlr--antlr-runtime--3.4=BSD License Modified: trunk/src/main/java/fr/ifremer/isisfish/datastore/ResultStorageCSV.java =================================================================== --- trunk/src/main/java/fr/ifremer/isisfish/datastore/ResultStorageCSV.java 2014-07-11 11:21:35 UTC (rev 4037) +++ trunk/src/main/java/fr/ifremer/isisfish/datastore/ResultStorageCSV.java 2014-07-11 15:35:04 UTC (rev 4038) @@ -1,6 +1,28 @@ package fr.ifremer.isisfish.datastore; +/* + * #%L + * IsisFish + * %% + * Copyright (C) 1999 - 2014 Ifremer, Codelutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public + * License along with this program. If not, see + * <http://www.gnu.org/licenses/gpl-3.0.html>. + * #L% + */ + import fr.ifremer.isisfish.IsisFish; import fr.ifremer.isisfish.IsisFishRuntimeException; import fr.ifremer.isisfish.simulator.SimulationContext; Modified: trunk/src/main/java/fr/ifremer/isisfish/ui/sensitivity/wizard/ContinuousDistributionPanel.java =================================================================== --- trunk/src/main/java/fr/ifremer/isisfish/ui/sensitivity/wizard/ContinuousDistributionPanel.java 2014-07-11 11:21:35 UTC (rev 4037) +++ trunk/src/main/java/fr/ifremer/isisfish/ui/sensitivity/wizard/ContinuousDistributionPanel.java 2014-07-11 15:35:04 UTC (rev 4038) @@ -5,7 +5,7 @@ * $Id$ * $HeadURL$ * %% - * Copyright (C) 2012, 2014 Ifremer, Codelutin, Chatellier Eric + * Copyright (C) 2012 - 2014 Ifremer, Codelutin, Chatellier Eric * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as Modified: trunk/src/main/java/fr/ifremer/isisfish/util/SimpleParser.java =================================================================== --- trunk/src/main/java/fr/ifremer/isisfish/util/SimpleParser.java 2014-07-11 11:21:35 UTC (rev 4037) +++ trunk/src/main/java/fr/ifremer/isisfish/util/SimpleParser.java 2014-07-11 15:35:04 UTC (rev 4038) @@ -1,6 +1,28 @@ package fr.ifremer.isisfish.util; +/* + * #%L + * IsisFish + * %% + * Copyright (C) 1999 - 2014 Ifremer, Codelutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public + * License along with this program. If not, see + * <http://www.gnu.org/licenses/gpl-3.0.html>. + * #L% + */ + import java.io.BufferedReader; import java.io.IOException; import org.apache.commons.logging.Log;