You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by Martijn Dashorst <ma...@gmail.com> on 2005/12/19 00:47:03 UTC

Clover and licensed jar file

How can I use a licensed clover.jar instead of the 30-day trial jar file?
Note I have a licensed clover.jar already :-)

Martijn


--
Living a wicket life...

Martijn Dashorst - http://www.jroller.com/page/dashorst

Wicket 1.1 is out: http://wicket.sourceforge.net/wicket-1.1

Re: Clover and licensed jar file

Posted by Martin van den Bemt <ml...@mvdb.net>.
Or add this to your settings.xml in your homedirectory/.m2

  <profiles>
    <profile>
      <id>cloverlicense</id>
      <properties>
        <clover.license.path>e:/adirectory//clover/clover.license</clover.license.path>
      </properties>
    </profile>
  </profiles>
  <activeProfiles>
    <activeProfile>cloverlicense</activeProfile>
  </activeProfiles>

and referencing this in the pom.xml like
<configuration>
  <licenseFile>${clover.license.path}</licenseFile>
</configuration>

This way everybody can pick it's favourite spot to store the license file..

Will add this to the docs tonight (at least in JIRA)

Mvgr,
Martin


Vincent Massol wrote:
> 
>>-----Original Message-----
>>From: Brett Porter [mailto:brett.porter@gmail.com]
>>Sent: mercredi 21 décembre 2005 12:18
>>To: Maven Users List
>>Subject: Re: Clover and licensed jar file
>>
>>Adding a <dependency> element to the <plugin> doesn't work?
> 
> 
> Oops.. sorry I'm wrong. I've already added support for a license :-)
> 
> There's a licenseFile config element:
> 
> <configuration>
>   <licenseFile>path/to/your/license/file</licenseFile>
> </configuration>
> 
> Thanks
> -Vincent
> 

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


RE: Clover and licensed jar file

Posted by Vincent Massol <vm...@pivolis.com>.

> -----Original Message-----
> From: Brett Porter [mailto:brett.porter@gmail.com]
> Sent: mercredi 21 décembre 2005 12:18
> To: Maven Users List
> Subject: Re: Clover and licensed jar file
> 
> Adding a <dependency> element to the <plugin> doesn't work?

Oops.. sorry I'm wrong. I've already added support for a license :-)

There's a licenseFile config element:

<configuration>
  <licenseFile>path/to/your/license/file</licenseFile>
</configuration>

Thanks
-Vincent

> On 12/21/05, Vincent Massol <vm...@pivolis.com> wrote:
> > Hi Martijn,
> >
> > > -----Original Message-----
> > > From: Martijn Dashorst [mailto:martijn.dashorst@gmail.com]
> > > Sent: lundi 19 décembre 2005 00:47
> > > To: Maven Users List
> > > Subject: Re: Clover and licensed jar file
> > >
> > > BTW this regards maven 2.
> > >
> > > Martijn
> > >
> > >
> > > On 12/19/05, Martijn Dashorst <ma...@gmail.com> wrote:
> > > >
> > > > How can I use a licensed clover.jar instead of the 30-day trial jar
> > > file?
> > > > Note I have a licensed clover.jar already :-)
> >
> > No you can't right now. Could you open a JIRA for this?
> >
> > Thanks
> > -Vincent
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > For additional commands, e-mail: users-help@maven.apache.org
> >
> >
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: Clover and licensed jar file

Posted by Brett Porter <br...@gmail.com>.
Adding a <dependency> element to the <plugin> doesn't work?

- Brett

On 12/21/05, Vincent Massol <vm...@pivolis.com> wrote:
> Hi Martijn,
>
> > -----Original Message-----
> > From: Martijn Dashorst [mailto:martijn.dashorst@gmail.com]
> > Sent: lundi 19 décembre 2005 00:47
> > To: Maven Users List
> > Subject: Re: Clover and licensed jar file
> >
> > BTW this regards maven 2.
> >
> > Martijn
> >
> >
> > On 12/19/05, Martijn Dashorst <ma...@gmail.com> wrote:
> > >
> > > How can I use a licensed clover.jar instead of the 30-day trial jar
> > file?
> > > Note I have a licensed clover.jar already :-)
>
> No you can't right now. Could you open a JIRA for this?
>
> Thanks
> -Vincent
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


RE: Clover and licensed jar file

Posted by Vincent Massol <vm...@pivolis.com>.
Hi Martijn,

> -----Original Message-----
> From: Martijn Dashorst [mailto:martijn.dashorst@gmail.com]
> Sent: lundi 19 décembre 2005 00:47
> To: Maven Users List
> Subject: Re: Clover and licensed jar file
> 
> BTW this regards maven 2.
> 
> Martijn
> 
> 
> On 12/19/05, Martijn Dashorst <ma...@gmail.com> wrote:
> >
> > How can I use a licensed clover.jar instead of the 30-day trial jar
> file?
> > Note I have a licensed clover.jar already :-)

No you can't right now. Could you open a JIRA for this?

Thanks
-Vincent


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: Clover and licensed jar file

Posted by Martijn Dashorst <ma...@gmail.com>.
BTW this regards maven 2.

Martijn


On 12/19/05, Martijn Dashorst <ma...@gmail.com> wrote:
>
> How can I use a licensed clover.jar instead of the 30-day trial jar file?
> Note I have a licensed clover.jar already :-)
>
> Martijn
>
>
> --
> Living a wicket life...
>
> Martijn Dashorst - http://www.jroller.com/page/dashorst
>
> Wicket 1.1 is out: http://wicket.sourceforge.net/wicket-1.1




--
Living a wicket life...

Martijn Dashorst - http://www.jroller.com/page/dashorst

Wicket 1.1 is out: http://wicket.sourceforge.net/wicket-1.1