default skin - where do i get it?

View: New views
7 Messages — Rating Filter:   Alert me  

default skin - where do i get it?

by David Sag :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


Hi,

I had to rebuild maven from the source files in svn as the cobertura plugin is now demanding version 2.0.3 to run.

but now the site plugin is complaining that it can't find the skin org.apache.maven.skins:maven-default-skin:jar:RELEASE

so where do I find that - please don't say I have to build it from source as I am at work now where I can't access your svn repo.

the mvn output says to try downloading it from the project website - but does not mention where that site is.

Kind regards,
Dave Sag




 

Re: default skin - where do i get it?

by Brett Porter :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

You'll need to use this repository until the site skins and site plugin are
released:

<repository>
 <url>http://cvs.apache.org/maven-snapshot-repository/</url>
</repository>

Or, you can lock your site plugin to version 2.0-beta-4 (the current
release).

- Brett

On 2/24/06, David Sag <dsag@...> wrote:

>
>
> Hi,
>
> I had to rebuild maven from the source files in svn as the cobertura
> plugin is now demanding version 2.0.3 to run.
>
> but now the site plugin is complaining that it can't find the skin
> org.apache.maven.skins:maven-default-skin:jar:RELEASE
>
> so where do I find that - please don't say I have to build it from source
> as I am at work now where I can't access your svn repo.
>
> the mvn output says to try downloading it from the project website - but
> does not mention where that site is.
>
> Kind regards,
> Dave Sag
>
>
>
>
>

Re: default skin - where do i get it?

by David Sag :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


Hi Brett

I added that to the pluginRepositories section of my settings.xml (it was already in the repositories section) and while i can see it trying to look for stuff in there, i still get the same problem.

fixing the site plugin to 2.0-beta-4 fixed my problem for now though

Kind regards,
Dave Sag




 


"Brett Porter" <brett.porter@...> wrote on 24-02-2006 13:38:16:

> You'll need to use this repository until the site skins and site plugin are
> released:
>
> <repository>
>  <url>http://cvs.apache.org/maven-snapshot-repository/</url>
> </repository>
>
> Or, you can lock your site plugin to version 2.0-beta-4 (the current
> release).
>
> - Brett
>
> On 2/24/06, David Sag <dsag@...> wrote:
> >
> >
> > Hi,
> >
> > I had to rebuild maven from the source files in svn as the cobertura
> > plugin is now demanding version 2.0.3 to run.
> >
> > but now the site plugin is complaining that it can't find the skin
> > org.apache.maven.skins:maven-default-skin:jar:RELEASE
> >
> > so where do I find that - please don't say I have to build it from source
> > as I am at work now where I can't access your svn repo.
> >
> > the mvn output says to try downloading it from the project website - but
> > does not mention where that site is.
> >
> > Kind regards,
> > Dave Sag
> >
> >
> >
> >
> >

RE : default skin - where do i get it?

by LAMY Olivier :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

AFAIK, skin are resolved as artifacts but not as plugin [1] see method
getSkinArtifactFile

But to not depends on this create your own skin ;-) (very nice feature)

- Olivier

[1]
http://svn.apache.org/viewcvs.cgi/maven/plugins/trunk/maven-site-plugin/
src/main/java/org/apache/maven/plugins/site/SiteMojo.java?rev=370214&vie
w=markup
-----Message d'origine-----
De : David Sag [mailto:dsag@...]
Envoyé : vendredi 24 février 2006 14:51
À : Maven Users List
Objet : Re: default skin - where do i get it?



Hi Brett

I added that to the pluginRepositories section of my settings.xml (it
was already in the repositories section) and while i can see it trying
to look for stuff in there, i still get the same problem.

fixing the site plugin to 2.0-beta-4 fixed my problem for now though

Kind regards,
Dave Sag




 

"Brett Porter" <brett.porter@...> wrote on 24-02-2006 13:38:16:

> You'll need to use this repository until the site skins and site
plugin are

> released:
>
> <repository>
>  <url>http://cvs.apache.org/maven-snapshot-repository/</url>
> </repository>
>
> Or, you can lock your site plugin to version 2.0-beta-4 (the current
> release).
>
> - Brett
>
> On 2/24/06, David Sag <dsag@...> wrote:
> >
> >
> > Hi,
> >
> > I had to rebuild maven from the source files in svn as the cobertura
> > plugin is now demanding version 2.0.3 to run.
> >
> > but now the site plugin is complaining that it can't find the skin
> > org.apache.maven.skins:maven-default-skin:jar:RELEASE
> >
> > so where do I find that - please don't say I have to build it from
source
> > as I am at work now where I can't access your svn repo.
> >
> > the mvn output says to try downloading it from the project website -
but
> > does not mention where that site is.
> >
> > Kind regards,
> > Dave Sag
> >
> >
> >
> >
> >



