I have attempted to build a branded gateway according to the instructions on the page at http://www.josso.org/confluence/display/JOSSO1/Branding+JOSSO. The first step, the mvn archetype... step, seems to work - it generates the project structure as described.
The next step, the mvn install, produces many errors, as follows, and the branded war is not produced in the maven repository. I'm typing commands exactly as they appear in the instructions (double and triple checked). Is there a step missing from the instructions, or am I doing something boneheaded? I'd rather not install all those files by hand if there's an automated way that works. Thanks.
Try downloading the file manually from the project website.
Then, install it using the command:
mvn install:install-file -DgroupId=org.josso -DartifactId=josso-simple-los
tpasswordprocess -Dversion=1.8.0 -Dpackaging=jar -Dfile=/path/to/file
Alternatively, if you host your own repository you can deploy the file there:
I do have internet access, and there is no http proxy. I can successfully access the repository URL you provided through my browser.
I don't see anything in the pom.xml file that I can identify as the josso repository. What should this look like in the file? (I have not modified this file in any way.)
I figured it out. I'm not a Maven maven (sorry) but I googled awhile and found an example of the repositories setting. I hacked it up and added it to the pom.xml and the maven install command now appears to work.
Shouldn't this be set by the initial maven step that creates the project and its pom.xml?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
i'm having the same problem, it has not been fixed, there's no 1.8.1 still available as fas as i know. I tried same thing as donutdude but still seeing some lots of messages of this kind ... although JOSSO related resources now do download.
BUT! There are still Problems, so I can't finish the branding Tutorial:
1.) I copied all the mentioned josso-gateway-*.xml, josso-users.xml and josso-credentials.xml to the resources Folder of my project prior to issue the "mvn install" command. In the generated .war File they are included inside the classes folder. Then I deploy the archive via the "gateway install" command as shown. When starting up the Tomcat 6 server I get Exceptions saying josso-agent-config.xml could not be found. Renaming /tomcat6/lib/josso-agent-config.xml.bkp.1 back to josso-agent-config.xml helps.
2.) I modified my-gateway/src/main/webapp/josso-layout.jsp according to the tutorial and added my Logo to the mentioned resources Folder. After deployment of my gateway the logo file can be found inside C:\tomcat_6\webapps\josso\resources\img\content but \josso\josso-layout.jsp still points to the original logo file. Why hasn't it been overwritten during the deployment of my new gateway? The modified josso-layout.jsp is included in my .war file
3.) "gateway install" alway tries to fetch the archive from the default local maven repository under windows (c:/documents and settings/username/.m2/repository). I use a different setting on my machine for the local repository but the maven2 configuration is ignored by gatewa install. So I always need to manually copy the repo files from my local repository to the default location before trying to issue the gateway install command.(or use the direct filkepat instead of the mvn notation)
Regards
Peter
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I was also using branded JOSSO.
I also copied the jars to my Maven Repo using mvn install:install.
I was able to build the project and package into WAR.
The thing is I did this, not because the libraries or dependencies were not downloaded, but,
because when I deployed JOSSO, there were classes and methods that were not found which
made JOSSO unable to continue running.
The jars in the stand-alone package of JOSSO 1.8.0 seemed to be OK, so I used them instead.
Maven JOSSO jars and the jars in the binary package were not the same.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Has there been any resolution to this problem? I'm using v 1.8.2, and although the archetype:create command worked fine, and during the install all non-josso files were downloaded without a problem, all of the josso files failed to download:
Having followed the example in the 'Branding JOSSO' documentation, I realised that although I was using v1.8.2, I still set the archetypeVersion parm on the gateway creation as 1.8.0. Having corrected this to 1.8.2, I am told at the end of the install that the build was successful, but it still doesn't look right as it was still unable to find various resources. This is the output:
Using platform encoding (Cp1252 actually) to copy filtered resources, i.e. build is platform dependent!
skip non existing resourceDirectory C:\Users\richarn\Documents\Source\zodsso\src\test\resources
Packaging webapp
Assembling webapp in
Processing war project
Copying webapp resources
Webapp assembled in
Building war: C:\Users\richarn\Documents\Source\zodsso\target\zodsso-0.0.1-SNAPSHOT.war
Installing C:\Users\richarn\Documents\Source\zodsso\target\zodsso-0.0.1-SNAPSHOT.war to C:\Users\richarn\.m2\repository\com\test\zods
so\0.0.1-SNAPSHOT\zodsso-0.0.1-SNAPSHOT.war
BUILD SUCCESSFUL
Total time: 49 seconds
Finished at: Fri Oct 01 18:22:05 BST 2010
Final Memory: 35M/222M
I did try to plough on, but the gateway install fails with the following:
Verifying Target JBoss AS 4.2.x
JBoss AS 4.2.x Directory Layout
JBossHome
Backing up JOSSO Gateway configuration
Install JOSSO Gateway Configuration
Backup and remove existing configuration files
Deploy JOSSO Gateway Application
Unjar Could not copy "jar:file:///C:/Users/richarn/.m2/repository/com/test/zodsso/0.0.1-SNAPSHOT/zodsso-0.0.1-SNAPSHOT.war!/signon/loginResult.jsp" to "file:///c:/jboss-4.2.3.GA/server/default/deploy/josso.war/signon/loginResult.jsp".
JBoss AS 4.2.x JOSSO Gateway v.1.8.2
Overall Installation Successful!
Congratulations! You've successfully installed the gateway.
Now Follow the JOSSO Gateway Configuration guide and setup JOSSO as needed
Even though it tells me it's successful, when I have a look at the deployment, the only file that made it was the file it says it failed to copy (loginResult.jsp). I've re-run it a couple of times just to make sure that that file (and the josso.war folder itself) did not exist beforehand.
Great product (I'm using 1.5 at the moment) - just having some problems with this install :(
Hoping someone can help :)
Thanks,
Neil
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I have attempted to build a branded gateway according to the instructions on the page at http://www.josso.org/confluence/display/JOSSO1/Branding+JOSSO. The first step, the mvn archetype... step, seems to work - it generates the project structure as described.
The next step, the mvn install, produces many errors, as follows, and the branded war is not produced in the maven repository. I'm typing commands exactly as they appear in the instructions (double and triple checked). Is there a step missing from the instructions, or am I doing something boneheaded? I'd rather not install all those files by hand if there's an automated way that works. Thanks.
...
35) org.josso:josso-simple-lostpasswordprocess:jar:1.8.0
Try downloading the file manually from the project website.
Then, install it using the command:
mvn install:install-file -DgroupId=org.josso -DartifactId=josso-simple-los
tpasswordprocess -Dversion=1.8.0 -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.josso -DartifactId=josso-simple-lostp
asswordprocess -Dversion=1.8.0 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url]
-DrepositoryId=[id]
Path to dependency:
1) mil.defenseimagery.sso:dvi-gateway:war:0.0.1-SNAPSHOT
2) org.josso:josso-simple-lostpasswordprocess:jar:1.8.0
----------
35 required artifacts are missing.
Hi Bill,
All dependencies are actually deployed. For instance, the one you mention can be accessed using this url : http://repository.josso.org/org/josso/josso-simple-lostpasswordprocess/1.8.0/josso-simple-lostpasswordprocess-1.8.0.jar
Do you have internet access from the box from which you are building your distribution ?
In case your box is sitting behind an http proxy, make sure that Maven is using it, see : http://maven.apache.org/guides/mini/guide-proxies.html
Also, is the josso repository properly defined within your branded gateway module pom.xml descriptor ?
Cheers,
Gianluca.
I do have internet access, and there is no http proxy. I can successfully access the repository URL you provided through my browser.
I don't see anything in the pom.xml file that I can identify as the josso repository. What should this look like in the file? (I have not modified this file in any way.)
Just for yucks, here's my command line:
D:\Working\josso-1.8.0>mvn archetype:create -DarchetypeGroupId=org.josso -DarchetypeArtifactId=josso-
archetype-gateway -DarchetypeVersion=1.8.0 -DgroupId=com.example -DartifactId=my-gateway -Dversion=0.0.1-SNAPSHOT -DremoteR
epositories=http://repository.josso.org
Thanks.
I figured it out. I'm not a Maven maven (sorry) but I googled awhile and found an example of the repositories setting. I hacked it up and added it to the pom.xml and the maven install command now appears to work.
Shouldn't this be set by the initial maven step that creates the project and its pom.xml?
Yes, the archetype should be including the JOSSO maven repository definition.
This will be fixed this week within 1.8.1 branch.
Cheers,
Gianluca.
i'm having the same problem, it has not been fixed, there's no 1.8.1 still available as fas as i know. I tried same thing as donutdude but still seeing some lots of messages of this kind ... although JOSSO related resources now do download.
Downloading: http://repository.jboss.com/maven2/commons-fileupload/commons-fileupload/1.0/commons-fileupload-1.0.jar
[INFO] Unable to find resource 'commons-beanutils:commons-beanutils:jar:1.6.1' in repository java.net (http://download.java.net/maven/1)
Downloading: http://repository.jboss.com/maven2/commons-beanutils/commons-beanutils/1.6.1/commons-beanutils-1.6.1.jar
[INFO] Unable to find resource 'struts:struts:jar:1.1' in repository josso-m2-repo (http://repository.josso.org)
Downloading: http://people.apache.org/repo/m2-ibiblio-rsync-repository/struts/struts/1.1/struts-1.1.jar
[INFO] Unable to find resource 'commons-digester:commons-digester:jar:1.6' in repository apache (http://people.apache.org/repo/m2-ibiblio-rsync-repository)
Thanks
Hi Santiago,
is your build machine behind an http proxy ? If yes, you may want to have a look at : http://maven.apache.org/guides/mini/guide-proxies.html
Cheers,
Gianluca.
I ran into the same problems during mvn install. I added this to my pom.xml:
<repositories>
- <repository>
<id>josso</id>
<name>Josso Repository</name>
<layout>default</layout>
<url>http://repository.josso.org</url (repository.josso.org%3c)>
- <snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
mvn install was successful afterwards.
BUT! There are still Problems, so I can't finish the branding Tutorial:
1.) I copied all the mentioned josso-gateway-*.xml, josso-users.xml and josso-credentials.xml to the resources Folder of my project prior to issue the "mvn install" command. In the generated .war File they are included inside the classes folder. Then I deploy the archive via the "gateway install" command as shown. When starting up the Tomcat 6 server I get Exceptions saying josso-agent-config.xml could not be found. Renaming /tomcat6/lib/josso-agent-config.xml.bkp.1 back to josso-agent-config.xml helps.
2.) I modified my-gateway/src/main/webapp/josso-layout.jsp according to the tutorial and added my Logo to the mentioned resources Folder. After deployment of my gateway the logo file can be found inside C:\tomcat_6\webapps\josso\resources\img\content but \josso\josso-layout.jsp still points to the original logo file. Why hasn't it been overwritten during the deployment of my new gateway? The modified josso-layout.jsp is included in my .war file
3.) "gateway install" alway tries to fetch the archive from the default local maven repository under windows (c:/documents and settings/username/.m2/repository). I use a different setting on my machine for the local repository but the maven2 configuration is ignored by gatewa install. So I always need to manually copy the repo files from my local repository to the default location before trying to issue the gateway install command.(or use the direct filkepat instead of the mvn notation)
Regards
Peter
Hi everyone,
I was also using branded JOSSO.
I also copied the jars to my Maven Repo using mvn install:install.
I was able to build the project and package into WAR.
The thing is I did this, not because the libraries or dependencies were not downloaded, but,
because when I deployed JOSSO, there were classes and methods that were not found which
made JOSSO unable to continue running.
The jars in the stand-alone package of JOSSO 1.8.0 seemed to be OK, so I used them instead.
Maven JOSSO jars and the jars in the binary package were not the same.
Hello, please help me. I wrote in the command prompt the next sequence:
mvn archetype:create-DarchetypeGroupId=org.josso-DarchetypeArtifactId=josso-archetype-gateway-DarchetypeVersion=1.8.0-DgroupId=com.test-DartifactId=my-gateway-Dversion=0.0.1-SNAPSHOT-DremoteRepositories=http://repository.josso.org
and appear a message: "cmd" is not recognized as an internal or external command, operable program or batch file. I don't know what to do. Thank you!
Hi,
Has there been any resolution to this problem? I'm using v 1.8.2, and although the archetype:create command worked fine, and during the install all non-josso files were downloaded without a problem, all of the josso files failed to download:
Downloading: http://repo1.maven.org/maven2/org/josso/josso-core/1.8.0/josso-core-1.8.0.pom
Unable to find resource 'org.josso:josso-core:pom:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-db-assertionstore/1.8.0/josso-db-assertionstore-1.8.0.pom
Unable to find resource 'org.josso:josso-db-assertionstore:pom:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-default-assertionidgen/1.8.0/josso-default-assertionidgen-1.8.0.pom
Unable to find resource 'org.josso:josso-default-assertionidgen:pom:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-memory-assertionstore/1.8.0/josso-memory-assertionstore-1.8.0.pom
Unable to find resource 'org.josso:josso-memory-assertionstore:pom:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-default-assertionmgr/1.8.0/josso-default-assertionmgr-1.8.0.pom
Unable to find resource 'org.josso:josso-default-assertionmgr:pom:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-default-auditmgr/1.8.0/josso-default-auditmgr-1.8.0.pom
Unable to find resource 'org.josso:josso-default-auditmgr:pom:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-logger-audittrailhandler/1.8.0/josso-logger-audittrailhandler-1.8.0.pom
Unable to find resource 'org.josso:josso-logger-audittrailhandler:pom:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-default-authenticator/1.8.0/josso-default-authenticator-1.8.0.pom
Unable to find resource 'org.josso:josso-default-authenticator:pom:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-basic-authscheme/1.8.0/josso-basic-authscheme-1.8.0.pom
Unable to find resource 'org.josso:josso-basic-authscheme:pom:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-bind-authscheme/1.8.0/josso-bind-authscheme-1.8.0.pom
Unable to find resource 'org.josso:josso-bind-authscheme:pom:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-ntlm-authscheme/1.8.0/josso-ntlm-authscheme-1.8.0.pom
Unable to find resource 'org.josso:josso-ntlm-authscheme:pom:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-strong-authscheme/1.8.0/josso-strong-authscheme-1.8.0.pom
Unable to find resource 'org.josso:josso-strong-authscheme:pom:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-rememberme-authscheme/1.8.0/josso-rememberme-authscheme-1.8.0.pom
Unable to find resource 'org.josso:josso-rememberme-authscheme:pom:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-default-eventmgr/1.8.0/josso-default-eventmgr-1.8.0.pom
Unable to find resource 'org.josso:josso-default-eventmgr:pom:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-protocol/1.8.0/josso-protocol-1.8.0.pom
Unable to find resource 'org.josso:josso-protocol:pom:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-db-identitystore/1.8.0/josso-db-identitystore-1.8.0.pom
Unable to find resource 'org.josso:josso-db-identitystore:pom:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-ldap-identitystore/1.8.0/josso-ldap-identitystore-1.8.0.pom
Unable to find resource 'org.josso:josso-ldap-identitystore:pom:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-memory-identitystore/1.8.0/josso-memory-identitystore-1.8.0.pom
Unable to find resource 'org.josso:josso-memory-identitystore:pom:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-default-identitymgr/1.8.0/josso-default-identitymgr-1.8.0.pom
Unable to find resource 'org.josso:josso-default-identitymgr:pom:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-default-identityprovider/1.8.0/josso-default-identityprovider-1.8.0.pom
Unable to find resource 'org.josso:josso-default-identityprovider:pom:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-appctx-secdomainmatcher/1.8.0/josso-appctx-secdomainmatcher-1.8.0.pom
Unable to find resource 'org.josso:josso-appctx-secdomainmatcher:pom:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-default-secdomainregistry/1.8.0/josso-default-secdomainregistry-1.8.0.pom
Unable to find resource 'org.josso:josso-default-secdomainregistry:pom:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-default-secdomainselector/1.8.0/josso-default-secdomainselector-1.8.0.pom
Unable to find resource 'org.josso:josso-default-secdomainselector:pom:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-simple-secdomainmatcher/1.8.0/josso-simple-secdomainmatcher-1.8.0.pom
Unable to find resource 'org.josso:josso-simple-secdomainmatcher:pom:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-vhost-secdomainmatcher/1.8.0/josso-vhost-secdomainmatcher-1.8.0.pom
Unable to find resource 'org.josso:josso-vhost-secdomainmatcher:pom:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-db-sessionstore/1.8.0/josso-db-sessionstore-1.8.0.pom
Unable to find resource 'org.josso:josso-db-sessionstore:pom:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-default-sessionidgen/1.8.0/josso-default-sessionidgen-1.8.0.pom
Unable to find resource 'org.josso:josso-default-sessionidgen:pom:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-memory-sessionstore/1.8.0/josso-memory-sessionstore-1.8.0.pom
Unable to find resource 'org.josso:josso-memory-sessionstore:pom:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-default-sessionmgr/1.8.0/josso-default-sessionmgr-1.8.0.pom
Unable to find resource 'org.josso:josso-default-sessionmgr:pom:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-serialized-sessionstore/1.8.0/josso-serialized-sessionstore-1.8.0.pom
Unable to find resource 'org.josso:josso-serialized-sessionstore:pom:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-ws/1.8.0/josso-ws-1.8.0.pom
Unable to find resource 'org.josso:josso-ws:pom:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-default-passwordmanager/1.8.0/josso-default-passwordmanager-1.8.0.pom
Unable to find resource 'org.josso:josso-default-passwordmanager:pom:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-default-passwordgenerator/1.8.0/josso-default-passwordgenerator-1.8.0.pom
Unable to find resource 'org.josso:josso-default-passwordgenerator:pom:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-email-passworddistributor/1.8.0/josso-email-passworddistributor-1.8.0.pom
Unable to find resource 'org.josso:josso-email-passworddistributor:pom:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-simple-lostpasswordprocess/1.8.0/josso-simple-lostpasswordprocess-1.8.0.pom
Unable to find resource 'org.josso:josso-simple-lostpasswordprocess:pom:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-core/1.8.0/josso-core-1.8.0.jar
Unable to find resource 'org.josso:josso-core:jar:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-db-assertionstore/1.8.0/josso-db-assertionstore-1.8.0.jar
Unable to find resource 'org.josso:josso-db-assertionstore:jar:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-default-assertionidgen/1.8.0/josso-default-assertionidgen-1.8.0.jar
Unable to find resource 'org.josso:josso-default-assertionidgen:jar:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-memory-assertionstore/1.8.0/josso-memory-assertionstore-1.8.0.jar
Unable to find resource 'org.josso:josso-memory-assertionstore:jar:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-default-assertionmgr/1.8.0/josso-default-assertionmgr-1.8.0.jar
Unable to find resource 'org.josso:josso-default-assertionmgr:jar:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-default-auditmgr/1.8.0/josso-default-auditmgr-1.8.0.jar
Unable to find resource 'org.josso:josso-default-auditmgr:jar:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-logger-audittrailhandler/1.8.0/josso-logger-audittrailhandler-1.8.0.jar
Unable to find resource 'org.josso:josso-logger-audittrailhandler:jar:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-default-authenticator/1.8.0/josso-default-authenticator-1.8.0.jar
Unable to find resource 'org.josso:josso-default-authenticator:jar:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-basic-authscheme/1.8.0/josso-basic-authscheme-1.8.0.jar
Unable to find resource 'org.josso:josso-basic-authscheme:jar:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-bind-authscheme/1.8.0/josso-bind-authscheme-1.8.0.jar
Unable to find resource 'org.josso:josso-bind-authscheme:jar:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-ntlm-authscheme/1.8.0/josso-ntlm-authscheme-1.8.0.jar
Unable to find resource 'org.josso:josso-ntlm-authscheme:jar:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-strong-authscheme/1.8.0/josso-strong-authscheme-1.8.0.jar
Unable to find resource 'org.josso:josso-strong-authscheme:jar:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-rememberme-authscheme/1.8.0/josso-rememberme-authscheme-1.8.0.jar
Unable to find resource 'org.josso:josso-rememberme-authscheme:jar:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-default-eventmgr/1.8.0/josso-default-eventmgr-1.8.0.jar
Unable to find resource 'org.josso:josso-default-eventmgr:jar:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-protocol/1.8.0/josso-protocol-1.8.0.jar
Unable to find resource 'org.josso:josso-protocol:jar:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-db-identitystore/1.8.0/josso-db-identitystore-1.8.0.jar
Unable to find resource 'org.josso:josso-db-identitystore:jar:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-ldap-identitystore/1.8.0/josso-ldap-identitystore-1.8.0.jar
Unable to find resource 'org.josso:josso-ldap-identitystore:jar:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-memory-identitystore/1.8.0/josso-memory-identitystore-1.8.0.jar
Unable to find resource 'org.josso:josso-memory-identitystore:jar:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-default-identitymgr/1.8.0/josso-default-identitymgr-1.8.0.jar
Unable to find resource 'org.josso:josso-default-identitymgr:jar:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-default-identityprovider/1.8.0/josso-default-identityprovider-1.8.0.jar
Unable to find resource 'org.josso:josso-default-identityprovider:jar:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-appctx-secdomainmatcher/1.8.0/josso-appctx-secdomainmatcher-1.8.0.jar
Unable to find resource 'org.josso:josso-appctx-secdomainmatcher:jar:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-default-secdomainregistry/1.8.0/josso-default-secdomainregistry-1.8.0.jar
Unable to find resource 'org.josso:josso-default-secdomainregistry:jar:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-default-secdomainselector/1.8.0/josso-default-secdomainselector-1.8.0.jar
Unable to find resource 'org.josso:josso-default-secdomainselector:jar:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-simple-secdomainmatcher/1.8.0/josso-simple-secdomainmatcher-1.8.0.jar
Unable to find resource 'org.josso:josso-simple-secdomainmatcher:jar:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-vhost-secdomainmatcher/1.8.0/josso-vhost-secdomainmatcher-1.8.0.jar
Unable to find resource 'org.josso:josso-vhost-secdomainmatcher:jar:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-db-sessionstore/1.8.0/josso-db-sessionstore-1.8.0.jar
Unable to find resource 'org.josso:josso-db-sessionstore:jar:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-default-sessionidgen/1.8.0/josso-default-sessionidgen-1.8.0.jar
Unable to find resource 'org.josso:josso-default-sessionidgen:jar:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-memory-sessionstore/1.8.0/josso-memory-sessionstore-1.8.0.jar
Unable to find resource 'org.josso:josso-memory-sessionstore:jar:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-default-sessionmgr/1.8.0/josso-default-sessionmgr-1.8.0.jar
Unable to find resource 'org.josso:josso-default-sessionmgr:jar:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-serialized-sessionstore/1.8.0/josso-serialized-sessionstore-1.8.0.jar
Unable to find resource 'org.josso:josso-serialized-sessionstore:jar:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-ws/1.8.0/josso-ws-1.8.0.jar
Unable to find resource 'org.josso:josso-ws:jar:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-default-passwordmanager/1.8.0/josso-default-passwordmanager-1.8.0.jar
Unable to find resource 'org.josso:josso-default-passwordmanager:jar:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-default-passwordgenerator/1.8.0/josso-default-passwordgenerator-1.8.0.jar
Unable to find resource 'org.josso:josso-default-passwordgenerator:jar:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-email-passworddistributor/1.8.0/josso-email-passworddistributor-1.8.0.jar
Unable to find resource 'org.josso:josso-email-passworddistributor:jar:1.8.0' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2/org/josso/josso-simple-lostpasswordprocess/1.8.0/josso-simple-lostpasswordprocess-1.8.0.jar
Unable to find resource 'org.josso:josso-simple-lostpasswordprocess:jar:1.8.0' in repository central (http://repo1.maven.org/maven2)
BUILD ERROR
Failed to resolve artifact.
I'm not using an http proxy. Has anyone found a solution to this, or maybe there's a fix?
Many thanks,
Neil
Hi again,
Having followed the example in the 'Branding JOSSO' documentation, I realised that although I was using v1.8.2, I still set the archetypeVersion parm on the gateway creation as 1.8.0. Having corrected this to 1.8.2, I am told at the end of the install that the build was successful, but it still doesn't look right as it was still unable to find various resources. This is the output:
Downloading: http://repo1.maven.org/maven2/org/apache/maven/plugins/maven-war-plugin/2.1-beta-1/maven-war-plugin-2.1-beta-1.pom
Downloading: http://repo1.maven.org/maven2/org/apache/maven/plugins/maven-plugins/13/maven-plugins-13.pom
Downloading: http://repo1.maven.org/maven2/org/apache/maven/maven-parent/11/maven-parent-11.pom
Downloading: http://repo1.maven.org/maven2/org/apache/apache/5/apache-5.pom
Downloading: http://repo1.maven.org/maven2/org/apache/maven/plugins/maven-war-plugin/2.1-beta-1/maven-war-plugin-2.1-beta-1.jar
Using platform encoding (Cp1252 actually) to copy filtered resources, i.e. build is platform dependent!
Copying 12 resources
Downloading: http://repository.josso.org/org/josso/josso-virtual-identitystore/1.8.2/josso-virtual-identitystore-1.8.2.pom
4K downloaded (josso-virtual-identitystore-1.8.2.pom)
Downloading: http://repository.josso.org/bsf/bsf/2.4.0/bsf-2.4.0.pom
Unable to find resource 'bsf:bsf:pom:2.4.0' in repository josso-m2-repo (http://repository.josso.org) (repository.josso.org%29)
Downloading: http://svn.apache.org/repos/asf/servicemix/m2-repo/bsf/bsf/2.4.0/bsf-2.4.0.pom
Unable to find resource 'bsf:bsf:pom:2.4.0' in repository apach-servicemix (http://svn.apache.org/repos/asf/servicemix/m2-repo)
Downloading: http://repository.codehaus.org/bsf/bsf/2.4.0/bsf-2.4.0.pom
Unable to find resource 'bsf:bsf:pom:2.4.0' in repository codehaus (http://repository.codehaus.org) (repository.codehaus.org%29)
Downloading: http://download.java.net/maven/1/bsf/poms/bsf-2.4.0.pom
Unable to find resource 'bsf:bsf:pom:2.4.0' in repository java.net (http://download.java.net/maven/1)
Downloading: http://repository.jboss.com/maven2/bsf/bsf/2.4.0/bsf-2.4.0.pom
1K downloaded (bsf-2.4.0.pom)
Downloading: http://repository.josso.org/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom
Unable to find resource 'commons-logging:commons-logging:pom:1.0.4' in repository josso-m2-repo (http://repository.josso.org) (repository.josso.org%29)
Downloading: http://svn.apache.org/repos/asf/servicemix/m2-repo/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom
Unable to find resource 'commons-logging:commons-logging:pom:1.0.4' in repository apach-servicemix (http://svn.apache.org/repos/asf/servicemix/m2-repo)
Downloading: http://repository.codehaus.org/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom
Unable to find resource 'commons-logging:commons-logging:pom:1.0.4' in repository codehaus (http://repository.codehaus.org) (repository.codehaus.org%29)
Downloading: http://download.java.net/maven/1/commons-logging/poms/commons-logging-1.0.4.pom
Unable to find resource 'commons-logging:commons-logging:pom:1.0.4' in repository java.net (http://download.java.net/maven/1)
Downloading: http://repository.jboss.com/maven2/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom
5K downloaded (commons-logging-1.0.4.pom)
Downloading: http://repository.josso.org/org/beanshell/bsh-bsf/2.0b4/bsh-bsf-2.0b4.pom
Unable to find resource 'org.beanshell:bsh-bsf:pom:2.0b4' in repository josso-m2-repo (http://repository.josso.org) (repository.josso.org%29)
Downloading: http://svn.apache.org/repos/asf/servicemix/m2-repo/org/beanshell/bsh-bsf/2.0b4/bsh-bsf-2.0b4.pom
Unable to find resource 'org.beanshell:bsh-bsf:pom:2.0b4' in repository apach-servicemix (http://svn.apache.org/repos/asf/servicemix/m2-repo)
Downloading: http://repository.codehaus.org/org/beanshell/bsh-bsf/2.0b4/bsh-bsf-2.0b4.pom
Unable to find resource 'org.beanshell:bsh-bsf:pom:2.0b4' in repository codehaus (http://repository.codehaus.org) (repository.codehaus.org%29)
Downloading: http://download.java.net/maven/1/org.beanshell/poms/bsh-bsf-2.0b4.pom
Unable to find resource 'org.beanshell:bsh-bsf:pom:2.0b4' in repository java.net (http://download.java.net/maven/1)
Downloading: http://repository.jboss.com/maven2/org/beanshell/bsh-bsf/2.0b4/bsh-bsf-2.0b4.pom
Unable to find resource 'org.beanshell:bsh-bsf:pom:2.0b4' in repository jboss (http://repository.jboss.com/maven2)
Downloading: http://repository.ops4j.org/maven2/org/beanshell/bsh-bsf/2.0b4/bsh-bsf-2.0b4.pom
Unable to find resource 'org.beanshell:bsh-bsf:pom:2.0b4' in repository ops4j (http://repository.ops4j.org/maven2)
Downloading: http://repository.sonatype.org/content/groups/public/org/beanshell/bsh-bsf/2.0b4/bsh-bsf-2.0b4.pom
965b downloaded (bsh-bsf-2.0b4.pom)
Downloading: http://repository.josso.org/org/beanshell/beanshell/2.0b4/beanshell-2.0b4.pom
Unable to find resource 'org.beanshell:beanshell:pom:2.0b4' in repository josso-m2-repo (http://repository.josso.org) (repository.josso.org%29)
Downloading: http://svn.apache.org/repos/asf/servicemix/m2-repo/org/beanshell/beanshell/2.0b4/beanshell-2.0b4.pom
Unable to find resource 'org.beanshell:beanshell:pom:2.0b4' in repository apach-servicemix (http://svn.apache.org/repos/asf/servicemix/m2-repo)
Downloading: http://repository.codehaus.org/org/beanshell/beanshell/2.0b4/beanshell-2.0b4.pom
Unable to find resource 'org.beanshell:beanshell:pom:2.0b4' in repository codehaus (http://repository.codehaus.org) (repository.codehaus.org%29)
Downloading: http://download.java.net/maven/1/org.beanshell/poms/beanshell-2.0b4.pom
Unable to find resource 'org.beanshell:beanshell:pom:2.0b4' in repository java.net (http://download.java.net/maven/1)
Downloading: http://repository.jboss.com/maven2/org/beanshell/beanshell/2.0b4/beanshell-2.0b4.pom
1K downloaded (beanshell-2.0b4.pom)
Downloading: http://repository.josso.org/org/beanshell/bsh-core/2.0b4/bsh-core-2.0b4.pom
Unable to find resource 'org.beanshell:bsh-core:pom:2.0b4' in repository josso-m2-repo (http://repository.josso.org) (repository.josso.org%29)
Downloading: http://svn.apache.org/repos/asf/servicemix/m2-repo/org/beanshell/bsh-core/2.0b4/bsh-core-2.0b4.pom
Unable to find resource 'org.beanshell:bsh-core:pom:2.0b4' in repository apach-servicemix (http://svn.apache.org/repos/asf/servicemix/m2-repo)
Downloading: http://repository.codehaus.org/org/beanshell/bsh-core/2.0b4/bsh-core-2.0b4.pom
Unable to find resource 'org.beanshell:bsh-core:pom:2.0b4' in repository codehaus (http://repository.codehaus.org) (repository.codehaus.org%29)
Downloading: http://download.java.net/maven/1/org.beanshell/poms/bsh-core-2.0b4.pom
Unable to find resource 'org.beanshell:bsh-core:pom:2.0b4' in repository java.net (http://download.java.net/maven/1)
Downloading: http://repository.jboss.com/maven2/org/beanshell/bsh-core/2.0b4/bsh-core-2.0b4.pom
Unable to find resource 'org.beanshell:bsh-core:pom:2.0b4' in repository jboss (http://repository.jboss.com/maven2)
Downloading: http://repository.ops4j.org/maven2/org/beanshell/bsh-core/2.0b4/bsh-core-2.0b4.pom
Unable to find resource 'org.beanshell:bsh-core:pom:2.0b4' in repository ops4j (http://repository.ops4j.org/maven2)
Downloading: http://repository.sonatype.org/content/groups/public/org/beanshell/bsh-core/2.0b4/bsh-core-2.0b4.pom
499b downloaded (bsh-core-2.0b4.pom)
Downloading: http://repository.josso.org/bsf/bsf/2.4.0/bsf-2.4.0.jar
Downloading: http://repository.josso.org/org/beanshell/bsh-bsf/2.0b4/bsh-bsf-2.0b4.jar
Downloading: http://repository.josso.org/org/josso/josso-virtual-identitystore/1.8.2/josso-virtual-identitystore-1.8.2.jar
Unable to find resource 'bsf:bsf:jar:2.4.0' in repository josso-m2-repo (http://repository.josso.org) (repository.josso.org%29)
Downloading: http://svn.apache.org/repos/asf/servicemix/m2-repo/bsf/bsf/2.4.0/bsf-2.4.0.jar
Unable to find resource 'org.beanshell:bsh-bsf:jar:2.0b4' in repository josso-m2-repo (http://repository.josso.org) (repository.josso.org%29)
Downloading: http://svn.apache.org/repos/asf/servicemix/m2-repo/org/beanshell/bsh-bsf/2.0b4/bsh-bsf-2.0b4.jar
Unable to find resource 'bsf:bsf:jar:2.4.0' in repository apach-servicemix (http://svn.apache.org/repos/asf/servicemix/m2-repo)
Downloading: http://repository.codehaus.org/bsf/bsf/2.4.0/bsf-2.4.0.jar
Unable to find resource 'org.beanshell:bsh-bsf:jar:2.0b4' in repository apach-servicemix (http://svn.apache.org/repos/asf/servicemix/m2-repo)
Downloading: http://repository.codehaus.org/org/beanshell/bsh-bsf/2.0b4/bsh-bsf-2.0b4.jar
Unable to find resource 'bsf:bsf:jar:2.4.0' in repository codehaus (http://repository.codehaus.org) (repository.codehaus.org%29)
Downloading: http://download.java.net/maven/1/bsf/jars/bsf-2.4.0.jar
Unable to find resource 'org.beanshell:bsh-bsf:jar:2.0b4' in repository codehaus (http://repository.codehaus.org) (repository.codehaus.org%29)
Downloading: http://download.java.net/maven/1/org.beanshell/jars/bsh-bsf-2.0b4.jar
Unable to find resource 'bsf:bsf:jar:2.4.0' in repository java.net (http://download.java.net/maven/1)
Downloading: http://repository.jboss.com/maven2/bsf/bsf/2.4.0/bsf-2.4.0.jar
Unable to find resource 'org.beanshell:bsh-bsf:jar:2.0b4' in repository java.net (http://download.java.net/maven/1)
Downloading: http://repository.jboss.com/maven2/org/beanshell/bsh-bsf/2.0b4/bsh-bsf-2.0b4.jar
71K downloaded (josso-virtual-identitystore-1.8.2.jar)
Unable to find resource 'org.beanshell:bsh-bsf:jar:2.0b4' in repository jboss (http://repository.jboss.com/maven2)
Downloading: http://repository.ops4j.org/maven2/org/beanshell/bsh-bsf/2.0b4/bsh-bsf-2.0b4.jar
Unable to find resource 'org.beanshell:bsh-bsf:jar:2.0b4' in repository ops4j (http://repository.ops4j.org/maven2)
Downloading: http://repository.sonatype.org/content/groups/public/org/beanshell/bsh-bsf/2.0b4/bsh-bsf-2.0b4.jar
2K downloaded (bsh-bsf-2.0b4.jar)
Downloading: http://repository.josso.org/org/beanshell/bsh-core/2.0b4/bsh-core-2.0b4.jar
Unable to find resource 'org.beanshell:bsh-core:jar:2.0b4' in repository josso-m2-repo (http://repository.josso.org) (repository.josso.org%29)
Downloading: http://svn.apache.org/repos/asf/servicemix/m2-repo/org/beanshell/bsh-core/2.0b4/bsh-core-2.0b4.jar
Unable to find resource 'org.beanshell:bsh-core:jar:2.0b4' in repository apach-servicemix (http://svn.apache.org/repos/asf/servicemix/m2-repo)
Downloading: http://repository.codehaus.org/org/beanshell/bsh-core/2.0b4/bsh-core-2.0b4.jar
Unable to find resource 'org.beanshell:bsh-core:jar:2.0b4' in repository codehaus (http://repository.codehaus.org) (repository.codehaus.org%29)
Downloading: http://download.java.net/maven/1/org.beanshell/jars/bsh-core-2.0b4.jar
110K downloaded (bsf-2.4.0.jar)
Unable to find resource 'org.beanshell:bsh-core:jar:2.0b4' in repository java.net (http://download.java.net/maven/1)
Downloading: http://repository.jboss.com/maven2/org/beanshell/bsh-core/2.0b4/bsh-core-2.0b4.jar
Unable to find resource 'org.beanshell:bsh-core:jar:2.0b4' in repository jboss (http://repository.jboss.com/maven2)
Downloading: http://repository.ops4j.org/maven2/org/beanshell/bsh-core/2.0b4/bsh-core-2.0b4.jar
Unable to find resource 'org.beanshell:bsh-core:jar:2.0b4' in repository ops4j (http://repository.ops4j.org/maven2)
Downloading: http://repository.sonatype.org/content/groups/public/org/beanshell/bsh-core/2.0b4/bsh-core-2.0b4.jar
140K downloaded (bsh-core-2.0b4.jar)
No sources to compile
Using platform encoding (Cp1252 actually) to copy filtered resources, i.e. build is platform dependent!
skip non existing resourceDirectory C:\Users\richarn\Documents\Source\zodsso\src\test\resources
No sources to compile
No tests to run.
Downloading: http://repo1.maven.org/maven2/org/apache/maven/maven-archiver/2.4/maven-archiver-2.4.pom
Downloading: http://repository.josso.org/org/codehaus/plexus/plexus-archiver/1.0-alpha-11/plexus-archiver-1.0-alpha-11.pom
Unable to find resource 'org.codehaus.plexus:plexus-archiver:pom:1.0-alpha-11' in repository josso-m2-repo (http://repository.josso.org) (repository.josso.org%29)
Downloading: http://repo1.maven.org/maven2/org/codehaus/plexus/plexus-archiver/1.0-alpha-11/plexus-archiver-1.0-alpha-11.pom
Downloading: http://repository.josso.org/org/codehaus/plexus/plexus-io/1.0-alpha-3/plexus-io-1.0-alpha-3.pom
Unable to find resource 'org.codehaus.plexus:plexus-io:pom:1.0-alpha-3' in repository josso-m2-repo (http://repository.josso.org) (repository.josso.org%29)
Downloading: http://repo1.maven.org/maven2/org/codehaus/plexus/plexus-io/1.0-alpha-3/plexus-io-1.0-alpha-3.pom
Downloading: http://repo1.maven.org/maven2/com/thoughtworks/xstream/xstream/1.3.1/xstream-1.3.1.pom
Downloading: http://repo1.maven.org/maven2/com/thoughtworks/xstream/xstream-parent/1.3.1/xstream-parent-1.3.1.pom
Downloading: http://repository.josso.org/xpp3/xpp3_min/1.1.4c/xpp3_min-1.1.4c.pom
Unable to find resource 'xpp3:xpp3_min:pom:1.1.4c' in repository josso-m2-repo (http://repository.josso.org) (repository.josso.org%29)
Downloading: http://repo1.maven.org/maven2/xpp3/xpp3_min/1.1.4c/xpp3_min-1.1.4c.pom
Downloading: http://repository.josso.org/xpp3/xpp3_min/1.1.4c/xpp3_min-1.1.4c.jar
Downloading: http://repo1.maven.org/maven2/com/thoughtworks/xstream/xstream/1.3.1/xstream-1.3.1.jar
Downloading: http://repo1.maven.org/maven2/org/apache/maven/maven-archiver/2.4/maven-archiver-2.4.jar
Unable to find resource 'xpp3:xpp3_min🫙1.1.4c' in repository josso-m2-repo (http://repository.josso.org) (repository.josso.org%29)
Downloading: http://repo1.maven.org/maven2/xpp3/xpp3_min/1.1.4c/xpp3_min-1.1.4c.jar
Packaging webapp
Assembling webapp in
Processing war project
Copying webapp resources
Webapp assembled in
Building war: C:\Users\richarn\Documents\Source\zodsso\target\zodsso-0.0.1-SNAPSHOT.war
Installing C:\Users\richarn\Documents\Source\zodsso\target\zodsso-0.0.1-SNAPSHOT.war to C:\Users\richarn\.m2\repository\com\test\zods
so\0.0.1-SNAPSHOT\zodsso-0.0.1-SNAPSHOT.war
BUILD SUCCESSFUL
Total time: 49 seconds
Finished at: Fri Oct 01 18:22:05 BST 2010
Final Memory: 35M/222M
I did try to plough on, but the gateway install fails with the following:
josso> gateway install -target c:/jboss-4.2.3.GA -platform jb42 -copy-configuration false -source mvn:com.test/zodsso/0.0.1-SNAPSHOT/war
Deploying JBoss AS 4.2.x JOSSO Gateway v.1.8.2
Verifying Target JBoss AS 4.2.x
JBoss AS 4.2.x Directory Layout
JBossHome
Backing up JOSSO Gateway configuration
Install JOSSO Gateway Configuration
Backup and remove existing configuration files
Deploy JOSSO Gateway Application
Unjar Could not copy "jar:file:///C:/Users/richarn/.m2/repository/com/test/zodsso/0.0.1-SNAPSHOT/zodsso-0.0.1-SNAPSHOT.war!/signon/loginResult.jsp" to "file:///c:/jboss-4.2.3.GA/server/default/deploy/josso.war/signon/loginResult.jsp".
JBoss AS 4.2.x JOSSO Gateway v.1.8.2
Overall Installation Successful!
Congratulations! You've successfully installed the gateway.
Now Follow the JOSSO Gateway Configuration guide and setup JOSSO as needed
Even though it tells me it's successful, when I have a look at the deployment, the only file that made it was the file it says it failed to copy (loginResult.jsp). I've re-run it a couple of times just to make sure that that file (and the josso.war folder itself) did not exist beforehand.
Great product (I'm using 1.5 at the moment) - just having some problems with this install :(
Hoping someone can help :)
Thanks,
Neil