|
Fornax-Platform
Forum |
|
View:
New views
14 Messages
—
Rating Filter:
Alert me
|
|
|
Checksum pluginHello,
finally I integrated checksum plugin with project. Attached are latest sources 'fornax-cartridges-sculptor-maven-plugin-checksum.zip' just unzip and start 'mvn install' or unzip 'checksum-plugin.zip' directly to your Maven repository. Than you have to put content of 'plugin.xml' to <plugins> section in pom.xml file. Try it, send me feedback. To Patrik: This is independent version. Is artifactId, ... OK for you to include plugin to SVN? Should I put it to other SVN repository (oAW, Maven, ...)? Regards Pavel <plugin> <groupId>org.fornax.cartridges.maven.checksum</groupId> <artifactId>fornax-cartridges-sculptor-maven-plugin-checksum</artifactId> <version>1.0-SNAPSHOT</version> <executions> <execution> <id>clean</id> <phase>clean</phase> <goals><goal>run</goal></goals> </execution> <execution> <id>before install</id> <phase>initialize</phase> <goals><goal>run</goal></goals> <configuration> <action>before-generate</action> </configuration> </execution> <execution> <id>after install</id> <phase>process-sources</phase> <goals><goal>run</goal></goals> <configuration> <action>after-generate</action> </configuration> </execution> </executions> </plugin> ------------------------------------------------------------------------------ _______________________________________________ Fornax-developer mailing list Fornax-developer@... https://lists.sourceforge.net/lists/listinfo/fornax-developer |
|
|
Re: Checksum pluginPavel,
I deployed the plugin to the snapshot repository: http://www.fornax-platform.org/archiva/repository/snapshots/org/fornax/cartridges/maven/checksum/fornax-cartridges-sculptor-maven-plugin-checksum/1.0-SNAPSHOT/ Please check - is the version schema OK? Usually we use Major.Minor.Micro. - are groupId and artifactId well chosen? - is the plugin Sculptor specific or is it more a generic plugin? ~Karsten Am 21.07.2009 um 21:59 schrieb Pavel Tavoda: > <checksum-plugin.zip> ------------------------------------------------------------------------------ _______________________________________________ Fornax-developer mailing list Fornax-developer@... https://lists.sourceforge.net/lists/listinfo/fornax-developer |
|
|
Re: Checksum pluginGreat, thank you.
When I go through your check list I have no judgement for many topics: - Versioning should follow your standard - No idea, any suggestion? I will rewrite it, no problem. - Plugin is more generic. It can be used with any code generating tool. Again any suggestion where should I put it? However I'm pretty happy with fornax. Pavel On Tue, Jul 21, 2009 at 10:12 PM, Karsten Thoms<karsten.thoms@...> wrote: > Pavel, > > I deployed the plugin to the snapshot repository: > http://www.fornax-platform.org/archiva/repository/snapshots/org/fornax/cartridges/maven/checksum/fornax-cartridges-sculptor-maven-plugin-checksum/1.0-SNAPSHOT/ > > Please check > - is the version schema OK? Usually we use Major.Minor.Micro. > - are groupId and artifactId well chosen? > - is the plugin Sculptor specific or is it more a generic plugin? > > ~Karsten > > Am 21.07.2009 um 21:59 schrieb Pavel Tavoda: > >> <checksum-plugin.zip> > > > ------------------------------------------------------------------------------ > _______________________________________________ > Fornax-developer mailing list > Fornax-developer@... > https://lists.sourceforge.net/lists/listinfo/fornax-developer > ------------------------------------------------------------------------------ _______________________________________________ Fornax-developer mailing list Fornax-developer@... https://lists.sourceforge.net/lists/listinfo/fornax-developer |
|
|
Re: Checksum pluginHow about placing this plugin in the toolsupport category, like the oAW plugin.
So I suggest - groupId org.fornax.toolsupport - artifactId fornax-checksum-m2-plugin - version 1.0.0-SNAPSHOT You could place the code in SVN under /toolsupport/maven2/fornax-checksum-m2-plugin (don't be irritated that the oaw plugin is in directory fornax-toolsupport-oaw-m2-plugin, I think 'toolsupport' does not need part of the name) It would become a small component on its own. ~Karsten Am 22.07.2009 um 10:28 schrieb Pavel Tavoda:
------------------------------------------------------------------------------ _______________________________________________ Fornax-developer mailing list Fornax-developer@... https://lists.sourceforge.net/lists/listinfo/fornax-developer |
|
|
Re: Checksum pluginI agree with Karsten.
Two other minor things. Remove junit dependency in pom.xml (I can't see any need for it). Change to source and target version 1.5 in maven-compiler-plugin in pom.xml Well done! /Patrik
|
|
|
Re: Checksum pluginInitial import to :
https://fornax.svn.sourceforge.net/svnroot/fornax/trunk/toolsupport/maven2/fornax-checksum-m2-plugin/ Hope I did everything right, thanks for guidelines. I renamed plugin generated files checksum.txt and checksum-ignore.txt to files with "." at begining. They are hidden on Unix. I'm using this plugin on 2 projects for about week. Till now it's working fine. Should we put it to some artifact? Pavel On Fri, Jul 24, 2009 at 10:59 PM, Patrik Nordwall<patrik.nordwall@...> wrote: > > I agree with Karsten. > > Two other minor things. > Remove junit dependency in pom.xml (I can't see any need for it). > Change to source and target version 1.5 in maven-compiler-plugin in pom.xml > > Well done! > > /Patrik > > > > Karsten Thoms wrote: >> >> How about placing this plugin in the toolsupport category, like the >> oAW plugin. >> >> So I suggest >> - groupId org.fornax.toolsupport >> - artifactId fornax-checksum-m2-plugin >> - version 1.0.0-SNAPSHOT >> >> You could place the code in SVN under >> /toolsupport/maven2/fornax-checksum-m2-plugin >> (don't be irritated that the oaw plugin is in directory fornax- >> toolsupport-oaw-m2-plugin, I think 'toolsupport' does not need part of >> the name) >> >> It would become a small component on its own. >> >> ~Karsten >> >> > > -- > View this message in context: http://www.nabble.com/Checksum-plugin-tp24594799s17564p24651878.html > Sent from the Fornax-Platform mailing list archive at Nabble.com. > > > ------------------------------------------------------------------------------ > _______________________________________________ > Fornax-developer mailing list > Fornax-developer@... > https://lists.sourceforge.net/lists/listinfo/fornax-developer > ------------------------------------------------------------------------------ _______________________________________________ Fornax-developer mailing list Fornax-developer@... https://lists.sourceforge.net/lists/listinfo/fornax-developer |
|
|
Re: Checksum pluginGood, please add it to Sculptor samples:
- helloworld - library - DDDSample and archetypes: - fornax-cartridges-sculptor-archetype - fornax-cartridges-sculptor-archetype-standalone - fornax-cartridges-sculptor-archetype-jsf /Patrik
|
|
|
Re: Checksum pluginBefore I do this can you Karsten put following .zip to fornax maven repository?
TNX Pavel On Sat, Jul 25, 2009 at 10:34 PM, Patrik Nordwall<patrik.nordwall@...> wrote: > > Good, please add it to Sculptor samples: > - helloworld > - library > - DDDSample > > and archetypes: > - fornax-cartridges-sculptor-archetype > - fornax-cartridges-sculptor-archetype-standalone > - fornax-cartridges-sculptor-archetype-jsf > > /Patrik > > > PaloT wrote: >> >> Initial import to : >> https://fornax.svn.sourceforge.net/svnroot/fornax/trunk/toolsupport/maven2/fornax-checksum-m2-plugin/ >> >> Hope I did everything right, thanks for guidelines. >> >> I renamed plugin generated files checksum.txt and checksum-ignore.txt >> to files with "." at begining. They are hidden on Unix. I'm using this >> plugin on 2 projects for about week. Till now it's working fine. >> >> Should we put it to some artifact? >> >> Pavel >> >> On Fri, Jul 24, 2009 at 10:59 PM, Patrik >> Nordwall<patrik.nordwall@...> wrote: >>> >>> I agree with Karsten. >>> >>> Two other minor things. >>> Remove junit dependency in pom.xml (I can't see any need for it). >>> Change to source and target version 1.5 in maven-compiler-plugin in >>> pom.xml >>> >>> Well done! >>> >>> /Patrik >>> >>> >>> >>> Karsten Thoms wrote: >>>> >>>> How about placing this plugin in the toolsupport category, like the >>>> oAW plugin. >>>> >>>> So I suggest >>>> - groupId org.fornax.toolsupport >>>> - artifactId fornax-checksum-m2-plugin >>>> - version 1.0.0-SNAPSHOT >>>> >>>> You could place the code in SVN under >>>> /toolsupport/maven2/fornax-checksum-m2-plugin >>>> (don't be irritated that the oaw plugin is in directory fornax- >>>> toolsupport-oaw-m2-plugin, I think 'toolsupport' does not need part of >>>> the name) >>>> >>>> It would become a small component on its own. >>>> >>>> ~Karsten >>>> >>>> >>> >>> -- >>> View this message in context: >>> http://www.nabble.com/Checksum-plugin-tp24594799s17564p24651878.html >>> Sent from the Fornax-Platform mailing list archive at Nabble.com. >>> >>> >>> ------------------------------------------------------------------------------ >>> _______________________________________________ >>> Fornax-developer mailing list >>> Fornax-developer@... >>> https://lists.sourceforge.net/lists/listinfo/fornax-developer >>> >> >> ------------------------------------------------------------------------------ >> _______________________________________________ >> Fornax-developer mailing list >> Fornax-developer@... >> https://lists.sourceforge.net/lists/listinfo/fornax-developer >> >> > > -- > View this message in context: http://www.nabble.com/Checksum-plugin-tp24594799s17564p24661450.html > Sent from the Fornax-Platform mailing list archive at Nabble.com. > > > ------------------------------------------------------------------------------ > _______________________________________________ > Fornax-developer mailing list > Fornax-developer@... > https://lists.sourceforge.net/lists/listinfo/fornax-developer > ------------------------------------------------------------------------------ _______________________________________________ Fornax-developer mailing list Fornax-developer@... https://lists.sourceforge.net/lists/listinfo/fornax-developer |
|
|
Re: Checksum pluginNo, it is better that we deploy with maven. I have done that now.
I added fornax-parent to pom.xml /Patrik
|
|
|
Re: Checksum pluginSorry I have no idea about what are you speaking :-D. I want have
plugin available in repository before I put it to dependency. How should I deploy something to fornax maven repository? Pavel On Mon, Jul 27, 2009 at 10:08 PM, Patrik Nordwall<patrik.nordwall@...> wrote: > > No, it is better that we deploy with maven. I have done that now. > I added fornax-parent to pom.xml > > /Patrik > > > PaloT wrote: >> >> Before I do this can you Karsten put following .zip to fornax maven >> repository? >> >> TNX >> >> Pavel >> > > -- > View this message in context: http://www.nabble.com/Checksum-plugin-tp24594799s17564p24687391.html > Sent from the Fornax-Platform mailing list archive at Nabble.com. > > > ------------------------------------------------------------------------------ > _______________________________________________ > Fornax-developer mailing list > Fornax-developer@... > https://lists.sourceforge.net/lists/listinfo/fornax-developer > ------------------------------------------------------------------------------ _______________________________________________ Fornax-developer mailing list Fornax-developer@... https://lists.sourceforge.net/lists/listinfo/fornax-developer |
|
|
Re: Checksum pluginWe use maven deploy plugin to upload to fornax maven repository.
To do that I had to add fornax parent to pom.xml and then I executed mvn -P fornax clean deploy In other words, I have deployed it. I think there is some doc here: http://fornax.itemis.de/confluence/display/fornax/Platform+V3 /Patrik
|
|
|
Re: Checksum pluginYou will need an Archiva account to be able to deploy to the Fornax
Repository. Patrik has an account, but Pavel not yet. Since we are planning to replace Archiva by Nexus all users would need new accounts for that system anyway. Yesterday I spoke with Hanno Wendt, who is responsible to set up this new system. He had no time the last months, but there is light on the horizon. Hanno announced that he will work next week on this. So would be nice if you could wait until then with an account. ~Karsten > > We use maven http://maven.apache.org/plugins/maven-deploy-plugin/ > deploy > plugin to upload to fornax maven repository. > > To do that I had to add fornax parent to pom.xml and then I executed > mvn -P fornax clean deploy > > In other words, I have deployed it. > > I think there is some doc here: > http://fornax.itemis.de/confluence/display/fornax/Platform+V3 > > /Patrik > > > > > PaloT wrote: >> >> Sorry I have no idea about what are you speaking :-D. I want have >> plugin available in repository before I put it to dependency. How >> should I deploy something to fornax maven repository? >> >> Pavel >> >> >> >> On Mon, Jul 27, 2009 at 10:08 PM, Patrik >> Nordwall<patrik.nordwall@...> wrote: >>> >>> No, it is better that we deploy with maven. I have done that now. >>> I added fornax-parent to pom.xml >>> >>> /Patrik >>> >>> >>> PaloT wrote: >>>> >>>> Before I do this can you Karsten put following .zip to fornax maven >>>> repository? >>>> >>>> TNX >>>> >>>> Pavel >>>> >>> >>> -- >>> View this message in context: >>> http://www.nabble.com/Checksum-plugin-tp24594799s17564p24687391.html >>> Sent from the Fornax-Platform mailing list archive at Nabble.com. >>> >>> >>> ------------------------------------------------------------------------------ >>> _______________________________________________ >>> Fornax-developer mailing list >>> Fornax-developer@... >>> https://lists.sourceforge.net/lists/listinfo/fornax-developer >>> >> >> ------------------------------------------------------------------------------ >> _______________________________________________ >> Fornax-developer mailing list >> Fornax-developer@... >> https://lists.sourceforge.net/lists/listinfo/fornax-developer >> >> > > -- > View this message in context: http://www.nabble.com/Checksum-plugin-tp24594799s17564p24693881.html > Sent from the Fornax-Platform mailing list archive at Nabble.com. > > > ------------------------------------------------------------------------------ > 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 > _______________________________________________ > Fornax-developer mailing list > Fornax-developer@... > https://lists.sourceforge.net/lists/listinfo/fornax-developer ------------------------------------------------------------------------------ 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 _______________________________________________ Fornax-developer mailing list Fornax-developer@... https://lists.sourceforge.net/lists/listinfo/fornax-developer |
|
|
Re: Checksum pluginHello,
I added checkesum plugin to following projects. Archetypes need rebuild and upload to maven repository (I guess). I have no account, then please if you find time update them. fornax-cartridges-sculptor-archetype fornax-cartridges-sculptor-archetype-jsf fornax-cartridges-sculptor-archetype-standalone DDDSample fornax-cartridges-sculptor-examples-library fornax-cartridges-sculptor-examples-library-jsf fornax-cartridges-sculptor-examples-library-web sculptor-helloworld sculptor-helloworld-web sculptor.helloworld.richclient TNX Pavel On Tue, Jul 28, 2009 at 1:06 PM, Karsten Thoms<karsten.thoms@...> wrote: > You will need an Archiva account to be able to deploy to the Fornax > Repository. Patrik has an account, but Pavel not yet. > > Since we are planning to replace Archiva by Nexus all users would need > new accounts for that system anyway. Yesterday I spoke with Hanno > Wendt, who is responsible to set up this new system. He had no time > the last months, but there is light on the horizon. Hanno announced > that he will work next week on this. > > So would be nice if you could wait until then with an account. > > ~Karsten > > >> >> We use maven http://maven.apache.org/plugins/maven-deploy-plugin/ >> deploy >> plugin to upload to fornax maven repository. >> >> To do that I had to add fornax parent to pom.xml and then I executed >> mvn -P fornax clean deploy >> >> In other words, I have deployed it. >> >> I think there is some doc here: >> http://fornax.itemis.de/confluence/display/fornax/Platform+V3 >> >> /Patrik >> >> >> >> >> PaloT wrote: >>> >>> Sorry I have no idea about what are you speaking :-D. I want have >>> plugin available in repository before I put it to dependency. How >>> should I deploy something to fornax maven repository? >>> >>> Pavel >>> >>> >>> >>> On Mon, Jul 27, 2009 at 10:08 PM, Patrik >>> Nordwall<patrik.nordwall@...> wrote: >>>> >>>> No, it is better that we deploy with maven. I have done that now. >>>> I added fornax-parent to pom.xml >>>> >>>> /Patrik >>>> >>>> >>>> PaloT wrote: >>>>> >>>>> Before I do this can you Karsten put following .zip to fornax maven >>>>> repository? >>>>> >>>>> TNX >>>>> >>>>> Pavel >>>>> >>>> >>>> -- >>>> View this message in context: >>>> http://www.nabble.com/Checksum-plugin-tp24594799s17564p24687391.html >>>> Sent from the Fornax-Platform mailing list archive at Nabble.com. >>>> >>>> >>>> ------------------------------------------------------------------------------ >>>> _______________________________________________ >>>> Fornax-developer mailing list >>>> Fornax-developer@... >>>> https://lists.sourceforge.net/lists/listinfo/fornax-developer >>>> >>> >>> ------------------------------------------------------------------------------ >>> _______________________________________________ >>> Fornax-developer mailing list >>> Fornax-developer@... >>> https://lists.sourceforge.net/lists/listinfo/fornax-developer >>> >>> >> >> -- >> View this message in context: http://www.nabble.com/Checksum-plugin-tp24594799s17564p24693881.html >> Sent from the Fornax-Platform mailing list archive at Nabble.com. >> >> >> ------------------------------------------------------------------------------ >> 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 >> _______________________________________________ >> Fornax-developer mailing list >> Fornax-developer@... >> https://lists.sourceforge.net/lists/listinfo/fornax-developer > > > ------------------------------------------------------------------------------ > 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 > _______________________________________________ > Fornax-developer mailing list > Fornax-developer@... > https://lists.sourceforge.net/lists/listinfo/fornax-developer > ------------------------------------------------------------------------------ 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 _______________________________________________ Fornax-developer mailing list Fornax-developer@... https://lists.sourceforge.net/lists/listinfo/fornax-developer |
|
|
Re: Checksum pluginI have deployed the archetypes. /Patrik
|
| Free embeddable forum powered by Nabble | Forum Help |