Re: [project-voldemort] Digest for project-voldemort@googlegroups.com - 1 Message in 1 Topic

15 views
Skip to first unread message

Otis Gospodnetic

unread,
Sep 14, 2012, 4:06:02 PM9/14/12
to project-...@googlegroups.com
+3 for Maven support using whichever approach makes the most sense to
V developers/contributors. I don't use V currently, but I know I
wanted this in the past.

This is good opportunity to involve community!

Otis
--
Search Analytics - http://sematext.com/search-analytics/index.html
Performance Monitoring - http://sematext.com/spm/index.html


On Fri, Sep 14, 2012 at 3:49 AM, <project-...@googlegroups.com> wrote:
> Today's Topic Summary
>
> Group: http://groups.google.com/group/project-voldemort/topics
>
> Maven Support [1 Update]
>
> Maven Support
>
> ctasada <cta...@gmail.com> Sep 13 01:35PM -0700
>
> Hi guys,
>
> I really believe that Maven support is a MUST, at least to allow the client
> to be integrated in other applications.
>
> Right now there are 3 pull requests to implement it:
>
> - Pull 56: Prepare build to upload artifacts to maven central
> This solution is the easier to implement. Even when is not really making
> the project Maven compliant, is allowing to make the artifacts available
> - Pull 57: Fun Projects: Maven support
> Implemented via Ivy. I don't known how complete is this one, since I
> have never worked with Ivy.
> - Pull 71: Project Voldemort Maven Support
> Is trying to add Maven support, but is missing some features. The
> contrib is not build, I could not make the tests to be executed properly,
> ....
>
> Sadly none of them is really solving the issue.
>
> I think I proper plan would be to:
> 1.- Recheck Pull 56 and if works properly accept it, so the artifact with
> the client code is available
> 2.- Modify the code structure to adapt it to the maven layout
>
> Step 1 is easy, step 2 requires quite a lot of work, but before starting
> the needed changes I wanted to check with the community if this plan is
> acceptable.
>
> Looking forward for your comments.
>
> Carlos.
>
>
>
> You received this message because you are subscribed to the Google Group
> project-voldemort.
> You can post via email.
> To unsubscribe from this group, send an empty message.
> For more options, visit this group.
>
> --
>
>

gil

unread,
Sep 14, 2012, 8:03:10 PM9/14/12
to project-...@googlegroups.com
hi
should be use, without change source structure
for example
<build>
<sourceDirectory>src/java</sourceDirectory>
<testSourceDirectory>src/test</testSourceDirectory>

<resources>
<resource>
<directory>${basedir}/resources</directory>
</resource>
<resource>
<directory>${basedir}/resources-1</directory>
</resource>
</resources>

<testResources>
<testResource>
<directory>${basedir}/src/test/config</directory>
<targetPath>config</targetPath>
</testResource>
<testResource>
<directory>${basedir}/src/test</directory>
<includes>
<include>*.properties</include>
</includes>
</testResource>
</testResources>

<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<forkMode>always</forkMode>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>

</build>
puntogil.vcf
Reply all
Reply to author
Forward
0 new messages