Hi,
Oh! You're awesome!
I build it successful, follow your steps, here is something to note.
ENV: ubuntu-10.04, jdk1.6.0_21(SUN), maven-2.2.1, git-1.7.0.4
Here is my maven's settings.xml, need to add sonatype snapshots
profile, and it works.
<profile>
<id>jboss.org</id>
<repositories>
<repository>
<id>repository.jboss.org-release</id>
<url>http://repository.jboss.org/nexus/content/groups/public/</
url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
</profile>
<profile>
<id>java.net</id>
<repositories>
<repository>
<id>download.java.net</id>
<url>http://download.java.net/maven/2</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
<updatePolicy>never</updatePolicy>
</snapshots>
</repository>
</repositories>
</profile>
<profile>
<id>glassfish.org</id>
<repositories>
<repository>
<id>maven.glassfish.org-release</id>
<name>Java.net Repository for
Maven</name>
<url>http://maven.glassfish.org/content/groups/glassfish</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
<updatePolicy>never</updatePolicy>
</snapshots>
</repository>
</repositories>
</profile>
<profile>
<id>sonatype.org</id>
<repositories>
<repository>
<id>repository.sonatype.org
-snapshot</id>
<name>Sonatype Repository for
Maven2</name>
<url>https://repository.sonatype.org/content/repositories/
snapshots/</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>jboss.org</activeProfile>
<activeProfile>java.net</activeProfile>
<activeProfile>glassfish.org</activeProfile>
<activeProfile>sonatype.org</activeProfile>
</activeProfiles>
This is the result:
[INFO]
[INFO]
[INFO]
------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO]
------------------------------------------------------------------------
[INFO] Google Guice .......................................... SUCCESS
[3.299s]
[INFO] Google Guice - Core Library ........................... SUCCESS
[37.783s]
[INFO] Google Guice - Extensions ............................. SUCCESS
[0.477s]
[INFO] Google Guice - Extensions - AssistedInject ............ SUCCESS
[4.882s]
[INFO] Google Guice - Extensions - MultiBindings ............. SUCCESS
[4.430s]
[INFO] Google Guice - Extensions - Grapher ................... SUCCESS
[3.212s]
[INFO] Google Guice - Extensions - JMX ....................... SUCCESS
[1.758s]
[INFO] Google Guice - Extensions - JNDI ...................... SUCCESS
[1.056s]
[INFO] Google Guice - Extensions - Mini ...................... SUCCESS
[2.343s]
[INFO] Google Guice - Extensions - Persist ................... SUCCESS
[5.931s]
[INFO] Google Guice - Extensions - Service ................... SUCCESS
[1.951s]
[INFO] Google Guice - Extensions - Servlet ................... SUCCESS
[6.169s]
[INFO] Google Guice - Extensions - Spring .................... SUCCESS
[2.128s]
[INFO] Google Guice - Extensions - Struts2 ................... SUCCESS
[2.507s]
[INFO] Google Guice - Extensions - ThrowingProviders ......... SUCCESS
[4.965s]
[INFO]
------------------------------------------------------------------------
[INFO]
------------------------------------------------------------------------
[INFO] BUILD SUCCESSFUL
[INFO]
------------------------------------------------------------------------
[INFO] Total time: 1 minute 23 seconds
[INFO] Finished at: Tue Oct 05 16:34:44 CST 2010
[INFO] Final Memory: 51M/457M
[INFO]
------------------------------------------------------------------------
I interested in guice-persist module. it is important for daily
working.
Thanks Dhanji and google-guice team..
Thanks Jason.
On 10月5日, 上午12时14分, Jason van Zyl <[email protected]> wrote:
> FYI,
>
> I just finished building Guice along with all the extensions using the build
> that Stuart put together:
>
> http://gist.github.com/609958
>
> Should be possible doing the following:
>
> git clonehttp://github.com/sonatype/sisu-guice.git
> cd sisu-guice
> mvn clean install
>
> Thanks,
>
> Jason
>
> ----------------------------------------------------------
> Jason van Zyl
> Founder, Apache Mavenhttp://twitter.com/jvanzyl
> ---------------------------------------------------------
>
> We know what we are, but know not what we may be.
>
> -- Shakespeare
--
You received this message because you are subscribed to the Google Groups
"google-guice" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-guice?hl=en.