This is an automated email from the git hooks/post-receive script. New commit to branch release/0.8 in repository lima. See http://git.chorem.org/lima.git commit 1658d92aa0ebc50c514f8dff002f154ddc2530e2 Author: Maven Release <maven-release@codelutin.com> Date: Fri Feb 27 17:41:22 2015 +0000 prepare release 0.8 --- .../chorem/lima/business/api/OptionsService.java | 8 ++--- .../api/report/GeneralEntryBookReportService.java | 22 ++++++++++++ .../business/api/report/LedgerReportService.java | 22 ++++++++++++ .../report/ProvisionalEntryBookReportService.java | 22 ++++++++++++ lima-business/pom.xml | 5 +-- .../report/GeneralEntryBookReportServiceImpl.java | 22 ++++++++++++ .../ejb/report/LedgerReportServiceImpl.java | 22 ++++++++++++ .../ProvisionalEntryBookReportServiceImpl.java | 22 ++++++++++++ .../lima/business/utils/BigDecimalToString.java | 22 ++++++++++++ .../org/chorem/lima/entity/FiscalPeriodImpl.java | 22 ++++++++++++ .../chorem/lima/entity/LimaFlywayServiceImpl.java | 22 ++++++++++++ .../db/migration/V0_5_0_0__migration1.sql | 21 +++++++++++ .../db/migration/V0_6_0_0__migration2.sql | 21 +++++++++++ lima-swing/pom.xml | 4 --- lima-swing/src/license/THIRD-PARTY.properties | 15 +++----- .../lima/ui/financialtransaction/DayColumn.java | 22 ++++++++++++ lima-web/pom.xml | 6 ++-- lima-web/src/main/assembly/bin.xml | 42 +++++++++++----------- pom.xml | 27 +++++++++++--- 19 files changed, 321 insertions(+), 48 deletions(-) diff --git a/lima-business-api/src/main/java/org/chorem/lima/business/api/OptionsService.java b/lima-business-api/src/main/java/org/chorem/lima/business/api/OptionsService.java index c0217fb..7128260 100644 --- a/lima-business-api/src/main/java/org/chorem/lima/business/api/OptionsService.java +++ b/lima-business-api/src/main/java/org/chorem/lima/business/api/OptionsService.java @@ -5,16 +5,16 @@ * Copyright (C) 2008 - 2011 CodeLutin * %% * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General License as - * published by the Free Software Foundation, either version 3 of the + * 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 License for more details. + * GNU General Public License for more details. * - * You should have received a copy of the GNU General + * 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% diff --git a/lima-business-api/src/main/java/org/chorem/lima/business/api/report/GeneralEntryBookReportService.java b/lima-business-api/src/main/java/org/chorem/lima/business/api/report/GeneralEntryBookReportService.java index b1af150..57cc07b 100644 --- a/lima-business-api/src/main/java/org/chorem/lima/business/api/report/GeneralEntryBookReportService.java +++ b/lima-business-api/src/main/java/org/chorem/lima/business/api/report/GeneralEntryBookReportService.java @@ -1,5 +1,27 @@ package org.chorem.lima.business.api.report; +/* + * #%L + * Lima :: business API + * %% + * Copyright (C) 2008 - 2015 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 org.chorem.lima.beans.DocumentReport; import java.text.DecimalFormat; diff --git a/lima-business-api/src/main/java/org/chorem/lima/business/api/report/LedgerReportService.java b/lima-business-api/src/main/java/org/chorem/lima/business/api/report/LedgerReportService.java index 2e31073..92e1ee0 100644 --- a/lima-business-api/src/main/java/org/chorem/lima/business/api/report/LedgerReportService.java +++ b/lima-business-api/src/main/java/org/chorem/lima/business/api/report/LedgerReportService.java @@ -1,5 +1,27 @@ package org.chorem.lima.business.api.report; +/* + * #%L + * Lima :: business API + * %% + * Copyright (C) 2008 - 2015 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 org.chorem.lima.beans.DocumentReport; import java.text.DecimalFormat; diff --git a/lima-business-api/src/main/java/org/chorem/lima/business/api/report/ProvisionalEntryBookReportService.java b/lima-business-api/src/main/java/org/chorem/lima/business/api/report/ProvisionalEntryBookReportService.java index 5c10655..7ad0a07 100644 --- a/lima-business-api/src/main/java/org/chorem/lima/business/api/report/ProvisionalEntryBookReportService.java +++ b/lima-business-api/src/main/java/org/chorem/lima/business/api/report/ProvisionalEntryBookReportService.java @@ -1,5 +1,27 @@ package org.chorem.lima.business.api.report; +/* + * #%L + * Lima :: business API + * %% + * Copyright (C) 2008 - 2015 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 org.chorem.lima.beans.DocumentReport; import java.text.DecimalFormat; diff --git a/lima-business/pom.xml b/lima-business/pom.xml index c899c4a..7e88c71 100644 --- a/lima-business/pom.xml +++ b/lima-business/pom.xml @@ -87,6 +87,7 @@ <dependency> <groupId>org.apache.openejb</groupId> <artifactId>openejb-core</artifactId> + <scope>runtime</scope> </dependency> <dependency> <groupId>org.apache.openejb</groupId> @@ -100,10 +101,10 @@ <groupId>org.jboss.spec.javax.transaction</groupId> <artifactId>jboss-transaction-api_1.2_spec</artifactId> </dependency> - <dependency> + <!--dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> - </dependency> + </dependency--> </dependencies> <build> diff --git a/lima-business/src/main/java/org/chorem/lima/business/ejb/report/GeneralEntryBookReportServiceImpl.java b/lima-business/src/main/java/org/chorem/lima/business/ejb/report/GeneralEntryBookReportServiceImpl.java index 4d3fbeb..8f8fab1 100644 --- a/lima-business/src/main/java/org/chorem/lima/business/ejb/report/GeneralEntryBookReportServiceImpl.java +++ b/lima-business/src/main/java/org/chorem/lima/business/ejb/report/GeneralEntryBookReportServiceImpl.java @@ -1,5 +1,27 @@ package org.chorem.lima.business.ejb.report; +/* + * #%L + * Lima :: business + * %% + * Copyright (C) 2008 - 2015 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 com.google.common.base.Predicate; import com.google.common.collect.Iterables; import com.google.common.collect.Lists; diff --git a/lima-business/src/main/java/org/chorem/lima/business/ejb/report/LedgerReportServiceImpl.java b/lima-business/src/main/java/org/chorem/lima/business/ejb/report/LedgerReportServiceImpl.java index 3b9fe11..efd83a4 100644 --- a/lima-business/src/main/java/org/chorem/lima/business/ejb/report/LedgerReportServiceImpl.java +++ b/lima-business/src/main/java/org/chorem/lima/business/ejb/report/LedgerReportServiceImpl.java @@ -1,5 +1,27 @@ package org.chorem.lima.business.ejb.report; +/* + * #%L + * Lima :: business + * %% + * Copyright (C) 2008 - 2015 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 com.google.common.base.Preconditions; import org.apache.commons.lang3.StringUtils; import org.chorem.lima.LimaTechnicalException; diff --git a/lima-business/src/main/java/org/chorem/lima/business/ejb/report/ProvisionalEntryBookReportServiceImpl.java b/lima-business/src/main/java/org/chorem/lima/business/ejb/report/ProvisionalEntryBookReportServiceImpl.java index 9e42ed0..ab8a666 100644 --- a/lima-business/src/main/java/org/chorem/lima/business/ejb/report/ProvisionalEntryBookReportServiceImpl.java +++ b/lima-business/src/main/java/org/chorem/lima/business/ejb/report/ProvisionalEntryBookReportServiceImpl.java @@ -1,5 +1,27 @@ package org.chorem.lima.business.ejb.report; +/* + * #%L + * Lima :: business + * %% + * Copyright (C) 2008 - 2015 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 com.google.common.base.Preconditions; import org.apache.commons.lang3.StringUtils; import org.apache.commons.logging.Log; diff --git a/lima-business/src/main/java/org/chorem/lima/business/utils/BigDecimalToString.java b/lima-business/src/main/java/org/chorem/lima/business/utils/BigDecimalToString.java index 2325dee..76f20c3 100644 --- a/lima-business/src/main/java/org/chorem/lima/business/utils/BigDecimalToString.java +++ b/lima-business/src/main/java/org/chorem/lima/business/utils/BigDecimalToString.java @@ -1,5 +1,27 @@ package org.chorem.lima.business.utils; +/* + * #%L + * Lima :: business + * %% + * Copyright (C) 2008 - 2015 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 org.chorem.lima.business.LimaServiceConfig; import java.text.DecimalFormat; diff --git a/lima-callao/src/main/java/org/chorem/lima/entity/FiscalPeriodImpl.java b/lima-callao/src/main/java/org/chorem/lima/entity/FiscalPeriodImpl.java index 5b3e62a..5715666 100644 --- a/lima-callao/src/main/java/org/chorem/lima/entity/FiscalPeriodImpl.java +++ b/lima-callao/src/main/java/org/chorem/lima/entity/FiscalPeriodImpl.java @@ -1,5 +1,27 @@ package org.chorem.lima.entity; +/* + * #%L + * Lima :: callao + * %% + * Copyright (C) 2008 - 2015 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.util.Comparator; import java.util.Date; diff --git a/lima-callao/src/main/java/org/chorem/lima/entity/LimaFlywayServiceImpl.java b/lima-callao/src/main/java/org/chorem/lima/entity/LimaFlywayServiceImpl.java index d239e3f..9c3f0cc 100644 --- a/lima-callao/src/main/java/org/chorem/lima/entity/LimaFlywayServiceImpl.java +++ b/lima-callao/src/main/java/org/chorem/lima/entity/LimaFlywayServiceImpl.java @@ -1,5 +1,27 @@ package org.chorem.lima.entity; +/* + * #%L + * Lima :: callao + * %% + * Copyright (C) 2008 - 2015 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 org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.h2.Driver; diff --git a/lima-callao/src/main/resources/db/migration/V0_5_0_0__migration1.sql b/lima-callao/src/main/resources/db/migration/V0_5_0_0__migration1.sql index 9d4bfc5..2abf341 100644 --- a/lima-callao/src/main/resources/db/migration/V0_5_0_0__migration1.sql +++ b/lima-callao/src/main/resources/db/migration/V0_5_0_0__migration1.sql @@ -1,3 +1,24 @@ +--- +-- #%L +-- Lima :: callao +-- %% +-- Copyright (C) 2008 - 2015 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% +--- -- migration Lima data base from 0.4 to 0.5 Alter table record alter AMOUNT clob; \ No newline at end of file diff --git a/lima-callao/src/main/resources/db/migration/V0_6_0_0__migration2.sql b/lima-callao/src/main/resources/db/migration/V0_6_0_0__migration2.sql index eaf9f96..5d58282 100644 --- a/lima-callao/src/main/resources/db/migration/V0_6_0_0__migration2.sql +++ b/lima-callao/src/main/resources/db/migration/V0_6_0_0__migration2.sql @@ -1,3 +1,24 @@ +--- +-- #%L +-- Lima :: callao +-- %% +-- Copyright (C) 2008 - 2015 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% +--- -- migration Lima data base from 0.5 to 0.6 -- migration from h2 to 1.3.166 not supporting index on clob diff --git a/lima-swing/pom.xml b/lima-swing/pom.xml index fa3b298..be94ad8 100644 --- a/lima-swing/pom.xml +++ b/lima-swing/pom.xml @@ -190,10 +190,6 @@ <artifactId>topia-persistence</artifactId> </dependency> - <dependency> - <groupId>org.bluestemsoftware.open.maven.plugin</groupId> - <artifactId>launch4j-plugin</artifactId> - </dependency> </dependencies> <build> diff --git a/lima-swing/src/license/THIRD-PARTY.properties b/lima-swing/src/license/THIRD-PARTY.properties index 2cceb0a..0a7875b 100644 --- a/lima-swing/src/license/THIRD-PARTY.properties +++ b/lima-swing/src/license/THIRD-PARTY.properties @@ -4,13 +4,10 @@ # - AL 2.0 # - Apache 2 # - Apache License 2.0 -# - Apache License, Version 2.0 # - Apache License, version 2.0 # - Apache Software License - Version 2.0 # - Apache Software License 2.0 -# - BSD # - BSD License -# - BSD style # - CDDL # - CDDL + GPLv2 with classpath exception # - CDDL 1.1 @@ -22,18 +19,18 @@ # - Eclipse Public License - Version 1.0 # - Eclipse Public License - v 1.0 # - GNU General Lesser Public License (LGPL) version 3.0 -# - GNU General Public License # - GNU General Public License, Version 2 with the Classpath Exception # - GNU Lesser General Public Licence -# - GNU Lesser General Public License # - GNU Library or Lesser General Public License # - GPL2 w/ CPE # - GPLv2+CE # - General Public License (GPL) # - HSQLDB License, a BSD open source license -# - LGPL 2.1 +# - Indiana University Extreme! Lab Software License, vesion 1.1.1 # - Lesser General Public License (LGPL) # - Lesser General Public License (LGPL) v 3.0 +# - Lesser General Public License (LPGL) +# - Lesser General Public License (LPGL) v 2.1 # - MIT License # - MPL 1.1 # - Mozilla Public License Version 2.0 @@ -48,18 +45,14 @@ # Please fill the missing licenses for dependencies : # # -#Fri Feb 13 18:39:13 CET 2015 -classworlds--classworlds--1.1-alpha-2=The Apache Software License, Version 2.0 +#Fri Feb 27 17:40:22 UTC 2015 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=jdomlicence eclipse--jdtcore--3.1.0=Eclipse Public License - v 1.0 jakarta-regexp--jakarta-regexp--1.4=The Apache Software License, Version 2.0 org.codehaus.castor--castor--1.2=The Apache Software License, Version 2.0 -org.codehaus.plexus--plexus-archiver--1.0-alpha-7=The Apache Software License, Version 2.0 -org.codehaus.plexus--plexus-container-default--1.0-alpha-9-stable-1=The Apache Software License, Version 2.0 org.metatype.sxc--sxc-jaxb-core--0.8=CDDL 1.1 org.metatype.sxc--sxc-runtime--0.8=CDDL 1.1 org.olap4j--olap4j--0.9.7.309-JS-3=GNU Lesser General Public License xml-apis--xml-apis--1.3.02=The Apache Software License, Version 2.0 -xpp3--xpp3_min--1.1.3.4.O=The Apache Software License, Version 2.0 diff --git a/lima-swing/src/main/java/org/chorem/lima/ui/financialtransaction/DayColumn.java b/lima-swing/src/main/java/org/chorem/lima/ui/financialtransaction/DayColumn.java index 340e9f6..d59a5c2 100644 --- a/lima-swing/src/main/java/org/chorem/lima/ui/financialtransaction/DayColumn.java +++ b/lima-swing/src/main/java/org/chorem/lima/ui/financialtransaction/DayColumn.java @@ -1,5 +1,27 @@ package org.chorem.lima.ui.financialtransaction; +/* + * #%L + * Lima :: Swing + * %% + * Copyright (C) 2008 - 2015 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 org.chorem.lima.entity.Entry; import org.chorem.lima.entity.FinancialTransaction; import org.chorem.lima.ui.common.AbstractColumn; diff --git a/lima-web/pom.xml b/lima-web/pom.xml index df97176..d6204d6 100644 --- a/lima-web/pom.xml +++ b/lima-web/pom.xml @@ -73,15 +73,17 @@ <groupId>net.sf.jasperreports</groupId> <artifactId>jasperreports</artifactId> </dependency> + <!-- FIXME tchemit 2015-02-27 Do we really need this here ? --> <dependency> <groupId>org.apache.pdfbox</groupId> <artifactId>pdfbox</artifactId> - <scope>compile</scope> + <scope>runtime</scope> </dependency> + <!-- FIXME tchemit 2015-02-27 Do we really need this here ? --> <dependency> <groupId>org.apache.pdfbox</groupId> <artifactId>pdfbox-examples</artifactId> - <scope>compile</scope> + <scope>runtime</scope> </dependency> <dependency> <groupId>commons-io</groupId> diff --git a/lima-web/src/main/assembly/bin.xml b/lima-web/src/main/assembly/bin.xml index 936c074..9baff9f 100644 --- a/lima-web/src/main/assembly/bin.xml +++ b/lima-web/src/main/assembly/bin.xml @@ -77,26 +77,26 @@ <include>*.jrxml</include> </includes> </fileSet> + <fileSet> + <directory>src/main/jasperreports/entryBook</directory> + <outputDirectory>jasperreports</outputDirectory> + <includes> + <include>*.jrxml</include> + </includes> + </fileSet> + <fileSet> + <directory>src/main/jasperreports/generalEntryBook</directory> + <outputDirectory>jasperreports</outputDirectory> + <includes> + <include>*.jrxml</include> + </includes> + </fileSet> + <fileSet> + <directory>src/main/jasperreports/ledger</directory> + <outputDirectory>jasperreports</outputDirectory> + <includes> + <include>*.jrxml</include> + </includes> + </fileSet> </fileSets> - <fileSet> - <directory>src/main/jasperreports/entryBook</directory> - <outputDirectory>jasperreports</outputDirectory> - <includes> - <include>*.jrxml</include> - </includes> - </fileSet> - <fileSet> - <directory>src/main/jasperreports/generalEntryBook</directory> - <outputDirectory>jasperreports</outputDirectory> - <includes> - <include>*.jrxml</include> - </includes> - </fileSet> - <fileSet> - <directory>src/main/jasperreports/ledger</directory> - <outputDirectory>jasperreports</outputDirectory> - <includes> - <include>*.jrxml</include> - </includes> - </fileSet> </assembly> diff --git a/pom.xml b/pom.xml index 0dbca6d..b19caf0 100644 --- a/pom.xml +++ b/pom.xml @@ -173,16 +173,16 @@ <signatureVersion>1.0</signatureVersion> <!-- customized libs version --> - <eugeneVersion>3.0-SNAPSHOT</eugeneVersion> + <eugeneVersion>2.14</eugeneVersion> <nuitonConfigVersion>3.0-rc-2</nuitonConfigVersion> <nuitonDecoratorVersion>3.0-alpha-3</nuitonDecoratorVersion> <nuitonProfilingVersion>3.0</nuitonProfilingVersion> <nuitonConverterVersion>1.0</nuitonConverterVersion> <nuitonCsvVersion>3.0-rc-4</nuitonCsvVersion> <nuitonI18nVersion>3.3</nuitonI18nVersion> - <nuitonUtilsVersion>3.0-SNAPSHOT</nuitonUtilsVersion> + <nuitonUtilsVersion>3.0-rc-8</nuitonUtilsVersion> <nuitonWidgetsVersion>1.1.1</nuitonWidgetsVersion> - <topiaVersion>3.0-SNAPSHOT</topiaVersion> + <topiaVersion>3.0-beta-15</topiaVersion> <commonsCodecVersion>1.9</commonsCodecVersion> <commonsEmailVersion>1.3.3</commonsEmailVersion> @@ -203,7 +203,6 @@ <jdomVersion>2.0.5</jdomVersion> <jettyPluginVersion>9.2.3.v20140905</jettyPluginVersion> <junitVersion>4.11</junitVersion> - <launch4jPluginVersion>1.5.0.0</launch4jPluginVersion> <log4jVersion>1.2.17</log4jVersion> <openejbJavaeeApiVersion>6.0-6</openejbJavaeeApiVersion> <openEjbVersion>4.7.1</openEjbVersion> @@ -633,11 +632,31 @@ </dependencies> </plugin> + <plugin> + <groupId>org.bluestemsoftware.open.maven.plugin</groupId> + <artifactId>launch4j-plugin</artifactId> + <version>1.5.0.0</version> + </plugin> + </plugins> </pluginManagement> </build> <profiles> + + <profile> + <id>release-quality-profile</id> + <activation> + <property> + <name>performRelease</name> + <value>true</value> + </property> + </activation> + <properties> + <helper.skipCheckAutocontainer>true</helper.skipCheckAutocontainer> + </properties> + </profile> + </profiles> </project> -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.