dev@glassfish.java.net

Re: why can't I build GF trunk?

From: Jane Young <jane.young_at_oracle.com>
Date: Tue, 10 May 2011 10:14:47 -0700

The reported missing artifacts are available in maven.glassfish.org:
http://maven.glassfish.org/content/groups/glassfish/org/glassfish/admingui/console-ejb-plugin-help/3.2-b01/
http://maven.glassfish.org/content/groups/glassfish/org/glassfish/admingui/console-corba-plugin-help/3.2-b01/

Are you logged into OWAN? If yes, then you also need proxy setting.



On 5/10/11 9:41 AM, Bobby Bissett wrote:
> On 5/9/11 2:43 PM, Snjezana Sevo-Zenzerovic wrote:
>> I am trying to find low cost workaround. FWIW, things should work on
>> OWAN if you have mirror setting in your setting.xml.
>
> Well, I'm closer. I guess. Now I get the error below:
>
> Missing:
> ----------
> 1) org.glassfish.admingui:console-ejb-plugin-help:jar:3.2-b01
>
> Try downloading the file manually from the project website.
>
> Then, install it using the command:
> mvn install:install-file -DgroupId=org.glassfish.admingui
> -DartifactId=console-ejb-plugin-help -Dversion=3.2-b01 -Dpackaging=jar
> -Dfile=/path/to/file
>
> Alternatively, if you host your own repository you can deploy the
> file there:
> mvn deploy:deploy-file -DgroupId=org.glassfish.admingui
> -DartifactId=console-ejb-plugin-help -Dversion=3.2-b01 -Dpackaging=jar
> -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]
>
> Path to dependency:
> 1)
> org.glassfish.packager:glassfish-ejb:distribution-base-zip:3.2-SNAPSHOT
> 2) org.glassfish.admingui:console-ejb-plugin-help:jar:3.2-b01
>
> 2) org.glassfish.admingui:console-corba-plugin-help:jar:3.2-b01
>
> Try downloading the file manually from the project website.
>
> Then, install it using the command:
> mvn install:install-file -DgroupId=org.glassfish.admingui
> -DartifactId=console-corba-plugin-help -Dversion=3.2-b01
> -Dpackaging=jar -Dfile=/path/to/file
>
> Alternatively, if you host your own repository you can deploy the
> file there:
> mvn deploy:deploy-file -DgroupId=org.glassfish.admingui
> -DartifactId=console-corba-plugin-help -Dversion=3.2-b01
> -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]
>
> Path to dependency:
> 1)
> org.glassfish.packager:glassfish-ejb:distribution-base-zip:3.2-SNAPSHOT
> 2) org.glassfish.admingui:console-corba-plugin-help:jar:3.2-b01
>
> ----------
> 2 required artifacts are missing.
>
> for artifact:
> org.glassfish.packager:glassfish-ejb:distribution-base-zip:3.2-SNAPSHOT
>
> from the specified remote repositories:
> glassfish-nexus (http://maven.glassfish.org/content/groups/glassfish)
>
> ************************************************
>
> My settings.xml:
>
> hostname% cat ~/.m2/settings.xml
> <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
> xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
> http://maven.apache.org/xsd/settings-1.0.0.xsd">
> <proxies>
> <proxy>
> <id>OWANproxy</id>
> <active>true</active>
> <protocol>http</protocol>
> <host>[oracle proxy address]</host>
> <port>80</port>
> </proxy>
> </proxies>
>
> <mirrors>
> <mirror>
> <id>glassfish-nexus</id>
> <url>http://maven.glassfish.org/content/groups/glassfish</url>
> <mirrorOf>*</mirrorOf>
> </mirror>
> </mirrors>
>
> </settings>
>