This e-mail, any attachments and the information contained therein ("this message") are confidential and intended solely for the use of the addressee(s). If you have received this message in error please send it back to the sender and delete it. Unauthorized publication, use, dissemination or disclosure of this message, either in whole or in part is strictly prohibited.
--------------------------------------------------------------------------------------------------------------
Ce message électronique et tous les fichiers joints ainsi que  les informations contenues dans ce message ( ci après "le message" ), sont confidentiels et destinés exclusivement à l'usage de la  personne à laquelle ils sont adressés. Si vous avez reçu ce message par erreur, merci  de le renvoyer à son émetteur et de le détruire. Toutes diffusion, publication, totale ou partielle ou divulgation sous quelque forme que se soit non expressément autorisées de ce message, sont interdites.
-------------------------------------------------------------------------------------------------------------


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


RE : default skin - where do i get it?

by David Sag :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


yes that's what I thought and indeed already had that site configured in my normal repositories config.  but as that didn't work i tried adding it as a plugin too - but that didn't work either.  specifying site beta-4 fixed the problem for now however.

making my own skin is a good plan and we'll eventually do this - but for now i have to worry each morning that what worked the day before will break tomorrow and have precious little time to piss about making skins.

i am giving another presentation internally here next thursday and for all i know there'll be a new maven 2.0.3 out with a fixed cobertura.  my problem is that i need the snapshots to demo cobertura, but that makes my whole build rather fragile.  is there some way of locking down what i currently have that works and not allowing any more recent snapshots until after my presentation; short of building my own repository and forcing my dns lookup to fail on ibiblio and other external repositories?

Kind regards,
Dave Sag




 


"Olivier Lamy" <olivier.lamy@...> wrote on 24-02-2006 15:09:38:

> AFAIK, skin are resolved as artifacts but not as plugin [1] see method
> getSkinArtifactFile
>
> But to not depends on this create your own skin ;-) (very nice feature)
>
> - Olivier
>
> [1]
> http://svn.apache.org/viewcvs.cgi/maven/plugins/trunk/maven-site-plugin/
> src/main/java/org/apache/maven/plugins/site/SiteMojo.java?rev=370214&vie
> w=markup
> -----Message d'origine-----
> De : David Sag [mailto:dsag@...]
> Envoyé : vendredi 24 février 2006 14:51
> À : Maven Users List
> Objet : Re: default skin - where do i get it?
>
>
>
> Hi Brett
>
> I added that to the pluginRepositories section of my settings.xml (it
> was already in the repositories section) and while i can see it trying
> to look for stuff in there, i still get the same problem.
>
> fixing the site plugin to 2.0-beta-4 fixed my problem for now though
>
> Kind regards,
> Dave Sag
>
>
>
>
>  
>
> "Brett Porter" <brett.porter@...> wrote on 24-02-2006 13:38:16:
>
> > You'll need to use this repository until the site skins and site
> plugin are
> > released:
> >
> > <repository>
> >  <url>http://cvs.apache.org/maven-snapshot-repository/</url>
> > </repository>
> >
> > Or, you can lock your site plugin to version 2.0-beta-4 (the current
> > release).
> >
> > - Brett
> >
> > On 2/24/06, David Sag <dsag@...> wrote:
> > >
> > >
> > > Hi,
> > >
> > > I had to rebuild maven from the source files in svn as the cobertura
> > > plugin is now demanding version 2.0.3 to run.
> > >
> > > but now the site plugin is complaining that it can't find the skin
> > > org.apache.maven.skins:maven-default-skin:jar:RELEASE
> > >
> > > so where do I find that - please don't say I have to build it from
> source
> > > as I am at work now where I can't access your svn repo.
> > >
> > > the mvn output says to try downloading it from the project website -
> but
> > > does not mention where that site is.
> > >
> > > Kind regards,
> > > Dave Sag
> > >
> > >
> > >
> > >
> > >
>
>
>
> This e-mail, any attachments and the information contained therein
> ("this message") are confidential and intended solely for the use of
> the addressee(s). If you have received this message in error please
> send it back to the sender and delete it. Unauthorized publication,
> use, dissemination or disclosure of this message, either in whole or
> in part is strictly prohibited.
> --------------------------------------------------------------------------------------------------------------
> Ce message électronique et tous les fichiers joints ainsi que  les
> informations contenues dans ce message ( ci après "le message" ),
> sont confidentiels et destinés exclusivement à l'usage de la  
> personne à laquelle ils sont adressés. Si vous avez reçu ce message
> par erreur, merci  de le renvoyer à son émetteur et de le détruire.
> Toutes diffusion, publication, totale ou partielle ou divulgation
> sous quelque forme que se soit non expressément autorisées de ce
> message, sont interdites.
> -------------------------------------------------------------------------------------------------------------
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@...
> For additional commands, e-mail: users-help@...
>

