List Info

Thread: cacheloader migration examples




cacheloader migration examples
user name
2007-09-04 07:09:50
Hi,

I think I have fixed the issues in the cacheloader-migration
project. I 
just need to commit them. Before doing that, some
questions:

1.- Is there any way to create the ZIP distribution that we
created when 
JBossCache 2.0.GA was released? The build scripts I created
to run the 
cache loader migration examples relied on the distro ZIP
structure to 
run, so I'd like to build that ZIP to test the examples.

2.- Alternatively, and I guess this is where we're trying to
get to, 
should I be converting this build scripts to Maven scripts
and so they 
should run independent to the location of libraries...etc?
This leads me 
to think that I need to be building a snapshot of
cacheloader-migration 
and uploading it (as Manik suggested couple of weeks back).

Jason, IIRC, PojoCache had some examples relying on build
scripts, what 
are you doing about them?

Cheers,
-- 
Galder Zamarreņo
Sr. Software Maintenance Engineer
JBoss, a division of Red Hat
_______________________________________________
jbosscache-dev mailing list
jbosscache-devlists.jboss.org
https://lists.jboss.org/mailman/listinfo/jbosscache-dev

Re: cacheloader migration examples
user name
2007-09-17 08:32:59
On 4 Sep 2007, at 13:09, Galder Zamarreno wrote:

> Hi,
>
> I think I have fixed the issues in the
cacheloader-migration  
> project. I just need to commit them. Before doing that,
some  
> questions:
>
> 1.- Is there any way to create the ZIP distribution
that we created  
> when JBossCache 2.0.GA was released? The build scripts
I created to  
> run the cache loader migration examples relied on the
distro ZIP  
> structure to run, so I'd like to build that ZIP to test
the examples.

ZIPs are created using the assembly plugin in maven.  Have a
look at  
http://anonsvn.jboss.org/repos/jbosscache/core/tru
nk/assembly/ for  
the different assembly descriptors for the different ZIP
files we  
distribute with JBoss Cache.

These are executed by the assembly plugin in JBoss Cache
core's pom.xml:

  <build>
	...
     <plugins>
	...

       <plugin>
        
<artifactId>maven-assembly-plugin</artifactId>
         <version>2.2-beta-1</version>
         <executions>
           <execution>
             <id>assemble</id>
             <phase>install</phase>
             <goals>
               <goal>attached</goal>
             </goals>
             <configuration>
               <descriptors>
                
<descriptor>assembly/bin.xml</descriptor>
                
<descriptor>assembly/doc.xml</descriptor>
                
<descriptor>assembly/all.xml</descriptor>
               </descriptors>
              
<finalName>$-$<
;/ 
finalName>
              
<outputDirectory>target/distribution</outputDirecto
ry>
              
<workDirectory>target/assembly/work</workDirectory&
gt;
             </configuration>
           </execution>
         </executions>
       </plugin>

	...
	</plugins>
	...
	</build>


>
> 2.- Alternatively, and I guess this is where we're
trying to get  
> to, should I be converting this build scripts to Maven
scripts and  
> so they should run independent to the location of
libraries...etc?  
> This leads me to think that I need to be building a
snapshot of  
> cacheloader-migration and uploading it (as Manik
suggested couple  
> of weeks back).

Yes, you probably want this as well, but a ZIP distribution
can be  
made available as well, as described above.


>
> Jason, IIRC, PojoCache had some examples relying on
build scripts,  
> what are you doing about them?
>
> Cheers,
> -- 
> Galder Zamarreņo
> Sr. Software Maintenance Engineer
> JBoss, a division of Red Hat
> _______________________________________________
> jbosscache-dev mailing list
> jbosscache-devlists.jboss.org
> https://lists.jboss.org/mailman/listinfo/jbosscache-dev

--
Manik Surtani

Lead, JBoss Cache
JBoss, a division of Red Hat




_______________________________________________
jbosscache-dev mailing list
jbosscache-devlists.jboss.org
https://lists.jboss.org/mailman/listinfo/jbosscache-dev

Re: cacheloader migration examples
user name
2007-09-24 15:58:26
Hi,

Finally got around to fixing the examples in cache loader
migration and 
they're now working like a treat . Thanks to
Jason for helping me with 
a minor maven issue.

I'll now upload a snapshot of cache loader migration jar 2.1
to the 
maven repo. Do I need to upload a zip file distro too?

Cheers,

Manik Surtani wrote:
> 
> On 4 Sep 2007, at 13:09, Galder Zamarreno wrote:
> 
>> Hi,
>>
>> I think I have fixed the issues in the
cacheloader-migration project. 
>> I just need to commit them. Before doing that, some
questions:
>>
>> 1.- Is there any way to create the ZIP distribution
that we created 
>> when JBossCache 2.0.GA was released? The build
scripts I created to 
>> run the cache loader migration examples relied on
the distro ZIP 
>> structure to run, so I'd like to build that ZIP to
test the examples.
> 
> ZIPs are created using the assembly plugin in maven. 
Have a look at 
> http://anonsvn.jboss.org/repos/jbosscache/core/tru
nk/assembly/ for the 
> different assembly descriptors for the different ZIP
files we distribute 
> with JBoss Cache.
> 
> These are executed by the assembly plugin in JBoss
Cache core's pom.xml:
> 
>  <build>
>     ...
>     <plugins>
>     ...
> 
>       <plugin>
>        
<artifactId>maven-assembly-plugin</artifactId>
>         <version>2.2-beta-1</version>
>         <executions>
>           <execution>
>             <id>assemble</id>
>             <phase>install</phase>
>             <goals>
>               <goal>attached</goal>
>             </goals>
>             <configuration>
>               <descriptors>
>                
<descriptor>assembly/bin.xml</descriptor>
>                
<descriptor>assembly/doc.xml</descriptor>
>                
<descriptor>assembly/all.xml</descriptor>
>               </descriptors>
>               
>
<finalName>$-$<
;/finalName>
>              
<outputDirectory>target/distribution</outputDirecto
ry>
>              
<workDirectory>target/assembly/work</workDirectory&
gt;
>             </configuration>
>           </execution>
>         </executions>
>       </plugin>
> 
>     ...
>     </plugins>
>     ...
>     </build>
> 
> 
>>
>> 2.- Alternatively, and I guess this is where we're
trying to get to, 
>> should I be converting this build scripts to Maven
scripts and so they 
>> should run independent to the location of
libraries...etc? This leads 
>> me to think that I need to be building a snapshot
of 
>> cacheloader-migration and uploading it (as Manik
suggested couple of 
>> weeks back).
> 
> Yes, you probably want this as well, but a ZIP
distribution can be made 
> available as well, as described above.
> 
> 
>>
>> Jason, IIRC, PojoCache had some examples relying on
build scripts, 
>> what are you doing about them?
>>
>> Cheers,
>> -- 
>> Galder Zamarreņo
>> Sr. Software Maintenance Engineer
>> JBoss, a division of Red Hat
>> _______________________________________________
>> jbosscache-dev mailing list
>> jbosscache-devlists.jboss.org
>> https://lists.jboss.org/mailman/listinfo/jbosscache-dev
> 
> -- 
> Manik Surtani
> 
> Lead, JBoss Cache
> JBoss, a division of Red Hat
> 
> 
> 

-- 
Galder Zamarreņo
Sr. Software Maintenance Engineer
JBoss, a division of Red Hat
_______________________________________________
jbosscache-dev mailing list
jbosscache-devlists.jboss.org
https://lists.jboss.org/mailman/listinfo/jbosscache-dev

[1-3]

about | contact  Other archives ( Real Estate discussion Medical topics )