From: Kal S. <swo...@gm...> - 2009-09-09 08:48:50
|
Hello, I made a minor modification to LogicalDOC to suite my needs: I made TagUtil extract tags in a much simpler manner by only splitting the tag string at commas and then trimming. The official implementation splits at spaces, commas, and truncates hyphens; and I don't want all that. What is the recommended way to pack it into a jar? I have unzipped the official logicaldoc-util-4.5.2.jar to see what's inside and I find files related to Maven, besides the usual class files. Maven is all new to me and I don't know how it works, so please forgive my noobiness. Best Regards, Kal -- “Engineers are not boring people; we just get excited over boring things.” |
From: Alessandro G. <a.g...@lo...> - 2009-09-09 10:01:15
|
You should read the developer manual of LogicalDOC http://downloads.sourceforge.net/logicaldoc/logicaldoc-devmanual-1.1.pdf?use_mirror= anyway after you've installed maven 2 vers. 2.1.0 from a cmd shell go inside the folder of the module logicaldoc-util and type the command: mvn -Dmaven.test.skip=true clean package if all goes well you should find a new packaged jar inside the folder target Kal Sze ha scritto: > Hello, > > I made a minor modification to LogicalDOC to suite my needs: I made > TagUtil extract tags in a much simpler manner by only splitting the > tag string at commas and then trimming. The official implementation > splits at spaces, commas, and truncates hyphens; and I don't want all > that. > > What is the recommended way to pack it into a jar? I have unzipped the > official logicaldoc-util-4.5.2.jar to see what's inside and I find > files related to Maven, besides the usual class files. Maven is all > new to me and I don't know how it works, so please forgive my noobiness. > > Best Regards, > Kal > -- > “Engineers are not boring people; we just get excited over boring things.” > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------------ > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day > trial. Simplify your report design, integration and deployment - and focus on > what you do best, core application coding. Discover what's new with > Crystal Reports now. http://p.sf.net/sfu/bobj-july > > > __________ Informazioni da ESET NOD32 Antivirus, versione del database delle firme digitali 4408 (20090908) __________ > > Il messaggio è stato controllato da ESET NOD32 Antivirus. > > www.nod32.it > > > ------------------------------------------------------------------------ > > _______________________________________________ > Logicaldoc-devel mailing list > Log...@li... > https://lists.sourceforge.net/lists/listinfo/logicaldoc-devel > > > > __________ Informazioni da ESET NOD32 Antivirus, versione del database delle firme digitali 4408 (20090908) __________ > > Il messaggio è stato controllato da ESET NOD32 Antivirus. > > www.nod32.it > > -- --------------------------------------------------------------- Alessandro Gasparini e-mail: a.g...@lo... <mailto:a.g...@lo...> --------------------------------------------------------------- Logical Objects snc Via Bonasi, 2/A 41012 Carpi (MO) Italy Tel./Fax. 059 688969 web: http://www.logicalobjects.it |
From: Kal S. <swo...@gm...> - 2009-09-10 03:51:55
|
Hello Alessandro, I am still unable to package the whole LogicalDOC into a WAR file because Maven is unable to find resource 'com.logicaldoc:logicaldoc-core:zip:plugin:4.5.2'. This has been the case since I first tried to package with "mvn -Dmaven.test.skip=true clean package" yesterday. Best Regards, Kal 2009/9/9 Alessandro Gasparini <a.g...@lo...> > You should read the developer manual of LogicalDOC > > > http://downloads.sourceforge.net/logicaldoc/logicaldoc-devmanual-1.1.pdf?use_mirror= > > anyway after you've installed maven 2 vers. 2.1.0 > from a cmd shell go inside the folder of the module logicaldoc-util > and type the command: > > mvn -Dmaven.test.skip=true clean package > > if all goes well you should find a new packaged jar inside the folder > target > > > > Kal Sze ha scritto: > >> Hello, >> >> I made a minor modification to LogicalDOC to suite my needs: I made >> TagUtil extract tags in a much simpler manner by only splitting the tag >> string at commas and then trimming. The official implementation splits at >> spaces, commas, and truncates hyphens; and I don't want all that. >> >> What is the recommended way to pack it into a jar? I have unzipped the >> official logicaldoc-util-4.5.2.jar to see what's inside and I find files >> related to Maven, besides the usual class files. Maven is all new to me and >> I don't know how it works, so please forgive my noobiness. >> >> Best Regards, >> Kal >> -- >> “Engineers are not boring people; we just get excited over boring things.” >> ------------------------------------------------------------------------ >> >> >> ------------------------------------------------------------------------------ >> Let Crystal Reports handle the reporting - Free Crystal Reports 2008 >> 30-Day trial. Simplify your report design, integration and deployment - and >> focus on what you do best, core application coding. Discover what's new with >> Crystal Reports now. http://p.sf.net/sfu/bobj-july >> >> >> __________ Informazioni da ESET NOD32 Antivirus, versione del database >> delle firme digitali 4408 (20090908) __________ >> >> Il messaggio è stato controllato da ESET NOD32 Antivirus. >> >> www.nod32.it >> >> ------------------------------------------------------------------------ >> >> _______________________________________________ >> Logicaldoc-devel mailing list >> Log...@li... >> https://lists.sourceforge.net/lists/listinfo/logicaldoc-devel >> >> >> >> __________ Informazioni da ESET NOD32 Antivirus, versione del database >> delle firme digitali 4408 (20090908) __________ >> >> Il messaggio è stato controllato da ESET NOD32 Antivirus. >> >> www.nod32.it >> >> >> > > -- > --------------------------------------------------------------- > Alessandro Gasparini > e-mail: a.g...@lo... <mailto: > a.g...@lo...> > --------------------------------------------------------------- > Logical Objects snc > Via Bonasi, 2/A 41012 Carpi (MO) Italy > Tel./Fax. 059 688969 > web: http://www.logicalobjects.it > > -- “Engineers are not boring people; we just get excited over boring things.” |
From: Kal S. <swo...@gm...> - 2009-09-10 05:58:49
|
Actually, com.logicaldoc:logicaldoc-core:zip:plugin:4.5.2 was not the only resource that Maven could not find, though those other ones did not cause an immediate build failure; they are: - betelio:betelio:pom:1.0 - oracle:oracle:pom:9.0.2.0.0 I already have the http://logicaldoc.sourceforge.net/maven repository specified in pom.xml. 2009/9/10 Kal Sze <swo...@gm...> > Hello Alessandro, > > I am still unable to package the whole LogicalDOC into a WAR file because > Maven is unable to find resource > 'com.logicaldoc:logicaldoc-core:zip:plugin:4.5.2'. This has been the case > since I first tried to package with "mvn -Dmaven.test.skip=true clean > package" yesterday. > > Best Regards, > Kal > > 2009/9/9 Alessandro Gasparini <a.g...@lo...> > > You should read the developer manual of LogicalDOC >> >> >> http://downloads.sourceforge.net/logicaldoc/logicaldoc-devmanual-1.1.pdf?use_mirror= >> >> anyway after you've installed maven 2 vers. 2.1.0 >> from a cmd shell go inside the folder of the module logicaldoc-util >> and type the command: >> >> mvn -Dmaven.test.skip=true clean package >> >> if all goes well you should find a new packaged jar inside the folder >> target >> >> >> >> Kal Sze ha scritto: >> >>> Hello, >>> >>> I made a minor modification to LogicalDOC to suite my needs: I made >>> TagUtil extract tags in a much simpler manner by only splitting the tag >>> string at commas and then trimming. The official implementation splits at >>> spaces, commas, and truncates hyphens; and I don't want all that. >>> >>> What is the recommended way to pack it into a jar? I have unzipped the >>> official logicaldoc-util-4.5.2.jar to see what's inside and I find files >>> related to Maven, besides the usual class files. Maven is all new to me and >>> I don't know how it works, so please forgive my noobiness. >>> >>> Best Regards, >>> Kal >>> -- >>> “Engineers are not boring people; we just get excited over boring >>> things.” >>> ------------------------------------------------------------------------ >>> >>> >>> ------------------------------------------------------------------------------ >>> Let Crystal Reports handle the reporting - Free Crystal Reports 2008 >>> 30-Day trial. Simplify your report design, integration and deployment - and >>> focus on what you do best, core application coding. Discover what's new with >>> Crystal Reports now. http://p.sf.net/sfu/bobj-july >>> >>> >>> __________ Informazioni da ESET NOD32 Antivirus, versione del database >>> delle firme digitali 4408 (20090908) __________ >>> >>> Il messaggio è stato controllato da ESET NOD32 Antivirus. >>> >>> www.nod32.it >>> >>> ------------------------------------------------------------------------ >>> >>> _______________________________________________ >>> Logicaldoc-devel mailing list >>> Log...@li... >>> https://lists.sourceforge.net/lists/listinfo/logicaldoc-devel >>> >>> >>> >>> __________ Informazioni da ESET NOD32 Antivirus, versione del database >>> delle firme digitali 4408 (20090908) __________ >>> >>> Il messaggio è stato controllato da ESET NOD32 Antivirus. >>> >>> www.nod32.it >>> >>> >>> >> >> -- >> --------------------------------------------------------------- >> Alessandro Gasparini >> e-mail: a.g...@lo... <mailto: >> a.g...@lo...> >> --------------------------------------------------------------- >> Logical Objects snc >> Via Bonasi, 2/A 41012 Carpi (MO) Italy >> Tel./Fax. 059 688969 >> web: http://www.logicalobjects.it >> >> > > > -- > “Engineers are not boring people; we just get excited over boring things.” > -- “Engineers are not boring people; we just get excited over boring things.” |