diff --git a/pom.xml b/pom.xml index fa4638eac98375b85757c5b9c1142f14f8ebb262..c17c86f117ef54205e1a699c8bf5f16e97d8ced3 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ <groupId>no.nibio.vips.model</groupId> <artifactId>NaerstadModel</artifactId> - <version>1.1.2</version> + <version>1.1.3-SNAPSHOT</version> <packaging>jar</packaging> <dependencies> @@ -34,7 +34,7 @@ <dependency> <groupId>no.nibio.vips</groupId> <artifactId>VIPSCommon</artifactId> - <version>2.0.1</version> + <version>2.0.2</version> </dependency> </dependencies> diff --git a/src/main/java/no/nibio/vips/model/naerstadmodel/NaerstadModel.java b/src/main/java/no/nibio/vips/model/naerstadmodel/NaerstadModel.java index b60803318b287e1d4d01fd4c8d28dd93eed31599..d48928ca75a0d0bc7af4c860940322cf7902dcc7 100755 --- a/src/main/java/no/nibio/vips/model/naerstadmodel/NaerstadModel.java +++ b/src/main/java/no/nibio/vips/model/naerstadmodel/NaerstadModel.java @@ -631,27 +631,29 @@ public class NaerstadModel extends I18nImpl implements Model{ @Override public String getLicense() { - return "\n" + - "Copyright (c) 2013-2015 NIBIO <http://www.nibio.no/>. \n" + - "\n" + - "This file is part of NaerstadModel.\n" + - "NaerstadModel is free software: you can redistribute it and/or modify\n" + - "it under the terms of the NIBIO Open Source License as published by \n" + - "NIBIO, either version 1 of the License, or (at your option) any\n" + - "later version.\n" + - "\n" + - "NaerstadModel is distributed in the hope that it will be useful,\n" + - "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" + - "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" + - "NIBIO Open Source License for more details.\n" + - "\n" + - "You should have received a copy of the NIBIO Open Source License\n" + - "along with NaerstadModel. If not, see <http://www.nibio.no/licenses/>."; + return + " Copyright (c) 2014 NIBIO <http://www.nibio.no/>. \n" + + " \n" + + " This file is part of NaerstadModel.\n" + + " \n" + + " This program is free software: you can redistribute it and/or modify\n" + + " it under the terms of the GNU Affero General Public License as published by\n" + + " the Free Software Foundation, either version 3 of the License, or\n" + + " (at your option) any later version.\n" + + " \n" + + " This program is distributed in the hope that it will be useful,\n" + + " but WITHOUT ANY WARRANTY; without even the implied warranty of\n" + + " MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" + + " GNU Affero General Public License for more details.\n" + + " \n" + + " You should have received a copy of the GNU Affero General Public License\n" + + " along with this program. If not, see <https://www.gnu.org/licenses/>.\n" + + " \n" ; } @Override public String getCopyright() { - return "(c) 2013-2015 NIBIO (http://www.nibio.no/). Contact: post@nibio.no"; + return "(c) 2013-2023 NIBIO (http://www.nibio.no/). Contact: post@nibio.no"; } @Override