On 03.09.2010 05:27, Karan Malhi wrote:
ka...@sabira:~/projects/oss/openejb3$ mvn --version
Apache Maven 2.2.1 (rdebian-1)
Java version: 1.6.0_20
Java home: /usr/lib/jvm/java-6-sun-1.6.0.20/jre
Default locale: en_US, platform encoding: UTF-8
OS name: "linux" version: "2.6.32-24-generic-pae" arch: "i386" Family:
"unix"
On Thu, Sep 2, 2010 at 11:19 PM, Thiago Veronezi<thi...@veronezi.org>wrote:
Thats odd. I've tried it with 2 diff computers: at home I have a linux
machine; at work, a windows xp. It runs fine for windows, but not FOR my
linux :o/ . Whats your environment?
**********************************************************************************
b...@botonote:~/galileo/ws_sync1/openejb$ java -version
java version "1.6.0_21"
Java(TM) SE Runtime Environment (build 1.6.0_21-b06)
Java HotSpot(TM) 64-Bit Server VM (build 17.0-b16, mixed mode)
b...@botonote:~/galileo/ws_sync1/openejb$ mvn --version
Apache Maven 2.2.1 (rdebian-1)
Java version: 1.6.0_21
Java home: /opt/java/64/jdk1.6.0_21/jre
Default locale: en_CA, platform encoding: UTF-8
OS name: "linux" version: "2.6.32-24-generic" arch: "amd64" Family: "unix"
**********************************************************************************
C:\dev\ws_illumi2\iroot>java -version
java version "1.6.0_21"
Java(TM) SE Runtime Environment (build 1.6.0_21-b07)
Java HotSpot(TM) Client VM (build 17.0-b17, mixed mode, sharing)
C:\dev\ws_illumi2\iroot>mvn -version
Apache Maven 2.2.0 (r788681; 2009-06-26 09:04:01-0400)
Java version: 1.6.0_21
Java home: C:\Program Files\Java\jdk1.6.0_21\jre
Default locale: en_US, platform encoding: Cp1252
OS name: "windows xp" version: "5.1" arch: "x86" Family: "windows"
tkx,
Thiago
On Thu, Sep 2, 2010 at 10:15 PM, Karan Malhi<karan.ma...@gmail.com>
wrote:
On 09/02/2010 09:40 PM, Thiago Veronezi wrote:
Devs,
Im trying to compile the last source code but it seems that is missing
the
jboss repositoty (http://repository.jboss.org/maven2/ ?) for the items
bellow. Are you having the same problem?
Works fine for me. Just ran a successful build.
--
Karan Singh Malhi
I also had problems yesterday with the build due to repos, but after
adding 'http://repository.jboss.org/nexus/content/groups/public-jboss'
to my maven configuration everything was fine.
You will find that 'http://repository.jboss.org/maven2/' is going to
eventually go offline.
I find with the following maven profile config (in
[maven]/conf/settings.xml) that maven finds just about everything it needs.
<profile>
<id>My-extra-repos</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<repositories>
<repository>
<id>ibiblio</id>
<url>http://mirrors.ibiblio.org/pub/mirrors/maven2</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<repository>
<id>rapache central</id>
<url>https://repository.apache.org/content/repositories/central</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<repository>
<id>apache snapshot</id>
<url>https://repository.apache.org/content/repositories/snapshots</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<repository>
<id>jboss snapshot</id>
<url>http://repository.jboss.org/nexus/content/groups/public-jboss</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
</profile>
Regards,
Andy.