Re: RE : default skin - where do i get it?

by Wayne Fay :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

mvn -o to work offline...

--wf


On 2/24/06, David Sag <dsag@...> wrote:

>
>
> yes that's what I thought and indeed already had that site configured in
> my normal repositories config.  but as that didn't work i tried adding it as
> a plugin too - but that didn't work either.  specifying site beta-4 fixed
> the problem for now however.
>
> making my own skin is a good plan and we'll eventually do this - but for
> now i have to worry each morning that what worked the day before will break
> tomorrow and have precious little time to piss about making skins.
>
> i am giving another presentation internally here next thursday and for all
> i know there'll be a new maven 2.0.3 out with a fixed cobertura.  my
> problem is that i need the snapshots to demo cobertura, but that makes my
> whole build rather fragile.  is there some way of locking down what i
> currently have that works and not allowing any more recent snapshots until
> after my presentation; short of building my own repository and forcing my
> dns lookup to fail on ibiblio and other external repositories?
>
> Kind regards,
> Dave Sag
>
>
>
>
>
>
> "Olivier Lamy" <olivier.lamy@...> wrote on 24-02-2006 15:09:38:
>
> > AFAIK, skin are resolved as artifacts but not as plugin [1] see method
> > getSkinArtifactFile
> >
> > But to not depends on this create your own skin ;-) (very nice feature)
> >
> > - Olivier
> >
> > [1]
> > http://svn.apache.org/viewcvs.cgi/maven/plugins/trunk/maven-site-plugin/
> > src/main/java/org/apache/maven/plugins/site/SiteMojo.java?rev=370214&vie
> > w=markup
> > -----Message d'origine-----
> > De : David Sag [mailto:dsag@...]
> > Envoyé : vendredi 24 février 2006 14:51
> > À : Maven Users List
> > Objet : Re: default skin - where do i get it?
> >
> >
> >
> > Hi Brett
> >
> > I added that to the pluginRepositories section of my settings.xml (it
> > was already in the repositories section) and while i can see it trying
> > to look for stuff in there, i still get the same problem.
> >
> > fixing the site plugin to 2.0-beta-4 fixed my problem for now though
> >
> > Kind regards,
> > Dave Sag
> >
> >
> >
> >
> >
> >
> > "Brett Porter" <brett.porter@...> wrote on 24-02-2006 13:38:16:
> >
> > > You'll need to use this repository until the site skins and site
> > plugin are
> > > released:
> > >
> > > <repository>
> > >  <url>http://cvs.apache.org/maven-snapshot-repository/</url>
> > > </repository>
> > >
> > > Or, you can lock your site plugin to version 2.0-beta-4 (the current
> > > release).
> > >
> > > - Brett
> > >
> > > On 2/24/06, David Sag <dsag@...> wrote:
> > > >
> > > >
> > > > Hi,
> > > >
> > > > I had to rebuild maven from the source files in svn as the cobertura
> > > > plugin is now demanding version 2.0.3 to run.
> > > >
> > > > but now the site plugin is complaining that it can't find the skin
> > > > org.apache.maven.skins:maven-default-skin:jar:RELEASE
> > > >
> > > > so where do I find that - please don't say I have to build it from
> > source
> > > > as I am at work now where I can't access your svn repo.
> > > >
> > > > the mvn output says to try downloading it from the project website -
> > but
> > > > does not mention where that site is.
> > > >
> > > > Kind regards,
> > > > Dave Sag
> > > >
> > > >
> > > >
> > > >
> > > >
> >
> >
> >
> > This e-mail, any attachments and the information contained therein
> > ("this message") are confidential and intended solely for the use of
> > the addressee(s). If you have received this message in error please
> > send it back to the sender and delete it. Unauthorized publication,
> > use, dissemination or disclosure of this message, either in whole or
> > in part is strictly prohibited.
> >
> --------------------------------------------------------------------------------------------------------------
> > Ce message électronique et tous les fichiers joints ainsi que  les
> > informations contenues dans ce message ( ci après "le message" ),
> > sont confidentiels et destinés exclusivement à l'usage de la
> > personne à laquelle ils sont adressés. Si vous avez reçu ce message
> > par erreur, merci  de le renvoyer à son émetteur et de le détruire.
> > Toutes diffusion, publication, totale ou partielle ou divulgation
> > sous quelque forme que se soit non expressément autorisées de ce
> > message, sont interdites.
> >
> -------------------------------------------------------------------------------------------------------------
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@...
> > For additional commands, e-mail: users-help@...
> >
>

Re: RE : default skin - where do i get it?

by Brett Porter :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Set the version to the timestamp-build number you are using is more reliable.

- Brett

On 2/25/06, Wayne Fay <waynefay@...> wrote:

> mvn -o to work offline...
>
> --wf
>
>
> On 2/24/06, David Sag <dsag@...> wrote:
> >
> >
> > yes that's what I thought and indeed already had that site configured in
> > my normal repositories config.  but as that didn't work i tried adding it as
> > a plugin too - but that didn't work either.  specifying site beta-4 fixed
> > the problem for now however.
> >
> > making my own skin is a good plan and we'll eventually do this - but for
> > now i have to worry each morning that what worked the day before will break
> > tomorrow and have precious little time to piss about making skins.
> >
> > i am giving another presentation internally here next thursday and for all
> > i know there'll be a new maven 2.0.3 out with a fixed cobertura.  my
> > problem is that i need the snapshots to demo cobertura, but that makes my
> > whole build rather fragile.  is there some way of locking down what i
> > currently have that works and not allowing any more recent snapshots until
> > after my presentation; short of building my own repository and forcing my
> > dns lookup to fail on ibiblio and other external repositories?
> >
> > Kind regards,
> > Dave Sag
> >
> >
> >
> >
> >
> >
> > "Olivier Lamy" <olivier.lamy@...> wrote on 24-02-2006 15:09:38:
> >
> > > AFAIK, skin are resolved as artifacts but not as plugin [1] see method
> > > getSkinArtifactFile
> > >
> > > But to not depends on this create your own skin ;-) (very nice feature)
> > >
> > > - Olivier
> > >
> > > [1]
> > > http://svn.apache.org/viewcvs.cgi/maven/plugins/trunk/maven-site-plugin/
> > > src/main/java/org/apache/maven/plugins/site/SiteMojo.java?rev=370214&vie
> > > w=markup
> > > -----Message d'origine-----
> > > De : David Sag [mailto:dsag@...]
> > > Envoyé : vendredi 24 février 2006 14:51
> > > À : Maven Users List
> > > Objet : Re: default skin - where do i get it?
> > >
> > >
> > >
> > > Hi Brett
> > >
> > > I added that to the pluginRepositories section of my settings.xml (it
> > > was already in the repositories section) and while i can see it trying
> > > to look for stuff in there, i still get the same problem.
> > >
> > > fixing the site plugin to 2.0-beta-4 fixed my problem for now though
> > >
> > > Kind regards,
> > > Dave Sag
> > >
> > >
> > >
> > >
> > >
> > >
> > > "Brett Porter" <brett.porter@...> wrote on 24-02-2006 13:38:16:
> > >
> > > > You'll need to use this repository until the site skins and site
> > > plugin are
> > > > released:
> > > >
> > > > <repository>
> > > >  <url>http://cvs.apache.org/maven-snapshot-repository/</url>
> > > > </repository>
> > > >
> > > > Or, you can lock your site plugin to version 2.0-beta-4 (the current
> > > > release).
> > > >
> > > > - Brett
> > > >
> > > > On 2/24/06, David Sag <dsag@...> wrote:
> > > > >
> > > > >
> > > > > Hi,
> > > > >
> > > > > I had to rebuild maven from the source files in svn as the cobertura
> > > > > plugin is now demanding version 2.0.3 to run.
> > > > >
> > > > > but now the site plugin is complaining that it can't find the skin
> > > > > org.apache.maven.skins:maven-default-skin:jar:RELEASE
> > > > >
> > > > > so where do I find that - please don't say I have to build it from
> > > source
> > > > > as I am at work now where I can't access your svn repo.
> > > > >
> > > > > the mvn output says to try downloading it from the project website -
> > > but
> > > > > does not mention where that site is.
> > > > >
> > > > > Kind regards,
> > > > > Dave Sag
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > >
> > >
> > >
> > > This e-mail, any attachments and the information contained therein
> > > ("this message") are confidential and intended solely for the use of
> > > the addressee(s). If you have received this message in error please
> > > send it back to the sender and delete it. Unauthorized publication,
> > > use, dissemination or disclosure of this message, either in whole or
> > > in part is strictly prohibited.
> > >
> > --------------------------------------------------------------------------------------------------------------
> > > Ce message électronique et tous les fichiers joints ainsi que  les
> > > informations contenues dans ce message ( ci après "le message" ),
> > > sont confidentiels et destinés exclusivement à l'usage de la
> > > personne à laquelle ils sont adressés. Si vous avez reçu ce message
> > > par erreur, merci  de le renvoyer à son émetteur et de le détruire.
> > > Toutes diffusion, publication, totale ou partielle ou divulgation
> > > sous quelque forme que se soit non expressément autorisées de ce
> > > message, sont interdites.
> > >
> > -------------------------------------------------------------------------------------------------------------
> > >
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: users-unsubscribe@...
> > > For additional commands, e-mail: users-help@...
> > >
> >
>
>

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