Picketlink SVN: r1533 - in console/trunk/gui/src/main/java/org/picketlink/as/console: client/shared/subsys/model and 2 other directories.
by picketlink-commits@lists.jboss.org
Author: pcraveiro
Date: 2012-03-19 19:53:07 -0400 (Mon, 19 Mar 2012)
New Revision: 1533
Added:
console/trunk/gui/src/main/java/org/picketlink/as/console/client/shared/subsys/model/IdentityProvider.java
console/trunk/gui/src/main/java/org/picketlink/as/console/client/shared/subsys/model/ServiceProvider.java
console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/AbstractFederationDetails.java
console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/AbstractModelElementTable.java
console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/EditableFederationDetails.java
console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/IdentityProviderDetails.java
console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/NewFederationWizard.java
console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/NewFederationWizardStep1.java
console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/ServiceProviderDetails.java
console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/ServiceProviderTable.java
Modified:
console/trunk/gui/src/main/java/org/picketlink/as/console/client/BeanFactory.java
console/trunk/gui/src/main/java/org/picketlink/as/console/client/ItemMenuText.java
console/trunk/gui/src/main/java/org/picketlink/as/console/client/shared/subsys/model/Federation.java
console/trunk/gui/src/main/java/org/picketlink/as/console/client/shared/subsys/model/FederationStore.java
console/trunk/gui/src/main/java/org/picketlink/as/console/client/shared/subsys/model/FederationStoreImpl.java
console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/FederationDetails.java
console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/FederationEditor.java
console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/FederationPresenter.java
console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/FederationTable.java
console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/FederationView.java
console/trunk/gui/src/main/java/org/picketlink/as/console/rebind/extension/PicketLinkApplicationMetaDataGenerator.java
Log:
Service Provider support.
Modified: console/trunk/gui/src/main/java/org/picketlink/as/console/client/BeanFactory.java
===================================================================
--- console/trunk/gui/src/main/java/org/picketlink/as/console/client/BeanFactory.java 2012-03-19 20:47:37 UTC (rev 1532)
+++ console/trunk/gui/src/main/java/org/picketlink/as/console/client/BeanFactory.java 2012-03-19 23:53:07 UTC (rev 1533)
@@ -23,6 +23,8 @@
package org.picketlink.as.console.client;
import org.picketlink.as.console.client.shared.subsys.model.Federation;
+import org.picketlink.as.console.client.shared.subsys.model.IdentityProvider;
+import org.picketlink.as.console.client.shared.subsys.model.ServiceProvider;
import com.google.gwt.autobean.shared.AutoBean;
@@ -32,9 +34,13 @@
* bean definitions from the AS7 Console.</p>
*
* @author Pedro Silva
- * @sice Mar 13, 2012
+ * @since Mar 13, 2012
*/
public interface BeanFactory extends org.jboss.as.console.client.shared.BeanFactory {
AutoBean<Federation> federation();
+
+ AutoBean<IdentityProvider> identityProvider();
+
+ AutoBean<ServiceProvider> serviceProvider();
}
Modified: console/trunk/gui/src/main/java/org/picketlink/as/console/client/ItemMenuText.java
===================================================================
--- console/trunk/gui/src/main/java/org/picketlink/as/console/client/ItemMenuText.java 2012-03-19 20:47:37 UTC (rev 1532)
+++ console/trunk/gui/src/main/java/org/picketlink/as/console/client/ItemMenuText.java 2012-03-19 23:53:07 UTC (rev 1533)
@@ -26,7 +26,7 @@
* Constants for the names of the menu items of the PicketLink profile.
*
* @author Pedro Silva
- * @sice Mar 14, 2012
+ * @since Mar 14, 2012
*/
public interface ItemMenuText {
Modified: console/trunk/gui/src/main/java/org/picketlink/as/console/client/shared/subsys/model/Federation.java
===================================================================
--- console/trunk/gui/src/main/java/org/picketlink/as/console/client/shared/subsys/model/Federation.java 2012-03-19 20:47:37 UTC (rev 1532)
+++ console/trunk/gui/src/main/java/org/picketlink/as/console/client/shared/subsys/model/Federation.java 2012-03-19 23:53:07 UTC (rev 1533)
@@ -30,7 +30,7 @@
* <p>This interface also defines the address to be used when using the AS7 management API.</p>
*
* @author Pedro Silva
- * @sice Mar 14, 2012
+ * @since Mar 14, 2012
*/
@Address("/subsystem=picketlink/federation={0}")
public interface Federation {
Modified: console/trunk/gui/src/main/java/org/picketlink/as/console/client/shared/subsys/model/FederationStore.java
===================================================================
--- console/trunk/gui/src/main/java/org/picketlink/as/console/client/shared/subsys/model/FederationStore.java 2012-03-19 20:47:37 UTC (rev 1532)
+++ console/trunk/gui/src/main/java/org/picketlink/as/console/client/shared/subsys/model/FederationStore.java 2012-03-19 23:53:07 UTC (rev 1533)
@@ -24,13 +24,15 @@
import java.util.List;
+import org.jboss.as.console.client.domain.model.SimpleCallback;
+
import com.google.gwt.user.client.rpc.AsyncCallback;
/**
* <p>This interface defines the methods that can be used to manipulate the {@link Federation} model.</p>
*
* @author Pedro Silva
- * @sice Mar 14, 2012
+ * @since Mar 14, 2012
*/
public interface FederationStore {
@@ -41,4 +43,20 @@
*/
void loadFederations(AsyncCallback<List<Federation>> callback);
+ /**
+ * <p>
+ * Loads the identity providers configurations given a federation instance.
+ * </p>
+ *
+ * @param federation
+ * @param callback
+ */
+ void loadIdentityProviders(Federation federation, final AsyncCallback<List<IdentityProvider>> callback);
+
+ /**
+ * @param federation
+ * @param simpleCallback
+ */
+ void loadServiceProviders(Federation federation, SimpleCallback<List<ServiceProvider>> simpleCallback);
+
}
Modified: console/trunk/gui/src/main/java/org/picketlink/as/console/client/shared/subsys/model/FederationStoreImpl.java
===================================================================
--- console/trunk/gui/src/main/java/org/picketlink/as/console/client/shared/subsys/model/FederationStoreImpl.java 2012-03-19 20:47:37 UTC (rev 1532)
+++ console/trunk/gui/src/main/java/org/picketlink/as/console/client/shared/subsys/model/FederationStoreImpl.java 2012-03-19 23:53:07 UTC (rev 1533)
@@ -30,6 +30,7 @@
import javax.inject.Inject;
+import org.jboss.as.console.client.domain.model.SimpleCallback;
import org.jboss.as.console.client.shared.dispatch.DispatchAsync;
import org.jboss.as.console.client.shared.dispatch.impl.DMRAction;
import org.jboss.as.console.client.shared.dispatch.impl.DMRResponse;
@@ -48,16 +49,20 @@
* </p>
*
* @author Pedro Silva
- * @sice Mar 14, 2012
+ * @since Mar 14, 2012
*/
public class FederationStoreImpl implements FederationStore {
private final DispatchAsync dispatcher;
private final ApplicationMetaData metaData;
private final EntityAdapter<Federation> federationAdapter;
+ private final EntityAdapter<IdentityProvider> identityProviderAdapter;
+ private final EntityAdapter<ServiceProvider> serviceProviderAdapter;
private BeanMetaData federationMetaData;
private Baseadress baseadress;
+ private BeanMetaData identityProviderMetaData;
+ private BeanMetaData serviceProviderMetaData;
@Inject
public FederationStoreImpl(DispatchAsync dispatcher, ApplicationMetaData propertyMetaData, Baseadress baseadress) {
@@ -65,7 +70,11 @@
this.metaData = propertyMetaData;
this.baseadress = baseadress;
this.federationMetaData = metaData.getBeanMetaData(Federation.class);
+ this.identityProviderMetaData = metaData.getBeanMetaData(IdentityProvider.class);
+ this.serviceProviderMetaData = metaData.getBeanMetaData(ServiceProvider.class);
this.federationAdapter = new EntityAdapter<Federation>(Federation.class, propertyMetaData);
+ this.identityProviderAdapter = new EntityAdapter<IdentityProvider>(IdentityProvider.class, propertyMetaData);
+ this.serviceProviderAdapter = new EntityAdapter<ServiceProvider>(ServiceProvider.class, propertyMetaData);
}
/* (non-Javadoc)
@@ -96,5 +105,61 @@
}
});
}
+
+ public void loadIdentityProviders(Federation federation, final AsyncCallback<List<IdentityProvider>> callback) {
+ AddressBinding address = this.identityProviderMetaData.getAddress();
+
+ ModelNode operation = address.asSubresource(federation.getAlias());
+ operation.get(OP).set(READ_CHILDREN_RESOURCES_OPERATION);
+ dispatcher.execute(new DMRAction(operation), new AsyncCallback<DMRResponse>() {
+ @Override
+ public void onFailure(Throwable caught) {
+ callback.onFailure(caught);
+ }
+
+ @Override
+ public void onSuccess(DMRResponse result) {
+ ModelNode response = result.get();
+
+ if (response.isFailure()) {
+ callback.onFailure(new RuntimeException(response.getFailureDescription()));
+ } else {
+ List<IdentityProvider> datasources = identityProviderAdapter.fromDMRList(response.get(RESULT).asList());
+ callback.onSuccess(datasources);
+ }
+ }
+ });
+ }
+
+ /* (non-Javadoc)
+ * @see org.picketlink.as.console.client.shared.subsys.model.FederationStore#loadServiceProviders(org.picketlink.as.console.client.shared.subsys.model.Federation, org.jboss.as.console.client.domain.model.SimpleCallback)
+ */
+ @Override
+ public void loadServiceProviders(Federation federation, final SimpleCallback<List<ServiceProvider>> callback) {
+ AddressBinding address = this.serviceProviderMetaData.getAddress();
+
+ ModelNode operation = address.asSubresource(federation.getAlias());
+ operation.get(OP).set(READ_CHILDREN_RESOURCES_OPERATION);
+
+ dispatcher.execute(new DMRAction(operation), new AsyncCallback<DMRResponse>() {
+ @Override
+ public void onFailure(Throwable caught) {
+ callback.onFailure(caught);
+ }
+
+ @Override
+ public void onSuccess(DMRResponse result) {
+ ModelNode response = result.get();
+
+ if (response.isFailure()) {
+ callback.onFailure(new RuntimeException(response.getFailureDescription()));
+ } else {
+ List<ServiceProvider> datasources = serviceProviderAdapter.fromDMRList(response.get(RESULT).asList());
+ callback.onSuccess(datasources);
+ }
+ }
+ });
+ }
+
}
Added: console/trunk/gui/src/main/java/org/picketlink/as/console/client/shared/subsys/model/IdentityProvider.java
===================================================================
--- console/trunk/gui/src/main/java/org/picketlink/as/console/client/shared/subsys/model/IdentityProvider.java (rev 0)
+++ console/trunk/gui/src/main/java/org/picketlink/as/console/client/shared/subsys/model/IdentityProvider.java 2012-03-19 23:53:07 UTC (rev 1533)
@@ -0,0 +1,54 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2012, Red Hat, Inc., and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+
+package org.picketlink.as.console.client.shared.subsys.model;
+
+import org.jboss.as.console.client.widgets.forms.Address;
+import org.jboss.as.console.client.widgets.forms.Binding;
+
+/**
+ * <p>Federation bean definition.</p>
+ * <p>This interface also defines the address to be used when using the AS7 management API.</p>
+ *
+ * @author Pedro Silva
+ * @since Mar 14, 2012
+ */
+@Address("/subsystem=picketlink/federation={0}/identity-provider={1}")
+public interface IdentityProvider {
+
+ @Binding(key = true)
+ String getAlias();
+ void setAlias(String alias);
+
+ @Binding (detypedName="url")
+ String getUrl();
+ void setUrl(String url);
+
+ @Binding (detypedName="signOutgoingMessages")
+ String getSignOutgoingMessages();
+ void setSignOutgoingMessages(String url);
+
+ @Binding (detypedName="ignoreIncomingSignatures")
+ String getIgnoreIncomingSignatures();
+ void setIgnoreIncomingSignatures(String url);
+
+}
Added: console/trunk/gui/src/main/java/org/picketlink/as/console/client/shared/subsys/model/ServiceProvider.java
===================================================================
--- console/trunk/gui/src/main/java/org/picketlink/as/console/client/shared/subsys/model/ServiceProvider.java (rev 0)
+++ console/trunk/gui/src/main/java/org/picketlink/as/console/client/shared/subsys/model/ServiceProvider.java 2012-03-19 23:53:07 UTC (rev 1533)
@@ -0,0 +1,46 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2012, Red Hat, Inc., and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+
+package org.picketlink.as.console.client.shared.subsys.model;
+
+import org.jboss.as.console.client.widgets.forms.Address;
+import org.jboss.as.console.client.widgets.forms.Binding;
+
+/**
+ * <p>Federation bean definition.</p>
+ * <p>This interface also defines the address to be used when using the AS7 management API.</p>
+ *
+ * @author Pedro Silva
+ * @since Mar 14, 2012
+ */
+@Address("/subsystem=picketlink/federation={0}/service-provider={0}")
+public interface ServiceProvider {
+
+ @Binding(key = true)
+ String getAlias();
+ void setAlias(String alias);
+
+ @Binding(key = true)
+ String getUrl();
+ void setUrl(String url);
+
+}
Added: console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/AbstractFederationDetails.java
===================================================================
--- console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/AbstractFederationDetails.java (rev 0)
+++ console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/AbstractFederationDetails.java 2012-03-19 23:53:07 UTC (rev 1533)
@@ -0,0 +1,101 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2012, Red Hat, Inc., and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+
+package org.picketlink.as.console.client.ui.federation;
+
+import java.util.List;
+
+import org.jboss.as.console.client.shared.help.FormHelpPanel;
+import org.jboss.as.console.client.shared.viewframework.builder.FormLayout;
+import org.jboss.ballroom.client.widgets.forms.Form;
+import org.jboss.ballroom.client.widgets.forms.FormItem;
+import org.jboss.dmr.client.ModelNode;
+import org.picketlink.as.console.client.shared.subsys.model.IdentityProvider;
+
+import com.google.gwt.user.client.ui.VerticalPanel;
+import com.google.gwt.user.client.ui.Widget;
+
+/**
+ * @author <a href="mailto:psilva@redhat.com">Pedro Silva</a>
+ * @since Mar 19, 2012
+ */
+public abstract class AbstractFederationDetails<T> {
+
+ private Form<T> form;
+ private IdentityProvider entityInstance;
+
+ public AbstractFederationDetails() {
+ this.form = new Form(getEntityClass());
+ this.form.setNumColumns(2);
+ }
+
+ /**
+ * @return
+ */
+ protected abstract Class<?> getEntityClass();
+
+ public Widget asWidget() {
+ VerticalPanel detailPanel = new VerticalPanel();
+ detailPanel.setStyleName("fill-layout-width");
+
+ List<FormItem<?>> formItems = getFormItems();
+
+ form.setFields(formItems.toArray(new FormItem<?>[formItems.size()]));
+
+ form.setEnabled(false);
+
+ Widget formWidget = form.asWidget();
+
+ final FormHelpPanel helpPanel = new FormHelpPanel(new FormHelpPanel.AddressCallback() {
+ @Override
+ public ModelNode getAddress() {
+ return getHelpModelAddress();
+ }
+
+ }, form);
+
+ detailPanel.add(formWidget);
+
+ return new FormLayout().setHelp(helpPanel).setForm(form).build();
+ }
+
+ protected abstract ModelNode getHelpModelAddress();
+
+ /**
+ * @return
+ */
+ protected abstract List<FormItem<?>> getFormItems();
+
+ /**
+ * @param entityInstance the entityInstance to set
+ */
+ public void setEntityInstance(IdentityProvider entityInstance) {
+ this.entityInstance = entityInstance;
+ }
+
+ /**
+ * @return the form
+ */
+ public Form<T> getForm() {
+ return this.form;
+ }
+}
Added: console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/AbstractModelElementTable.java
===================================================================
--- console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/AbstractModelElementTable.java (rev 0)
+++ console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/AbstractModelElementTable.java 2012-03-19 23:53:07 UTC (rev 1533)
@@ -0,0 +1,103 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2012, Red Hat, Inc., and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+
+package org.picketlink.as.console.client.ui.federation;
+
+import org.jboss.ballroom.client.widgets.tables.DefaultCellTable;
+import org.jboss.ballroom.client.widgets.tables.DefaultPager;
+
+import com.google.gwt.user.cellview.client.TextColumn;
+import com.google.gwt.user.client.ui.VerticalPanel;
+import com.google.gwt.user.client.ui.Widget;
+import com.google.gwt.view.client.ListDataProvider;
+import com.google.gwt.view.client.ProvidesKey;
+
+/**
+ * @author <a href="mailto:psilva@redhat.com">Pedro Silva</a>
+ * @since Mar 19, 2012
+ */
+public abstract class AbstractModelElementTable<T> {
+
+ private static final int PAGE_SIZE = 5;
+ private DefaultCellTable<T> dataTable;
+ private ListDataProvider<T> dataProvider;
+
+ Widget asWidget() {
+ VerticalPanel layout = new VerticalPanel();
+ layout.setStyleName("fill-layout-width");
+
+ layout.add(getCellTable());
+
+ DefaultPager pager = new DefaultPager();
+
+ pager.setDisplay(getCellTable());
+
+ layout.add(pager);
+
+ return layout;
+ }
+
+ /**
+ * Returns a instance of {@link DefaultCellTable} used to list federation instances.
+ *
+ * @return
+ */
+ public DefaultCellTable<T> getCellTable() {
+ if (this.dataTable == null) {
+ this.dataTable = new DefaultCellTable<T>(
+ PAGE_SIZE,
+ new ProvidesKey<T>() {
+ @Override
+ public Object getKey(T item) {
+ return doGetKey(item);
+ }
+ });
+
+ doAddConlumns(this.dataTable);
+
+ }
+
+ return this.dataTable;
+ }
+
+ protected abstract Object doGetKey(T item);
+
+ /**
+ * @param federationTable2
+ */
+ protected abstract void doAddConlumns(DefaultCellTable<T> federationTable);
+
+ /**
+ * Returns a instance of {@link ListDataProvider} to be used to manipulate table items.
+ *
+ * @return
+ */
+ public ListDataProvider<T> getDataProvider() {
+ if (this.dataProvider == null) {
+ this.dataProvider = new ListDataProvider<T>();
+ this.dataProvider.addDataDisplay(getCellTable());
+ }
+
+ return this.dataProvider;
+ }
+
+}
Added: console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/EditableFederationDetails.java
===================================================================
--- console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/EditableFederationDetails.java (rev 0)
+++ console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/EditableFederationDetails.java 2012-03-19 23:53:07 UTC (rev 1533)
@@ -0,0 +1,119 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2012, Red Hat, Inc., and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+
+package org.picketlink.as.console.client.ui.federation;
+
+import java.util.Map;
+
+import org.jboss.as.console.client.shared.help.FormHelpPanel;
+import org.jboss.as.console.client.shared.subsys.Baseadress;
+import org.jboss.as.console.client.shared.viewframework.builder.FormLayout;
+import org.jboss.as.console.client.widgets.forms.FormToolStrip;
+import org.jboss.ballroom.client.widgets.forms.Form;
+import org.jboss.ballroom.client.widgets.forms.TextItem;
+import org.jboss.ballroom.client.widgets.tools.ToolButton;
+import org.jboss.dmr.client.ModelNode;
+import org.picketlink.as.console.client.shared.subsys.model.Federation;
+
+import com.google.gwt.user.cellview.client.CellTable;
+import com.google.gwt.user.client.ui.VerticalPanel;
+import com.google.gwt.user.client.ui.Widget;
+
+/**
+ * This class defines the widget to be displayed when a federation instance is selected.
+ *
+ * @author Pedro Silva
+ * @since Mar 14, 2012
+ */
+public class EditableFederationDetails {
+
+ private Form<Federation> form;
+ private FederationPresenter presenter;
+ private ToolButton disableBtn;
+
+ public EditableFederationDetails(FederationPresenter presenter) {
+ this.presenter = presenter;
+ form = new Form(Federation.class);
+ form.setNumColumns(2);
+ }
+
+ public Widget asWidget() {
+ VerticalPanel detailPanel = new VerticalPanel();
+ detailPanel.setStyleName("fill-layout-width");
+
+ final TextItem aliasItem = new TextItem("alias", "Alias");
+
+ form.setFields(aliasItem);
+
+ form.setEnabled(false);
+
+ Widget formWidget = form.asWidget();
+
+ FormToolStrip<Federation> toolStrip = new FormToolStrip<Federation>(
+ form,
+ new FormToolStrip.FormCallback<Federation>() {
+ @Override
+ public void onSave(Map<String, Object> changeset) {
+ }
+
+ @Override
+ public void onDelete(Federation entity) {
+
+ }
+ });
+
+
+
+ toolStrip.providesDeleteOp(false);
+
+ detailPanel.add(toolStrip.asWidget());
+
+ final FormHelpPanel helpPanel = new FormHelpPanel(new FormHelpPanel.AddressCallback() {
+ @Override
+ public ModelNode getAddress() {
+ ModelNode address = Baseadress.get();
+ address.add("subsystem", "picketlink");
+ address.add("federation", "*");
+ return address;
+ }
+ }, form);
+
+ detailPanel.add(formWidget);
+
+ FormLayout layout = new FormLayout().setHelp(helpPanel).setForm(form).setSetTools(toolStrip);
+
+ return layout.build();
+ }
+
+ public void bind(CellTable<Federation> dataSourceTable) {
+ form.bind(dataSourceTable);
+ }
+
+ public void setEnabled(boolean b) {
+ form.setEnabled(b);
+ }
+
+ public Federation getCurrentSelection() {
+ return form.getEditedEntity();
+ }
+
+}
Modified: console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/FederationDetails.java
===================================================================
--- console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/FederationDetails.java 2012-03-19 20:47:37 UTC (rev 1532)
+++ console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/FederationDetails.java 2012-03-19 23:53:07 UTC (rev 1533)
@@ -22,12 +22,9 @@
package org.picketlink.as.console.client.ui.federation;
-import java.util.Map;
-
import org.jboss.as.console.client.shared.help.FormHelpPanel;
import org.jboss.as.console.client.shared.subsys.Baseadress;
-import org.jboss.as.console.client.shared.subsys.jca.model.DataSource;
-import org.jboss.as.console.client.widgets.forms.FormToolStrip;
+import org.jboss.as.console.client.shared.viewframework.builder.FormLayout;
import org.jboss.ballroom.client.widgets.forms.Form;
import org.jboss.ballroom.client.widgets.forms.TextItem;
import org.jboss.ballroom.client.widgets.tools.ToolButton;
@@ -35,15 +32,16 @@
import org.picketlink.as.console.client.shared.subsys.model.Federation;
import com.google.gwt.user.cellview.client.CellTable;
-import com.google.gwt.user.client.ui.ScrollPanel;
import com.google.gwt.user.client.ui.VerticalPanel;
import com.google.gwt.user.client.ui.Widget;
/**
- * This class defines the widget to be displayed when a federation instance is selected.
+ * <p>
+ * This class defines the widget to be displayed to show the general informations about a selected federation instance.
+ * </p>
*
- * @author Pedro Silva
- * @sice Mar 14, 2012
+ * @author <a href="mailto:psilva@redhat.com">Pedro Silva</a>
+ * @since Mar 14, 2012
*/
public class FederationDetails {
@@ -53,72 +51,35 @@
public FederationDetails(FederationPresenter presenter) {
this.presenter = presenter;
- form = new Form(DataSource.class);
+ form = new Form(Federation.class);
form.setNumColumns(2);
-
- /*form.addEditListener(new EditListener<DataSource>() {
- @Override
- public void editingBean(DataSource bean) {
- String nextState = bean.isEnabled() ? Console.CONSTANTS.common_label_disable():Console.CONSTANTS.common_label_enable();
- disableBtn.setText(nextState);
- }
- });*/
}
public Widget asWidget() {
VerticalPanel detailPanel = new VerticalPanel();
detailPanel.setStyleName("fill-layout-width");
- FormToolStrip<Federation> toolStrip = new FormToolStrip<Federation>(
- form,
- new FormToolStrip.FormCallback<Federation>() {
- @Override
- public void onSave(Map<String, Object> changeset) {
- presenter.onSaveFederationDetails(form.getEditedEntity().getAlias(), form.getChangedValues());
- }
-
- @Override
- public void onDelete(Federation entity) {
-
- }
- });
-
-
- toolStrip.providesDeleteOp(false);
-
- /* toolStrip.addToolButtonRight(disableBtn);
-
- // not available in domain mode
- if(Console.MODULES.getBootstrapContext().isStandalone())
- toolStrip.addToolButtonRight(verifyBtn); */
-
- detailPanel.add(toolStrip.asWidget());
-
final TextItem aliasItem = new TextItem("alias", "Alias");
form.setFields(aliasItem);
-
+
+ form.setEnabled(false);
+
Widget formWidget = form.asWidget();
+
+ final FormHelpPanel helpPanel = new FormHelpPanel(new FormHelpPanel.AddressCallback() {
+ @Override
+ public ModelNode getAddress() {
+ ModelNode address = Baseadress.get();
+ address.add("subsystem", "picketlink");
+ address.add("federation", "*");
+ return address;
+ }
+ }, form);
- final FormHelpPanel helpPanel = new FormHelpPanel(
- new FormHelpPanel.AddressCallback() {
- @Override
- public ModelNode getAddress() {
- ModelNode address = Baseadress.get();
- address.add("subsystem", "picketlink");
- address.add("federation", "*");
- return address;
- }
- }, form
- );
-
- detailPanel.add(helpPanel.asWidget());
-
detailPanel.add(formWidget);
- ScrollPanel scroll = new ScrollPanel(detailPanel);
-
- return scroll;
+ return new FormLayout().setHelp(helpPanel).setForm(form).build();
}
public void bind(CellTable<Federation> dataSourceTable) {
@@ -132,5 +93,5 @@
public Federation getCurrentSelection() {
return form.getEditedEntity();
}
-
+
}
Modified: console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/FederationEditor.java
===================================================================
--- console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/FederationEditor.java 2012-03-19 20:47:37 UTC (rev 1532)
+++ console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/FederationEditor.java 2012-03-19 23:53:07 UTC (rev 1533)
@@ -23,19 +23,21 @@
package org.picketlink.as.console.client.ui.federation;
import java.util.List;
-import java.util.Map;
import org.jboss.as.console.client.Console;
-import org.jboss.as.console.client.shared.subsys.jca.model.DataSource;
+import org.jboss.as.console.client.shared.subsys.jca.DataSourcePresenter;
+import org.jboss.as.console.client.shared.subsys.jca.wizard.NewDatasourceWizard;
import org.jboss.as.console.client.widgets.ContentDescription;
-import org.jboss.as.console.client.widgets.forms.FormToolStrip;
import org.jboss.ballroom.client.widgets.ContentGroupLabel;
import org.jboss.ballroom.client.widgets.ContentHeaderLabel;
-import org.jboss.ballroom.client.widgets.tables.DefaultCellTable;
import org.jboss.ballroom.client.widgets.tools.ToolButton;
import org.jboss.ballroom.client.widgets.tools.ToolStrip;
+import org.jboss.ballroom.client.widgets.window.DefaultWindow;
import org.jboss.ballroom.client.widgets.window.Feedback;
+import org.picketlink.as.console.client.BeanFactory;
import org.picketlink.as.console.client.shared.subsys.model.Federation;
+import org.picketlink.as.console.client.shared.subsys.model.IdentityProvider;
+import org.picketlink.as.console.client.shared.subsys.model.ServiceProvider;
import com.google.gwt.dom.client.Style;
import com.google.gwt.event.dom.client.ClickEvent;
@@ -50,144 +52,282 @@
import com.google.gwt.view.client.SingleSelectionModel;
/**
- * <p>This class defines the widget to be displayed when the Federation option is selected from the menu.</p>
- * <p>It defines the layout for the federation configuration main page.</p>
+ * <p>
+ * This class defines the widget to be displayed when the Federation option is selected from the menu.
+ * </p>
+ * <p>
+ * It defines the layout for the federation configuration main page.
+ * </p>
*
- * @author Pedro Silva
- * @sice Mar 14, 2012
+ * @author <a href="mailto:psilva@redhat.com">Pedro Silva</a>
+ * @since Mar 14, 2012
*/
public class FederationEditor {
+ /**
+ *
+ */
+ private static final String EDITOR_DESCRIPTION = "The PicketLink Federation provides the configurations for IDPs and SPs given a federation configuration.";
+
+ private static final String EDITOR_LABEL_TEXT = "Federation";
+
private FederationPresenter presenter;
private FederationTable federationTable;
- private FederationDetails details;
+ private FederationDetails federationDetails;
- public FederationEditor(FederationPresenter presenter) {
+ private IdentityProviderDetails identityProviderDetails;
+
+ private ServiceProviderDetails serviceProviderDetails;
+
+ private DefaultWindow window;
+
+ private BeanFactory beanFactory;
+
+ public FederationEditor(FederationPresenter presenter, BeanFactory beanFactory) {
this.presenter = presenter;
+ this.beanFactory = beanFactory;
}
public Widget asWidget() {
-
LayoutPanel layout = new LayoutPanel();
- ToolStrip topLevelTools = new ToolStrip();
- topLevelTools.addToolButtonRight(new ToolButton(Console.CONSTANTS.common_label_add(), new ClickHandler() {
-
- @Override
- public void onClick(ClickEvent event) {
- //TODO: launch new federation wizard
- }
- }));
-
-
- ClickHandler clickHandler = new ClickHandler() {
- @Override
- public void onClick(ClickEvent event) {
-
- final Federation currentSelection = details.getCurrentSelection();
- if(currentSelection!=null)
- {
- Feedback.confirm(
- Console.MESSAGES.deleteTitle("Federation"),
- Console.MESSAGES.deleteConfirm("Federation " + currentSelection.getAlias()),
- new Feedback.ConfirmationHandler() {
- @Override
- public void onConfirmation(boolean isConfirmed) {
- if (isConfirmed) {
- presenter.onDelete(currentSelection);
- }
- }
- });
- }
- }
- };
- ToolButton deleteBtn = new ToolButton(Console.CONSTANTS.common_label_delete());
- deleteBtn.addClickHandler(clickHandler);
- topLevelTools.addToolButtonRight(deleteBtn);
-
- // ----
-
VerticalPanel vpanel = new VerticalPanel();
+
vpanel.setStyleName("rhs-content-panel");
ScrollPanel scroll = new ScrollPanel(vpanel);
+
layout.add(scroll);
layout.setWidgetTopHeight(scroll, 0, Style.Unit.PX, 100, Style.Unit.PCT);
- // ---
+ vpanel.add(new ContentHeaderLabel(EDITOR_LABEL_TEXT));
+ vpanel.add(new ContentDescription(EDITOR_DESCRIPTION));
- vpanel.add(new ContentHeaderLabel("Federation"));
- vpanel.add(new ContentDescription("The PicketLink Federation provides the configurations for IDPs and SPs given a federation configuration."));
+ addTableWidgets(vpanel);
+ addSelectionWidgets(vpanel);
- federationTable = new FederationTable();
+ return layout;
+ }
+ /**
+ * <p>
+ * Adds the widgets to be displayed when a item is selected from the table.
+ * </p>
+ *
+ * @param vpanel
+ * @return
+ */
+ private void addSelectionWidgets(VerticalPanel vpanel) {
+ vpanel.add(new ContentGroupLabel(Console.CONSTANTS.common_label_selection()));
+
+ TabPanel bottomPanel = new TabPanel();
- vpanel.add(new ContentGroupLabel(Console.MESSAGES.available("Federations")));
- vpanel.add(topLevelTools.asWidget());
- vpanel.add(federationTable.asWidget());
+ bottomPanel.setStyleName("default-tabpanel");
+ bottomPanel.add(getFederationDetails().asWidget(), "General");
+ bottomPanel.add(getIdentityProvidersDetails().asWidget(), "Identity Provider");
+ bottomPanel.add(getServiceProviderDetails().asWidget(), "Service Providers");
+ bottomPanel.add(new SimplePanel(), "Digital Certificates");
+ bottomPanel.selectTab(0);
+
+ addSelectionChangeHandler();
- // -----------
- details = new FederationDetails(presenter);
- details.bind(federationTable.getCellTable());
+ vpanel.add(bottomPanel);
+ }
- SingleSelectionModel<Federation> selectionModel =
- (SingleSelectionModel<Federation>)federationTable.getCellTable().getSelectionModel();
+ /**
+ * @return
+ */
+ private ServiceProviderDetails getServiceProviderDetails() {
+ if (this.serviceProviderDetails == null) {
+ this.serviceProviderDetails = new ServiceProviderDetails();
+ }
- selectionModel.addSelectionChangeHandler(new SelectionChangeEvent.Handler () {
+ return this.serviceProviderDetails;
+ }
+
+ /**
+ * <p>
+ * Adds a {@link SelectionChangeEvent.Handler} to handle selection from the table.
+ * This method must be called after the <code>addSelectionWidgets</code>.
+ * </p>
+ */
+ private void addSelectionChangeHandler() {
+ SingleSelectionModel<Federation> selectionModel = (SingleSelectionModel<Federation>) this.getFederationTable()
+ .getCellTable().getSelectionModel();
+
+ selectionModel.addSelectionChangeHandler(new SelectionChangeEvent.Handler() {
@Override
public void onSelectionChange(SelectionChangeEvent event) {
- Federation selectedObject = ((SingleSelectionModel<Federation>) federationTable.getCellTable().getSelectionModel()).getSelectedObject();
- details.setEnabled(true);
+ getFederationDetails().setEnabled(false);
+ presenter.loadIdentityProvider(((SingleSelectionModel<Federation>) event.getSource()).getSelectedObject());
+ presenter.loadServiceProviders(((SingleSelectionModel<Federation>) event.getSource()).getSelectedObject());
}
});
+ }
- // -----------------
+ /**
+ * Adds the widgtes related with the table from which items can be selected, addes or removed.
+ *
+ * @param vpanel
+ */
+ private void addTableWidgets(VerticalPanel vpanel) {
+ vpanel.add(new ContentGroupLabel(Console.MESSAGES.available("Federations")));
+ vpanel.add(createTopLevelActions().asWidget());
+ vpanel.add(this.getFederationTable().asWidget());
+ }
- TabPanel bottomPanel = new TabPanel();
- bottomPanel.setStyleName("default-tabpanel");
+ /**
+ * @return
+ */
+ @SuppressWarnings("unchecked")
+ private FederationDetails getFederationDetails() {
+ if (this.federationDetails == null) {
+ this.federationDetails = new FederationDetails(this.presenter);
+ this.federationDetails.bind(getFederationTable().getCellTable());
+ }
- bottomPanel.add(details.asWidget(), "Attributes");
+ return this.federationDetails;
+ }
- // -----------------
+ /**
+ * @return
+ */
+ private IdentityProviderDetails getIdentityProvidersDetails() {
+ if (this.identityProviderDetails == null) {
+ this.identityProviderDetails = new IdentityProviderDetails(this.presenter);
+ }
- bottomPanel.add(new SimplePanel(), "Identity Provider");
- bottomPanel.add(new SimplePanel(), "Service Providers");
- bottomPanel.add(new SimplePanel(), "Digital Certificates");
+ return this.identityProviderDetails;
+ }
+
+ /**
+ * @return
+ */
+ private ToolStrip createTopLevelActions() {
+ ToolStrip topLevelTools = new ToolStrip();
+
+ topLevelTools.addToolButtonRight(createAddFederationButton());
+ topLevelTools.addToolButtonRight(createDeleteFederationButton());
- bottomPanel.selectTab(0);
+ return topLevelTools;
+ }
- // -----------------
+ /**
+ * <p>
+ * Creates a instance of {@link ToolButton} to add federation instances from the table.
+ * </p>
+ *
+ * @return
+ */
+ private ToolButton createAddFederationButton() {
+ return new ToolButton(Console.CONSTANTS.common_label_add(), new ClickHandler() {
- vpanel.add(new ContentGroupLabel(Console.CONSTANTS.common_label_selection()));
+ @Override
+ public void onClick(ClickEvent event) {
+ lunchNewFederationWizard();
+ }
+ });
+ }
- vpanel.add(bottomPanel);
+ private void lunchNewFederationWizard() {
+ window = new DefaultWindow(Console.MESSAGES.createTitle("Federation"));
+ window.setWidth(480);
+ window.setHeight(450);
- return layout;
+ window.setWidget(
+ new NewFederationWizard(this.presenter, this).asWidget()
+ );
+
+ window.setGlassEnabled(true);
+ window.center();
}
+ /**
+ * <p>
+ * Creates a instance of {@link ToolButton} to delete federation instances from the table.
+ * </p>
+ *
+ * @return
+ */
+ private ToolButton createDeleteFederationButton() {
+ ClickHandler clickHandler = new ClickHandler() {
+ @Override
+ public void onClick(ClickEvent event) {
- private Federation getCurrentSelection() {
- Federation ds = ((SingleSelectionModel<Federation>) federationTable.getCellTable().getSelectionModel()).getSelectedObject();
- return ds;
+ final Federation currentSelection = getFederationDetails().getCurrentSelection();
+
+ if (currentSelection != null) {
+ Feedback.confirm(Console.MESSAGES.deleteTitle(EDITOR_LABEL_TEXT),
+ Console.MESSAGES.deleteConfirm("Federation " + currentSelection.getAlias()),
+ new Feedback.ConfirmationHandler() {
+ @Override
+ public void onConfirmation(boolean isConfirmed) {
+ if (isConfirmed) {
+ presenter.onDelete(currentSelection);
+ }
+ }
+ });
+ }
+ }
+ };
+
+ ToolButton deleteBtn = new ToolButton(Console.CONSTANTS.common_label_delete());
+
+ deleteBtn.addClickHandler(clickHandler);
+
+ return deleteBtn;
}
- public void updateDataSources(List<Federation> datasources) {
+ /**
+ * Updates the table wich the federation instances are listed.
+ *
+ * @param datasources
+ */
+ public void updateFederations(List<Federation> datasources) {
+ getFederationTable().getDataProvider().setList(datasources);
+ getFederationTable().getCellTable().selectDefaultEntity();
+ }
- federationTable.getDataProvider().setList(datasources);
+ /**
+ * Returns a instance of the table to be used to show the federation instances.
+ *
+ * @return
+ */
+ private FederationTable getFederationTable() {
+ if (this.federationTable == null) {
+ this.federationTable = new FederationTable();
+ }
- final DefaultCellTable<Federation> cellTable = federationTable.getCellTable();
- cellTable.selectDefaultEntity();
+ return this.federationTable;
}
- public void setEnabled(boolean isEnabled) {
+ /**
+ * @param identityProviders
+ */
+ public void updateIdentityProviders(List<IdentityProvider> identityProviders) {
+ this.getIdentityProvidersDetails().updateIdentityProvider(identityProviders);
+ }
+ /**
+ * @param result
+ */
+ public void updateServiceProviders(List<ServiceProvider> result) {
+ this.getServiceProviderDetails().updateServiceProviders(result);
+ }
+ /**
+ *
+ */
+ public void closeDialogue() {
+ window.hide();
}
- public void enableDetails(boolean b) {
- details.setEnabled(b);
+ /**
+ * @return the beanFactory
+ */
+ public BeanFactory getBeanFactory() {
+ return this.beanFactory;
}
-
}
Modified: console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/FederationPresenter.java
===================================================================
--- console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/FederationPresenter.java 2012-03-19 20:47:37 UTC (rev 1532)
+++ console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/FederationPresenter.java 2012-03-19 23:53:07 UTC (rev 1533)
@@ -22,7 +22,6 @@
package org.picketlink.as.console.client.ui.federation;
import java.util.List;
-import java.util.Map;
import org.jboss.as.console.client.domain.model.SimpleCallback;
import org.jboss.as.console.client.shared.subsys.RevealStrategy;
@@ -31,6 +30,8 @@
import org.picketlink.as.console.client.NameTokens;
import org.picketlink.as.console.client.shared.subsys.model.Federation;
import org.picketlink.as.console.client.shared.subsys.model.FederationStore;
+import org.picketlink.as.console.client.shared.subsys.model.IdentityProvider;
+import org.picketlink.as.console.client.shared.subsys.model.ServiceProvider;
import com.google.gwt.core.client.Scheduler;
import com.google.gwt.event.shared.EventBus;
@@ -44,15 +45,37 @@
import com.gwtplatform.mvp.client.proxy.Proxy;
/**
- * @author Pedro Silva
+ * <p>
+ * The presenter for the PicketLink -> Federation menu item.
+ * </p>
+ *
+ * @author <a href="mailto:psilva@redhat.com">Pedro Silva</a>
* @since 03/01/2011
*/
public class FederationPresenter extends Presenter<FederationPresenter.MyView, FederationPresenter.MyProxy> {
public interface MyView extends View {
void setPresenter(FederationPresenter presenter);
+
+ /**
+ * <p>
+ * Updates the view with federations instances configured in the subsystem.
+ * </p>
+ * @param federations
+ */
+ void updateFederations(List<Federation> federations);
- void updateFederations(List<Federation> federations);
+ /**
+ * Updates the view with the informations about a identity provider.
+ *
+ * @param result
+ */
+ void updateIdentityProviders(List<IdentityProvider> result);
+
+ /**
+ * @param result
+ */
+ void updateServiceProviders(List<ServiceProvider> result);
}
@ProxyCodeSplit
@@ -60,22 +83,22 @@
public interface MyProxy extends Proxy<FederationPresenter>, Place {
}
- private final PlaceManager placeManager;
private final RevealStrategy revealStrategy;
- private final BeanFactory beanFactory;
private FederationStore federationStore;
+ private BeanFactory beanFactory;
@Inject
public FederationPresenter(final EventBus eventBus, BeanFactory beanFactory, final MyView view, final MyProxy proxy,
final PlaceManager placeManager, RevealStrategy revealStrategy, FederationStore federationStore) {
super(eventBus, view, proxy);
-
- this.placeManager = placeManager;
this.revealStrategy = revealStrategy;
+ this.federationStore = federationStore;
this.beanFactory = beanFactory;
- this.federationStore = federationStore;
}
+ /* (non-Javadoc)
+ * @see com.gwtplatform.mvp.client.PresenterWidget#onReveal()
+ */
@Override
protected void onReveal() {
super.onReveal();
@@ -87,19 +110,38 @@
});
}
+ /* (non-Javadoc)
+ * @see com.gwtplatform.mvp.client.Presenter#revealInParent()
+ */
@Override
protected void revealInParent() {
this.revealStrategy.revealInParent(this);
}
+ /* (non-Javadoc)
+ * @see com.gwtplatform.mvp.client.HandlerContainerImpl#onBind()
+ */
@Override
protected void onBind() {
super.onBind();
+ getView().setPresenter(this);
}
+ /* (non-Javadoc)
+ * @see com.gwtplatform.mvp.client.PresenterWidget#onReset()
+ */
@Override
protected void onReset() {
super.onReset();
+ loadFederations();
+ }
+
+ /**
+ * <p>
+ * Loads the federation instances from the subsystem.
+ * </p>
+ */
+ private void loadFederations() {
this.federationStore.loadFederations(new SimpleCallback<List<Federation>>() {
@Override
public void onSuccess(List<Federation> result) {
@@ -107,15 +149,34 @@
}
});
}
-
+
/**
- * @param alias
- * @param changedValues
+ * <p>
+ * Loads the federation instances from the subsystem.
+ * </p>
*/
- public void onSaveFederationDetails(String alias, Map<String, Object> changedValues) {
- // TODO: on save federation details
+ public void loadIdentityProvider(Federation federation) {
+ this.federationStore.loadIdentityProviders(federation, new SimpleCallback<List<IdentityProvider>>() {
+ @Override
+ public void onSuccess(List<IdentityProvider> result) {
+ getView().updateIdentityProviders(result);
+ }
+ });
}
+
+ /**
+ * @param federation
+ */
+ public void loadServiceProviders(Federation federation) {
+ this.federationStore.loadServiceProviders(federation, new SimpleCallback<List<ServiceProvider>>() {
+ @Override
+ public void onSuccess(List<ServiceProvider> result) {
+ getView().updateServiceProviders(result);
+ }
+ });
+ }
+
/**
* @param currentSelection
*/
@@ -123,4 +184,18 @@
// TODO: on delete federation
}
+ /**
+ * @param updatedEntity
+ */
+ public void onCreateFederation(Federation updatedEntity) {
+
+ }
+
+ /**
+ * @return
+ */
+ public BeanFactory getBeanFactory() {
+ return this.beanFactory;
+ }
+
}
Modified: console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/FederationTable.java
===================================================================
--- console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/FederationTable.java 2012-03-19 20:47:37 UTC (rev 1532)
+++ console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/FederationTable.java 2012-03-19 23:53:07 UTC (rev 1533)
@@ -23,43 +23,30 @@
package org.picketlink.as.console.client.ui.federation;
import org.jboss.ballroom.client.widgets.tables.DefaultCellTable;
-import org.jboss.ballroom.client.widgets.tables.DefaultPager;
import org.picketlink.as.console.client.shared.subsys.model.Federation;
import com.google.gwt.user.cellview.client.TextColumn;
-import com.google.gwt.user.client.ui.VerticalPanel;
-import com.google.gwt.user.client.ui.Widget;
-import com.google.gwt.view.client.ListDataProvider;
-import com.google.gwt.view.client.ProvidesKey;
/**
* This class defines the widget to be displayed for the table of federations.
*
* @author Pedro Silva
- * @sice Mar 14, 2012
- */public class FederationTable {
+ * @since Mar 14, 2012
+ */public class FederationTable extends AbstractModelElementTable<Federation> {
- private static final int PAGE_SIZE = 5;
- private DefaultCellTable<Federation> federationTable;
- private ListDataProvider<Federation> dataProvider;
+ /* (non-Javadoc)
+ * @see org.picketlink.as.console.client.ui.federation.AbstractModelElementTable#doGetKey(java.lang.Object)
+ */
+ @Override
+ protected Object doGetKey(Federation item) {
+ return item.getAlias();
+ }
- Widget asWidget() {
-
- VerticalPanel layout = new VerticalPanel();
- layout.setStyleName("fill-layout-width");
-
- federationTable = new DefaultCellTable<Federation>(
- PAGE_SIZE,
- new ProvidesKey<Federation>() {
- @Override
- public Object getKey(Federation item) {
- return item.getAlias();
- }
- });
-
- dataProvider = new ListDataProvider<Federation>();
- dataProvider.addDataDisplay(federationTable);
-
+ /* (non-Javadoc)
+ * @see org.picketlink.as.console.client.ui.federation.AbstractModelElementTable#doAddConlumns(org.jboss.ballroom.client.widgets.tables.DefaultCellTable)
+ */
+ @Override
+ protected void doAddConlumns(DefaultCellTable<Federation> federationTable) {
TextColumn<Federation> aliasColumn = new TextColumn<Federation>() {
@Override
public String getValue(Federation record) {
@@ -67,25 +54,6 @@
}
};
- federationTable.addColumn(aliasColumn, "Name");
-
- layout.add(federationTable);
-
- // ---
- // http://code.google.com/p/google-web-toolkit/issues/detail?id=4988
-
- DefaultPager pager = new DefaultPager();
- pager.setDisplay(federationTable);
- layout.add(pager);
-
- return layout;
+ federationTable.addColumn(aliasColumn, "Name");
}
-
- public DefaultCellTable<Federation> getCellTable() {
- return federationTable;
- }
-
- public ListDataProvider<Federation> getDataProvider() {
- return dataProvider;
- }
}
Modified: console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/FederationView.java
===================================================================
--- console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/FederationView.java 2012-03-19 20:47:37 UTC (rev 1532)
+++ console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/FederationView.java 2012-03-19 23:53:07 UTC (rev 1533)
@@ -24,47 +24,73 @@
import java.util.List;
-import org.jboss.as.console.client.Console;
import org.jboss.as.console.client.core.SuspendableViewImpl;
import org.jboss.as.console.client.widgets.tabs.DefaultTabLayoutPanel;
import org.picketlink.as.console.client.shared.subsys.model.Federation;
+import org.picketlink.as.console.client.shared.subsys.model.IdentityProvider;
+import org.picketlink.as.console.client.shared.subsys.model.ServiceProvider;
import com.google.gwt.dom.client.Style;
import com.google.gwt.user.client.ui.Widget;
/**
- * @author pedroigor
- * @sice Mar 14, 2012
+ * <p>
+ * The view for the PicketLink -> Federation menu item.
+ * </p>
+ *
+ * @author <a href="mailto:psilva@redhat.com">Pedro Silva</a>
+ * @since Mar 14, 2012
*/
public class FederationView extends SuspendableViewImpl implements FederationPresenter.MyView {
private FederationPresenter presenter;
private FederationEditor federationEditor;
+ /* (non-Javadoc)
+ * @see org.jboss.as.console.client.core.SuspendableView#createWidget()
+ */
@Override
public Widget createWidget() {
-
- this.federationEditor = new FederationEditor(presenter);
-
+ this.federationEditor = new FederationEditor(presenter, this.presenter.getBeanFactory());
DefaultTabLayoutPanel tabLayoutpanel = new DefaultTabLayoutPanel(40, Style.Unit.PX);
+
tabLayoutpanel.addStyleName("default-tabpanel");
-
-
tabLayoutpanel.add(federationEditor.asWidget(), "PicketLink Federation", true);
-
tabLayoutpanel.selectTab(0);
return tabLayoutpanel;
}
+ /* (non-Javadoc)
+ * @see org.picketlink.as.console.client.ui.federation.FederationPresenter.MyView#updateFederations(java.util.List)
+ */
@Override
- public void setPresenter(FederationPresenter presenter) {
- this.presenter = presenter;
+ public void updateFederations(List<Federation> federations) {
+ this.federationEditor.updateFederations(federations);
}
+ /* (non-Javadoc)
+ * @see org.picketlink.as.console.client.ui.federation.FederationPresenter.MyView#updateFederations(java.util.List)
+ */
@Override
- public void updateFederations(List<Federation> federations) {
- federationEditor.updateDataSources(federations);
+ public void updateIdentityProviders(List<IdentityProvider> federations) {
+ this.federationEditor.updateIdentityProviders(federations);
}
+
+ /* (non-Javadoc)
+ * @see org.picketlink.as.console.client.ui.federation.FederationPresenter.MyView#updateServiceProviders(java.util.List)
+ */
+ @Override
+ public void updateServiceProviders(List<ServiceProvider> result) {
+ this.federationEditor.updateServiceProviders(result);
+ }
+ /* (non-Javadoc)
+ * @see org.picketlink.as.console.client.ui.federation.FederationPresenter.MyView#setPresenter(org.picketlink.as.console.client.ui.federation.FederationPresenter)
+ */
+ @Override
+ public void setPresenter(FederationPresenter presenter) {
+ this.presenter = presenter;
+ }
+
}
Added: console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/IdentityProviderDetails.java
===================================================================
--- console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/IdentityProviderDetails.java (rev 0)
+++ console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/IdentityProviderDetails.java 2012-03-19 23:53:07 UTC (rev 1533)
@@ -0,0 +1,91 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2012, Red Hat, Inc., and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+
+package org.picketlink.as.console.client.ui.federation;
+
+import java.util.ArrayList;
+import java.util.List;
+
+import org.jboss.as.console.client.shared.subsys.Baseadress;
+import org.jboss.ballroom.client.widgets.forms.FormItem;
+import org.jboss.ballroom.client.widgets.forms.TextItem;
+import org.jboss.dmr.client.ModelNode;
+import org.picketlink.as.console.client.shared.subsys.model.IdentityProvider;
+
+/**
+ * <p>
+ * This class defines the widget to that renders a read-only form for the informations about a Identity Provider.
+ * </p>
+ *
+ * @author <a href="mailto:psilva@redhat.com">Pedro Silva</a>
+ * @since Mar 14, 2012
+ */
+public class IdentityProviderDetails extends AbstractFederationDetails<IdentityProvider> {
+
+ public IdentityProviderDetails(FederationPresenter presenter) {
+ super();
+ }
+
+ protected List<FormItem<?>> getFormItems() {
+ List<FormItem<?>> items = new ArrayList<FormItem<?>>();
+
+ items.add(new TextItem("alias", "Alias"));
+ items.add(new TextItem("url", "Identity URL"));
+ items.add(new TextItem("signOutgoingMessages", "Sign Outgoing Messages"));
+ items.add(new TextItem("ignoreIncomingSignatures", "Ignore Incoming Signatures"));
+
+ return items;
+ }
+
+ /*
+ * (non-Javadoc)
+ *
+ * @see org.picketlink.as.console.client.ui.federation.AbstractFederationDetails#getHelpModelAddress()
+ */
+ @Override
+ protected ModelNode getHelpModelAddress() {
+ ModelNode address = Baseadress.get();
+
+ address.add("subsystem", "picketlink");
+ address.add("federation", "*");
+ address.add("identity-provider", "*");
+
+ return address;
+ }
+
+ /* (non-Javadoc)
+ * @see org.picketlink.as.console.client.ui.federation.AbstractFederationDetails#getEntityClass()
+ */
+ @Override
+ protected Class<?> getEntityClass() {
+ return IdentityProvider.class;
+ }
+
+ /**
+ * @param identityProviders
+ */
+ public void updateIdentityProvider(List<IdentityProvider> identityProviders) {
+ setEntityInstance(identityProviders.get(0));
+ getForm().edit(identityProviders.get(0));
+ }
+
+}
Added: console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/NewFederationWizard.java
===================================================================
--- console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/NewFederationWizard.java (rev 0)
+++ console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/NewFederationWizard.java 2012-03-19 23:53:07 UTC (rev 1533)
@@ -0,0 +1,86 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2012, Red Hat, Inc., and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+
+package org.picketlink.as.console.client.ui.federation;
+
+import org.picketlink.as.console.client.shared.subsys.model.Federation;
+
+import com.google.gwt.user.client.ui.DeckPanel;
+import com.google.gwt.user.client.ui.Widget;
+
+/**
+ * @author <a href="mailto:psilva@redhat.com">Pedro Silva</a>
+ * @since Mar 19, 2012
+ */
+public class NewFederationWizard {
+
+ private FederationPresenter presenter;
+
+ private DeckPanel deck;
+
+
+ private Federation baseAttributes = null;
+
+ private FederationEditor editor;
+
+ public NewFederationWizard(
+ FederationPresenter presenter, FederationEditor editor) {
+ this.presenter = presenter;
+ this.editor = editor;
+ }
+
+ public Widget asWidget() {
+ deck = new DeckPanel();
+
+ deck.add(new NewFederationWizardStep1(this, this.editor.getBeanFactory()).asWidget());
+
+ deck.showWidget(0);
+
+ return deck;
+ }
+
+ public FederationPresenter getPresenter() {
+ return presenter;
+ }
+
+ public void onFinish(Federation updatedEntity) {
+
+ // merge previous attributes into single entity
+ updatedEntity.setAlias(baseAttributes.getAlias());
+
+ presenter.onCreateFederation(updatedEntity);
+ }
+
+ /**
+ * @param updatedEntity
+ */
+ public void onConfigureBaseAttributes(Federation updatedEntity) {
+ this.presenter.onCreateFederation(updatedEntity);
+ }
+
+ /**
+ * @return the editor
+ */
+ public FederationEditor getEditor() {
+ return this.editor;
+ }
+}
Added: console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/NewFederationWizardStep1.java
===================================================================
--- console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/NewFederationWizardStep1.java (rev 0)
+++ console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/NewFederationWizardStep1.java 2012-03-19 23:53:07 UTC (rev 1533)
@@ -0,0 +1,124 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2012, Red Hat, Inc., and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+
+package org.picketlink.as.console.client.ui.federation;
+
+import org.jboss.as.console.client.Console;
+import org.jboss.as.console.client.shared.help.FormHelpPanel;
+import org.jboss.as.console.client.shared.subsys.Baseadress;
+import org.jboss.as.console.client.shared.subsys.jca.model.DataSource;
+import org.jboss.as.console.client.shared.subsys.jca.wizard.NewDatasourceWizard;
+import org.jboss.as.console.client.widgets.forms.items.JndiNameItem;
+import org.jboss.ballroom.client.widgets.forms.Form;
+import org.jboss.ballroom.client.widgets.forms.FormValidation;
+import org.jboss.ballroom.client.widgets.forms.TextBoxItem;
+import org.jboss.ballroom.client.widgets.window.DialogueOptions;
+import org.jboss.ballroom.client.widgets.window.WindowContentBuilder;
+import org.jboss.dmr.client.ModelNode;
+import org.picketlink.as.console.client.BeanFactory;
+import org.picketlink.as.console.client.shared.subsys.model.Federation;
+
+import com.google.gwt.event.dom.client.ClickEvent;
+import com.google.gwt.event.dom.client.ClickHandler;
+import com.google.gwt.user.client.ui.HTML;
+import com.google.gwt.user.client.ui.VerticalPanel;
+import com.google.gwt.user.client.ui.Widget;
+
+/**
+ * @author <a href="mailto:psilva@redhat.com">Pedro Silva</a>
+ * @since Mar 19, 2012
+ */
+public class NewFederationWizardStep1 {
+
+ NewFederationWizard wizard;
+ private BeanFactory beanFactory;
+
+ public NewFederationWizardStep1(NewFederationWizard wizard) {
+ this.wizard = wizard;
+ }
+
+ /**
+ * @param newFederationWizard
+ * @param beanFactory
+ */
+ public NewFederationWizardStep1(NewFederationWizard newFederationWizard, BeanFactory beanFactory) {
+ this.beanFactory = beanFactory;
+ }
+
+ Widget asWidget() {
+
+ VerticalPanel layout = new VerticalPanel();
+ layout.setStyleName("window-content");
+
+ layout.add(new HTML("<h3>New Federation</h3>"));
+
+ final Form<Federation> form = new Form<Federation>(Federation.class);
+
+ final TextBoxItem name = new TextBoxItem("alias", "Alias");
+
+ form.setFields(name);
+
+ form.edit(this.beanFactory.federation().as());
+
+ final FormHelpPanel helpPanel = new FormHelpPanel(
+ new FormHelpPanel.AddressCallback() {
+ @Override
+ public ModelNode getAddress() {
+ ModelNode address = Baseadress.get();
+ address.add("subsystem", "picketlink");
+ address.add("federation", "*");
+ return address;
+ }
+ }, form
+ );
+
+ layout.add(helpPanel.asWidget());
+
+ layout.add(form.asWidget());
+
+ ClickHandler submitHandler = new ClickHandler() {
+ @Override
+ public void onClick(ClickEvent event) {
+ FormValidation validation = form.validate();
+ if(!validation.hasErrors())
+ {
+ wizard.onConfigureBaseAttributes(form.getUpdatedEntity());
+ }
+ }
+ };
+
+ ClickHandler cancelHandler = new ClickHandler() {
+ @Override
+ public void onClick(ClickEvent event) {
+ wizard.getEditor().closeDialogue();
+ }
+ };
+
+ DialogueOptions options = new DialogueOptions(
+ Console.CONSTANTS.common_label_save(),submitHandler,
+ Console.CONSTANTS.common_label_cancel(),cancelHandler
+ );
+
+ return new WindowContentBuilder(layout, options).build();
+ }
+
+}
Added: console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/ServiceProviderDetails.java
===================================================================
--- console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/ServiceProviderDetails.java (rev 0)
+++ console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/ServiceProviderDetails.java 2012-03-19 23:53:07 UTC (rev 1533)
@@ -0,0 +1,82 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2012, Red Hat, Inc., and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+
+package org.picketlink.as.console.client.ui.federation;
+
+import java.util.List;
+
+import org.jboss.as.console.client.widgets.ContentDescription;
+import org.picketlink.as.console.client.shared.subsys.model.ServiceProvider;
+
+import com.google.gwt.user.client.ui.HorizontalPanel;
+import com.google.gwt.user.client.ui.VerticalPanel;
+import com.google.gwt.user.client.ui.Widget;
+
+/**
+ * <p>
+ * This class defines the widget to be displayed to show the general informations about a selected federation instance.
+ * </p>
+ *
+ * @author <a href="mailto:psilva@redhat.com">Pedro Silva</a>
+ * @since Mar 14, 2012
+ */
+public class ServiceProviderDetails {
+
+ private ServiceProviderTable serviceProviderTable;
+
+ public Widget asWidget() {
+ VerticalPanel layout = new VerticalPanel();
+
+ layout.setStyleName("rhs-content-panel");
+
+ HorizontalPanel horizontalPanel = new HorizontalPanel();
+
+ horizontalPanel.setHeight("10px");
+
+ layout.add(horizontalPanel);
+ layout.add(new ContentDescription("Avaiable Service Providers"));
+ layout.add(getFederationTable().asWidget());
+
+ return layout;
+ }
+
+ /**
+ * Returns a instance of the table to be used to show the service provider instances.
+ *
+ * @return
+ */
+ private ServiceProviderTable getFederationTable() {
+ if (this.serviceProviderTable == null) {
+ this.serviceProviderTable = new ServiceProviderTable();
+ }
+
+ return this.serviceProviderTable;
+ }
+
+ /**
+ * @param result
+ */
+ public void updateServiceProviders(List<ServiceProvider> result) {
+ this.getFederationTable().getDataProvider().setList(result);
+ }
+
+}
Added: console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/ServiceProviderTable.java
===================================================================
--- console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/ServiceProviderTable.java (rev 0)
+++ console/trunk/gui/src/main/java/org/picketlink/as/console/client/ui/federation/ServiceProviderTable.java 2012-03-19 23:53:07 UTC (rev 1533)
@@ -0,0 +1,65 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2012, Red Hat, Inc., and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+
+package org.picketlink.as.console.client.ui.federation;
+
+import org.jboss.ballroom.client.widgets.tables.DefaultCellTable;
+import org.picketlink.as.console.client.shared.subsys.model.ServiceProvider;
+
+import com.google.gwt.user.cellview.client.TextColumn;
+
+/**
+ * @author <a href="mailto:psilva@redhat.com">Pedro Silva</a>
+ * @since Mar 19, 2012
+ */
+public class ServiceProviderTable extends AbstractModelElementTable<ServiceProvider> {
+
+ /*
+ * (non-Javadoc)
+ *
+ * @see org.picketlink.as.console.client.ui.federation.AbstractModelElementTable#doGetKey(java.lang.Object)
+ */
+ @Override
+ protected Object doGetKey(ServiceProvider item) {
+ return item.getAlias();
+ }
+
+ /*
+ * (non-Javadoc)
+ *
+ * @see
+ * org.picketlink.as.console.client.ui.federation.AbstractModelElementTable#doAddConlumns(org.jboss.ballroom.client.widgets
+ * .tables.DefaultCellTable)
+ */
+ @Override
+ protected void doAddConlumns(DefaultCellTable<ServiceProvider> federationTable) {
+ TextColumn<ServiceProvider> aliasColumn = new TextColumn<ServiceProvider>() {
+ @Override
+ public String getValue(ServiceProvider record) {
+ return record.getAlias();
+ }
+ };
+
+ federationTable.addColumn(aliasColumn, "Name");
+ }
+
+}
Modified: console/trunk/gui/src/main/java/org/picketlink/as/console/rebind/extension/PicketLinkApplicationMetaDataGenerator.java
===================================================================
--- console/trunk/gui/src/main/java/org/picketlink/as/console/rebind/extension/PicketLinkApplicationMetaDataGenerator.java 2012-03-19 20:47:37 UTC (rev 1532)
+++ console/trunk/gui/src/main/java/org/picketlink/as/console/rebind/extension/PicketLinkApplicationMetaDataGenerator.java 2012-03-19 23:53:07 UTC (rev 1533)
@@ -29,7 +29,7 @@
* <p>This class allows to load all metadata related with the beans to be used to access the subsystem.</p>
*
* @author pedroigor
- * @sice Mar 14, 2012
+ * @since Mar 14, 2012
*/
public class PicketLinkApplicationMetaDataGenerator extends ApplicationMetaDataGeneratorExtension {
12 years, 9 months
Picketlink SVN: r1532 - in social/trunk: assembly and 11 other directories.
by picketlink-commits@lists.jboss.org
Author: anil.saldhana(a)jboss.com
Date: 2012-03-19 16:47:37 -0400 (Mon, 19 Mar 2012)
New Revision: 1532
Modified:
social/trunk/assembly/pom.xml
social/trunk/facebook/pom.xml
social/trunk/openid/pom.xml
social/trunk/parent/pom.xml
social/trunk/pom.xml
social/trunk/social/pom.xml
social/trunk/webapps/as7/openid-consumer/pom.xml
social/trunk/webapps/as7/picketlink-reg/pom.xml
social/trunk/webapps/as7/pom.xml
social/trunk/webapps/openid-consumer/pom.xml
social/trunk/webapps/openid-provider/pom.xml
social/trunk/webapps/picketlink-reg/pom.xml
social/trunk/webapps/pom.xml
Log:
PLFED-272: next 1.0.1
Modified: social/trunk/assembly/pom.xml
===================================================================
--- social/trunk/assembly/pom.xml 2012-03-19 20:45:26 UTC (rev 1531)
+++ social/trunk/assembly/pom.xml 2012-03-19 20:47:37 UTC (rev 1532)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-social-parent</artifactId>
- <version>1.0.0.Final</version>
+ <version>1.0.1-SNAPSHOT</version>
<relativePath>../parent</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: social/trunk/facebook/pom.xml
===================================================================
--- social/trunk/facebook/pom.xml 2012-03-19 20:45:26 UTC (rev 1531)
+++ social/trunk/facebook/pom.xml 2012-03-19 20:47:37 UTC (rev 1532)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-social-parent</artifactId>
- <version>1.0.0.Final</version>
+ <version>1.0.1-SNAPSHOT</version>
<relativePath>../parent</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: social/trunk/openid/pom.xml
===================================================================
--- social/trunk/openid/pom.xml 2012-03-19 20:45:26 UTC (rev 1531)
+++ social/trunk/openid/pom.xml 2012-03-19 20:47:37 UTC (rev 1532)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-social-parent</artifactId>
- <version>1.0.0.Final</version>
+ <version>1.0.1-SNAPSHOT</version>
<relativePath>../parent</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: social/trunk/parent/pom.xml
===================================================================
--- social/trunk/parent/pom.xml 2012-03-19 20:45:26 UTC (rev 1531)
+++ social/trunk/parent/pom.xml 2012-03-19 20:47:37 UTC (rev 1532)
@@ -8,7 +8,7 @@
<groupId>org.picketlink</groupId>
<artifactId>picketlink-social-parent</artifactId>
<packaging>pom</packaging>
- <version>1.0.0.Final</version>
+ <version>1.0.1-SNAPSHOT</version>
<name>PicketLink Social - Parent</name>
<url>http://labs.jboss.org/portal/picketlink/</url>
<description>PicketLink Social Parent</description>
Modified: social/trunk/pom.xml
===================================================================
--- social/trunk/pom.xml 2012-03-19 20:45:26 UTC (rev 1531)
+++ social/trunk/pom.xml 2012-03-19 20:47:37 UTC (rev 1532)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-social-parent</artifactId>
- <version>1.0.0.Final</version>
+ <version>1.0.1-SNAPSHOT</version>
<relativePath>parent</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: social/trunk/social/pom.xml
===================================================================
--- social/trunk/social/pom.xml 2012-03-19 20:45:26 UTC (rev 1531)
+++ social/trunk/social/pom.xml 2012-03-19 20:47:37 UTC (rev 1532)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-social-parent</artifactId>
- <version>1.0.0.Final</version>
+ <version>1.0.1-SNAPSHOT</version>
<relativePath>../parent</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: social/trunk/webapps/as7/openid-consumer/pom.xml
===================================================================
--- social/trunk/webapps/as7/openid-consumer/pom.xml 2012-03-19 20:45:26 UTC (rev 1531)
+++ social/trunk/webapps/as7/openid-consumer/pom.xml 2012-03-19 20:47:37 UTC (rev 1532)
@@ -2,13 +2,13 @@
<parent>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-social-webapps</artifactId>
- <version>1.0.0.Final</version>
+ <version>1.0.1-SNAPSHOT</version>
<relativePath>../../</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.picketlink.social.as7</groupId>
<artifactId>openid-consumer</artifactId>
- <version>1.0.0.Final</version>
+ <version>1.0.1-SNAPSHOT</version>
<packaging>war</packaging>
<name>PicketLink Federation OpenID Consumer</name>
<url>http://labs.jboss.org/portal/picketlink/</url>
Modified: social/trunk/webapps/as7/picketlink-reg/pom.xml
===================================================================
--- social/trunk/webapps/as7/picketlink-reg/pom.xml 2012-03-19 20:45:26 UTC (rev 1531)
+++ social/trunk/webapps/as7/picketlink-reg/pom.xml 2012-03-19 20:47:37 UTC (rev 1532)
@@ -3,14 +3,14 @@
<parent>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-social-webapps</artifactId>
- <version>1.0.0.Final</version>
+ <version>1.0.1-SNAPSHOT</version>
<relativePath>../../</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.picketlink.social.as7</groupId>
<artifactId>picketlink-reg</artifactId>
- <version>1.0.0.Final</version>
+ <version>1.0.1-SNAPSHOT</version>
<packaging>war</packaging>
<name>PicketLink Social Registration</name>
<url>http://labs.jboss.org/portal/picketlink/</url>
Modified: social/trunk/webapps/as7/pom.xml
===================================================================
--- social/trunk/webapps/as7/pom.xml 2012-03-19 20:45:26 UTC (rev 1531)
+++ social/trunk/webapps/as7/pom.xml 2012-03-19 20:47:37 UTC (rev 1532)
@@ -2,14 +2,14 @@
<parent>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-social-webapps</artifactId>
- <version>1.0.0.Final</version>
+ <version>1.0.1-SNAPSHOT</version>
<relativePath>../</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.picketlink.social</groupId>
<artifactId>picketlink-social-as7-webapps</artifactId>
- <version>1.0.0.Final</version>
+ <version>1.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>PicketLink Social Web Applications</name>
<url>http://labs.jboss.org/portal/jbosssecurity/</url>
Modified: social/trunk/webapps/openid-consumer/pom.xml
===================================================================
--- social/trunk/webapps/openid-consumer/pom.xml 2012-03-19 20:45:26 UTC (rev 1531)
+++ social/trunk/webapps/openid-consumer/pom.xml 2012-03-19 20:47:37 UTC (rev 1532)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-social-webapps</artifactId>
- <version>1.0.0.Final</version>
+ <version>1.0.1-SNAPSHOT</version>
<relativePath>../</relativePath>
</parent>
Modified: social/trunk/webapps/openid-provider/pom.xml
===================================================================
--- social/trunk/webapps/openid-provider/pom.xml 2012-03-19 20:45:26 UTC (rev 1531)
+++ social/trunk/webapps/openid-provider/pom.xml 2012-03-19 20:47:37 UTC (rev 1532)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-social-webapps</artifactId>
- <version>1.0.0.Final</version>
+ <version>1.0.1-SNAPSHOT</version>
<relativePath>../</relativePath>
</parent>
Modified: social/trunk/webapps/picketlink-reg/pom.xml
===================================================================
--- social/trunk/webapps/picketlink-reg/pom.xml 2012-03-19 20:45:26 UTC (rev 1531)
+++ social/trunk/webapps/picketlink-reg/pom.xml 2012-03-19 20:47:37 UTC (rev 1532)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-social-webapps</artifactId>
- <version>1.0.0.Final</version>
+ <version>1.0.1-SNAPSHOT</version>
<relativePath>../</relativePath>
</parent>
Modified: social/trunk/webapps/pom.xml
===================================================================
--- social/trunk/webapps/pom.xml 2012-03-19 20:45:26 UTC (rev 1531)
+++ social/trunk/webapps/pom.xml 2012-03-19 20:47:37 UTC (rev 1532)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-social-parent</artifactId>
- <version>1.0.0.Final</version>
+ <version>1.0.1-SNAPSHOT</version>
<relativePath>../parent</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
12 years, 9 months
Picketlink SVN: r1531 - social/tags.
by picketlink-commits@lists.jboss.org
Author: anil.saldhana(a)jboss.com
Date: 2012-03-19 16:45:26 -0400 (Mon, 19 Mar 2012)
New Revision: 1531
Added:
social/tags/1.0.0.Final/
Log:
tag 1.0.0.Final
12 years, 9 months
Picketlink SVN: r1530 - social.
by picketlink-commits@lists.jboss.org
Author: anil.saldhana(a)jboss.com
Date: 2012-03-19 16:44:07 -0400 (Mon, 19 Mar 2012)
New Revision: 1530
Added:
social/tags/
Log:
tags dir
12 years, 9 months
Picketlink SVN: r1529 - in social/trunk: assembly and 11 other directories.
by picketlink-commits@lists.jboss.org
Author: anil.saldhana(a)jboss.com
Date: 2012-03-19 16:40:52 -0400 (Mon, 19 Mar 2012)
New Revision: 1529
Modified:
social/trunk/assembly/pom.xml
social/trunk/facebook/pom.xml
social/trunk/openid/pom.xml
social/trunk/parent/pom.xml
social/trunk/pom.xml
social/trunk/social/pom.xml
social/trunk/webapps/as7/openid-consumer/pom.xml
social/trunk/webapps/as7/picketlink-reg/pom.xml
social/trunk/webapps/as7/pom.xml
social/trunk/webapps/openid-consumer/pom.xml
social/trunk/webapps/openid-provider/pom.xml
social/trunk/webapps/picketlink-reg/pom.xml
social/trunk/webapps/pom.xml
Log:
PLFED-272: prepare 1.0.0.Final
Modified: social/trunk/assembly/pom.xml
===================================================================
--- social/trunk/assembly/pom.xml 2012-03-19 20:39:31 UTC (rev 1528)
+++ social/trunk/assembly/pom.xml 2012-03-19 20:40:52 UTC (rev 1529)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-social-parent</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.0.0.Final</version>
<relativePath>../parent</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: social/trunk/facebook/pom.xml
===================================================================
--- social/trunk/facebook/pom.xml 2012-03-19 20:39:31 UTC (rev 1528)
+++ social/trunk/facebook/pom.xml 2012-03-19 20:40:52 UTC (rev 1529)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-social-parent</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.0.0.Final</version>
<relativePath>../parent</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: social/trunk/openid/pom.xml
===================================================================
--- social/trunk/openid/pom.xml 2012-03-19 20:39:31 UTC (rev 1528)
+++ social/trunk/openid/pom.xml 2012-03-19 20:40:52 UTC (rev 1529)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-social-parent</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.0.0.Final</version>
<relativePath>../parent</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: social/trunk/parent/pom.xml
===================================================================
--- social/trunk/parent/pom.xml 2012-03-19 20:39:31 UTC (rev 1528)
+++ social/trunk/parent/pom.xml 2012-03-19 20:40:52 UTC (rev 1529)
@@ -8,7 +8,7 @@
<groupId>org.picketlink</groupId>
<artifactId>picketlink-social-parent</artifactId>
<packaging>pom</packaging>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.0.0.Final</version>
<name>PicketLink Social - Parent</name>
<url>http://labs.jboss.org/portal/picketlink/</url>
<description>PicketLink Social Parent</description>
Modified: social/trunk/pom.xml
===================================================================
--- social/trunk/pom.xml 2012-03-19 20:39:31 UTC (rev 1528)
+++ social/trunk/pom.xml 2012-03-19 20:40:52 UTC (rev 1529)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-social-parent</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.0.0.Final</version>
<relativePath>parent</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: social/trunk/social/pom.xml
===================================================================
--- social/trunk/social/pom.xml 2012-03-19 20:39:31 UTC (rev 1528)
+++ social/trunk/social/pom.xml 2012-03-19 20:40:52 UTC (rev 1529)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-social-parent</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.0.0.Final</version>
<relativePath>../parent</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: social/trunk/webapps/as7/openid-consumer/pom.xml
===================================================================
--- social/trunk/webapps/as7/openid-consumer/pom.xml 2012-03-19 20:39:31 UTC (rev 1528)
+++ social/trunk/webapps/as7/openid-consumer/pom.xml 2012-03-19 20:40:52 UTC (rev 1529)
@@ -2,13 +2,13 @@
<parent>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-social-webapps</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.0.0.Final</version>
<relativePath>../../</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.picketlink.social.as7</groupId>
<artifactId>openid-consumer</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.0.0.Final</version>
<packaging>war</packaging>
<name>PicketLink Federation OpenID Consumer</name>
<url>http://labs.jboss.org/portal/picketlink/</url>
Modified: social/trunk/webapps/as7/picketlink-reg/pom.xml
===================================================================
--- social/trunk/webapps/as7/picketlink-reg/pom.xml 2012-03-19 20:39:31 UTC (rev 1528)
+++ social/trunk/webapps/as7/picketlink-reg/pom.xml 2012-03-19 20:40:52 UTC (rev 1529)
@@ -3,14 +3,14 @@
<parent>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-social-webapps</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.0.0.Final</version>
<relativePath>../../</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.picketlink.social.as7</groupId>
<artifactId>picketlink-reg</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.0.0.Final</version>
<packaging>war</packaging>
<name>PicketLink Social Registration</name>
<url>http://labs.jboss.org/portal/picketlink/</url>
Modified: social/trunk/webapps/as7/pom.xml
===================================================================
--- social/trunk/webapps/as7/pom.xml 2012-03-19 20:39:31 UTC (rev 1528)
+++ social/trunk/webapps/as7/pom.xml 2012-03-19 20:40:52 UTC (rev 1529)
@@ -2,14 +2,14 @@
<parent>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-social-webapps</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.0.0.Final</version>
<relativePath>../</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.picketlink.social</groupId>
<artifactId>picketlink-social-as7-webapps</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.0.0.Final</version>
<packaging>pom</packaging>
<name>PicketLink Social Web Applications</name>
<url>http://labs.jboss.org/portal/jbosssecurity/</url>
Modified: social/trunk/webapps/openid-consumer/pom.xml
===================================================================
--- social/trunk/webapps/openid-consumer/pom.xml 2012-03-19 20:39:31 UTC (rev 1528)
+++ social/trunk/webapps/openid-consumer/pom.xml 2012-03-19 20:40:52 UTC (rev 1529)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-social-webapps</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.0.0.Final</version>
<relativePath>../</relativePath>
</parent>
Modified: social/trunk/webapps/openid-provider/pom.xml
===================================================================
--- social/trunk/webapps/openid-provider/pom.xml 2012-03-19 20:39:31 UTC (rev 1528)
+++ social/trunk/webapps/openid-provider/pom.xml 2012-03-19 20:40:52 UTC (rev 1529)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-social-webapps</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.0.0.Final</version>
<relativePath>../</relativePath>
</parent>
Modified: social/trunk/webapps/picketlink-reg/pom.xml
===================================================================
--- social/trunk/webapps/picketlink-reg/pom.xml 2012-03-19 20:39:31 UTC (rev 1528)
+++ social/trunk/webapps/picketlink-reg/pom.xml 2012-03-19 20:40:52 UTC (rev 1529)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-social-webapps</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.0.0.Final</version>
<relativePath>../</relativePath>
</parent>
Modified: social/trunk/webapps/pom.xml
===================================================================
--- social/trunk/webapps/pom.xml 2012-03-19 20:39:31 UTC (rev 1528)
+++ social/trunk/webapps/pom.xml 2012-03-19 20:40:52 UTC (rev 1529)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-social-parent</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.0.0.Final</version>
<relativePath>../parent</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
12 years, 9 months
Picketlink SVN: r1527 - in social/trunk: assembly and 11 other directories.
by picketlink-commits@lists.jboss.org
Author: anil.saldhana(a)jboss.com
Date: 2012-03-19 16:36:39 -0400 (Mon, 19 Mar 2012)
New Revision: 1527
Removed:
social/trunk/webapps/as7/picketlink-reg/a
Modified:
social/trunk/assembly/pom.xml
social/trunk/facebook/pom.xml
social/trunk/openid/pom.xml
social/trunk/parent/pom.xml
social/trunk/pom.xml
social/trunk/social/pom.xml
social/trunk/webapps/as7/openid-consumer/pom.xml
social/trunk/webapps/as7/picketlink-reg/pom.xml
social/trunk/webapps/as7/pom.xml
social/trunk/webapps/openid-consumer/pom.xml
social/trunk/webapps/openid-provider/pom.xml
social/trunk/webapps/picketlink-reg/pom.xml
social/trunk/webapps/pom.xml
Log:
pom changes
Modified: social/trunk/assembly/pom.xml
===================================================================
--- social/trunk/assembly/pom.xml 2012-03-19 19:45:15 UTC (rev 1526)
+++ social/trunk/assembly/pom.xml 2012-03-19 20:36:39 UTC (rev 1527)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-social-parent</artifactId>
- <version>1.0.0.Final</version>
+ <version>1.0.0-SNAPSHOT</version>
<relativePath>../parent</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: social/trunk/facebook/pom.xml
===================================================================
--- social/trunk/facebook/pom.xml 2012-03-19 19:45:15 UTC (rev 1526)
+++ social/trunk/facebook/pom.xml 2012-03-19 20:36:39 UTC (rev 1527)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-social-parent</artifactId>
- <version>1.0.0.Final</version>
+ <version>1.0.0-SNAPSHOT</version>
<relativePath>../parent</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: social/trunk/openid/pom.xml
===================================================================
--- social/trunk/openid/pom.xml 2012-03-19 19:45:15 UTC (rev 1526)
+++ social/trunk/openid/pom.xml 2012-03-19 20:36:39 UTC (rev 1527)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-social-parent</artifactId>
- <version>1.0.0.Final</version>
+ <version>1.0.0-SNAPSHOT</version>
<relativePath>../parent</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: social/trunk/parent/pom.xml
===================================================================
--- social/trunk/parent/pom.xml 2012-03-19 19:45:15 UTC (rev 1526)
+++ social/trunk/parent/pom.xml 2012-03-19 20:36:39 UTC (rev 1527)
@@ -8,7 +8,7 @@
<groupId>org.picketlink</groupId>
<artifactId>picketlink-social-parent</artifactId>
<packaging>pom</packaging>
- <version>1.0.0.Final</version>
+ <version>1.0.0-SNAPSHOT</version>
<name>PicketLink Social - Parent</name>
<url>http://labs.jboss.org/portal/picketlink/</url>
<description>PicketLink Social Parent</description>
Modified: social/trunk/pom.xml
===================================================================
--- social/trunk/pom.xml 2012-03-19 19:45:15 UTC (rev 1526)
+++ social/trunk/pom.xml 2012-03-19 20:36:39 UTC (rev 1527)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-social-parent</artifactId>
- <version>1.0.0.Final</version>
+ <version>1.0.0-SNAPSHOT</version>
<relativePath>parent</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: social/trunk/social/pom.xml
===================================================================
--- social/trunk/social/pom.xml 2012-03-19 19:45:15 UTC (rev 1526)
+++ social/trunk/social/pom.xml 2012-03-19 20:36:39 UTC (rev 1527)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-social-parent</artifactId>
- <version>1.0.0.Final</version>
+ <version>1.0.0-SNAPSHOT</version>
<relativePath>../parent</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: social/trunk/webapps/as7/openid-consumer/pom.xml
===================================================================
--- social/trunk/webapps/as7/openid-consumer/pom.xml 2012-03-19 19:45:15 UTC (rev 1526)
+++ social/trunk/webapps/as7/openid-consumer/pom.xml 2012-03-19 20:36:39 UTC (rev 1527)
@@ -1,8 +1,14 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <parent>
+ <groupId>org.picketlink</groupId>
+ <artifactId>picketlink-social-webapps</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ <relativePath>../../</relativePath>
+ </parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.picketlink.social.as7</groupId>
<artifactId>openid-consumer</artifactId>
- <version>1.0.0.Final</version>
+ <version>1.0.0-SNAPSHOT</version>
<packaging>war</packaging>
<name>PicketLink Federation OpenID Consumer</name>
<url>http://labs.jboss.org/portal/picketlink/</url>
Deleted: social/trunk/webapps/as7/picketlink-reg/a
===================================================================
--- social/trunk/webapps/as7/picketlink-reg/a 2012-03-19 19:45:15 UTC (rev 1526)
+++ social/trunk/webapps/as7/picketlink-reg/a 2012-03-19 20:36:39 UTC (rev 1527)
@@ -1,1174 +0,0 @@
-Apache Maven 3.0.2 (r1056850; 2011-01-08 18:58:10-0600)
-Java version: 1.6.0_31, vendor: Sun Microsystems Inc.
-Java home: /home/anil/java/jdk1.6.0_31/jre
-Default locale: en_US, platform encoding: UTF-8
-OS name: "linux", version: "3.2.9-2.fc16.x86_64", arch: "amd64", family: "unix"
-[INFO] Error stacktraces are turned on.
-[DEBUG] Reading global settings from /opt/apache-maven-3.0.2/conf/settings.xml
-[DEBUG] Reading user settings from /home/anil/.m2/settings.xml
-[DEBUG] Using local repository at /home/anil/.m2/repository
-[DEBUG] Using manager EnhancedLocalRepositoryManager with priority 10 for /home/anil/.m2/repository
-[INFO] Scanning for projects...
-[DEBUG] Skipped remote update check for org.picketlink:picketlink-social-webapps:2.0.0.Beta1-SNAPSHOT/maven-metadata.xml, locally built metadata up-to-date.
-[DEBUG] Skipped remote update check for org.picketlink:picketlink-social-parent:2.0.0.Beta1-SNAPSHOT/maven-metadata.xml, locally built metadata up-to-date.
-[DEBUG] Extension realms for project org.picketlink:picketlink-reg-as7:war:2.0.0.Beta1-SNAPSHOT: (none)
-[DEBUG] Looking up lifecyle mappings for packaging war from ClassRealm[plexus.core, parent: null]
-[WARNING]
-[WARNING] Some problems were encountered while building the effective model for org.picketlink:picketlink-reg-as7:war:2.0.0.Beta1-SNAPSHOT
-[WARNING] 'parent.relativePath' points at org.picketlink:picketlink-social-as7-webapps instead of org.picketlink:picketlink-social-webapps, please verify your project structure @ line 2, column 11
-[WARNING] The expression ${pom.version} is deprecated. Please use ${project.version} instead.
-[WARNING]
-[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
-[WARNING]
-[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
-[WARNING]
-[DEBUG] === REACTOR BUILD PLAN ================================================
-[DEBUG] Project: org.picketlink:picketlink-reg-as7:war:2.0.0.Beta1-SNAPSHOT
-[DEBUG] Tasks: [clean, install]
-[DEBUG] Style: Regular
-[DEBUG] =======================================================================
-[INFO]
-[INFO] ------------------------------------------------------------------------
-[INFO] Building PicketLink Social Registration 2.0.0.Beta1-SNAPSHOT
-[INFO] ------------------------------------------------------------------------
-[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
-[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
-[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
-[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
-[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
-[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
-[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
-[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
-[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
-[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
-[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
-[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
-[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
-[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
-[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
-[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
-[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
-[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
-[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
-[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
-[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
-[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
-[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
-[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
-[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
-[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
-[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
-[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
-[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
-[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
-[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
-[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
-[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
-[DEBUG] === PROJECT BUILD PLAN ================================================
-[DEBUG] Project: org.picketlink:picketlink-reg-as7:2.0.0.Beta1-SNAPSHOT
-[DEBUG] Dependencies (collect): []
-[DEBUG] Dependencies (resolve): [compile, runtime, test]
-[DEBUG] Repositories (dependencies): [jboss-public-repository-group (https://repository.jboss.org/nexus/content/groups/public/, releases=true, snapshots=true, managed=false), repository.jboss.org (http://repository.jboss.org/maven2/, releases=true, snapshots=false, managed=false), snapshots.jboss.org (http://snapshots.jboss.org/maven2/, releases=false, snapshots=true, managed=false), central (http://repo1.maven.org/maven2, releases=true, snapshots=false, managed=false)]
-[DEBUG] Repositories (plugins) : [jboss-public-repository-group (https://repository.jboss.org/nexus/content/groups/public/, releases=true, snapshots=true, managed=false), central (http://repo1.maven.org/maven2, releases=true, snapshots=false, managed=false)]
-[DEBUG] -----------------------------------------------------------------------
-[DEBUG] Goal: org.apache.maven.plugins:maven-clean-plugin:2.3:clean (default-clean)
-[DEBUG] Style: Regular
-[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
-<configuration>
- <directory default-value="${project.build.directory}"/>
- <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
- <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
- <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
- <outputDirectory default-value="${project.build.outputDirectory}"/>
- <project default-value="${project}"/>
- <reportDirectory default-value="${project.reporting.outputDirectory}"/>
- <skip default-value="false">${clean.skip}</skip>
- <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
- <verbose>${clean.verbose}</verbose>
-</configuration>
-[DEBUG] -----------------------------------------------------------------------
-[DEBUG] Goal: org.apache.maven.plugins:maven-enforcer-plugin:1.0-beta-1:enforce (enforce-plugin-versions)
-[DEBUG] Style: Regular
-[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
-<configuration>
- <fail default-value="true">${enforcer.fail}</fail>
- <failFast default-value="false">${enforcer.failFast}</failFast>
- <ignoreCache default-value="false">${enforcer.ignoreCache}</ignoreCache>
- <project>${project}</project>
- <rules>
- <requirePluginVersions>
- <message>Best practice is to always define plugin versions!</message>
- <banLatest>true</banLatest>
- <banRelease>true</banRelease>
- <phases>deploy,site</phases>
- </requirePluginVersions>
- </rules>
- <session>${session}</session>
- <skip default-value="false">${enforcer.skip}</skip>
-</configuration>
-[DEBUG] -----------------------------------------------------------------------
-[DEBUG] Goal: org.apache.maven.plugins:maven-enforcer-plugin:1.0-beta-1:enforce (enforce-java-version)
-[DEBUG] Style: Regular
-[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
-<configuration>
- <fail default-value="true">${enforcer.fail}</fail>
- <failFast default-value="false">${enforcer.failFast}</failFast>
- <ignoreCache default-value="false">${enforcer.ignoreCache}</ignoreCache>
- <project>${project}</project>
- <rules>
- <requireJavaVersion>
- <message>To build this project JDK 1.5 (or greater) is required. Please install it.</message>
- <version>1.5</version>
- </requireJavaVersion>
- </rules>
- <session>${session}</session>
- <skip default-value="false">${enforcer.skip}</skip>
-</configuration>
-[DEBUG] -----------------------------------------------------------------------
-[DEBUG] Goal: org.apache.maven.plugins:maven-enforcer-plugin:1.0-beta-1:enforce (enforce-maven-version)
-[DEBUG] Style: Regular
-[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
-<configuration>
- <fail default-value="true">${enforcer.fail}</fail>
- <failFast default-value="false">${enforcer.failFast}</failFast>
- <ignoreCache default-value="false">${enforcer.ignoreCache}</ignoreCache>
- <project>${project}</project>
- <rules>
- <requireMavenVersion>
- <message>To build this project Maven 2.0.9 (or greater) is required. Please install it.</message>
- <version>2.0.9</version>
- </requireMavenVersion>
- </rules>
- <session>${session}</session>
- <skip default-value="false">${enforcer.skip}</skip>
-</configuration>
-[DEBUG] -----------------------------------------------------------------------
-[DEBUG] Goal: org.apache.maven.plugins:maven-resources-plugin:2.4.1:resources (default-resources)
-[DEBUG] Style: Regular
-[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
-<configuration>
- <buildFilters default-value="${project.build.filters}"/>
- <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
- <escapeString default-value="${maven.resources.escapeString}"/>
- <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
- <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
- <outputDirectory default-value="${project.build.outputDirectory}"/>
- <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
- <project default-value="${project}"/>
- <resources default-value="${project.resources}"/>
- <session default-value="${session}"/>
- <useBuildFilters default-value="true"/>
- <useDefaultDelimiters default-value="true"/>
-</configuration>
-[DEBUG] -----------------------------------------------------------------------
-[DEBUG] Goal: org.apache.maven.plugins:maven-compiler-plugin:2.0.2:compile (default-compile)
-[DEBUG] Style: Regular
-[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
-<configuration>
- <basedir>${basedir}</basedir>
- <buildDirectory>${project.build.directory}</buildDirectory>
- <classpathElements>${project.compileClasspathElements}</classpathElements>
- <compileSourceRoots>${project.compileSourceRoots}</compileSourceRoots>
- <compilerId default-value="javac">${maven.compiler.compilerId}</compilerId>
- <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>
- <debug default-value="true">${maven.compiler.debug}</debug>
- <encoding>${maven.compiler.encoding}</encoding>
- <executable>${maven.compiler.executable}</executable>
- <failOnError default-value="true">${maven.compiler.failOnError}</failOnError>
- <fork default-value="false"/>
- <maxmem>${maven.compiler.maxmem}</maxmem>
- <meminitial>${maven.compiler.meminitial}</meminitial>
- <optimize default-value="false">${maven.compiler.optimize}</optimize>
- <outputDirectory>${project.build.outputDirectory}</outputDirectory>
- <outputFileName>${project.build.finalName}</outputFileName>
- <projectArtifact>${project.artifact}</projectArtifact>
- <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
- <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
- <source>${maven.compiler.source}</source>
- <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
- <target>${maven.compiler.target}</target>
- <verbose default-value="false">${maven.compiler.verbose}</verbose>
-</configuration>
-[DEBUG] -----------------------------------------------------------------------
-[DEBUG] Goal: org.apache.maven.plugins:maven-resources-plugin:2.4.1:testResources (default-testResources)
-[DEBUG] Style: Regular
-[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
-<configuration>
- <buildFilters default-value="${project.build.filters}"/>
- <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
- <escapeString default-value="${maven.resources.escapeString}"/>
- <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
- <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
- <outputDirectory>${project.build.testOutputDirectory}</outputDirectory>
- <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
- <project default-value="${project}"/>
- <resources>${project.testResources}</resources>
- <session default-value="${session}"/>
- <useBuildFilters default-value="true"/>
- <useDefaultDelimiters default-value="true"/>
-</configuration>
-[DEBUG] -----------------------------------------------------------------------
-[DEBUG] Goal: org.apache.maven.plugins:maven-compiler-plugin:2.0.2:testCompile (default-testCompile)
-[DEBUG] Style: Regular
-[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
-<configuration>
- <basedir>${basedir}</basedir>
- <buildDirectory>${project.build.directory}</buildDirectory>
- <classpathElements>${project.testClasspathElements}</classpathElements>
- <compileSourceRoots>${project.testCompileSourceRoots}</compileSourceRoots>
- <compilerId default-value="javac">${maven.compiler.compilerId}</compilerId>
- <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>
- <debug default-value="true">${maven.compiler.debug}</debug>
- <encoding>${maven.compiler.encoding}</encoding>
- <executable>${maven.compiler.executable}</executable>
- <failOnError default-value="true">${maven.compiler.failOnError}</failOnError>
- <fork default-value="false"/>
- <maxmem>${maven.compiler.maxmem}</maxmem>
- <meminitial>${maven.compiler.meminitial}</meminitial>
- <optimize default-value="false">${maven.compiler.optimize}</optimize>
- <outputDirectory>${project.build.testOutputDirectory}</outputDirectory>
- <outputFileName>${project.build.finalName}</outputFileName>
- <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
- <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
- <skip>${maven.test.skip}</skip>
- <source>${maven.compiler.source}</source>
- <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
- <target>${maven.compiler.target}</target>
- <verbose default-value="false">${maven.compiler.verbose}</verbose>
-</configuration>
-[DEBUG] -----------------------------------------------------------------------
-[DEBUG] Goal: org.apache.maven.plugins:maven-surefire-plugin:2.4.3:test (default-test)
-[DEBUG] Style: Regular
-[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
-<configuration>
- <argLine>${surefire.jvm.args}</argLine>
- <basedir>${basedir}</basedir>
- <childDelegation default-value="false">${childDelegation}</childDelegation>
- <classesDirectory>${project.build.outputDirectory}</classesDirectory>
- <classpathElements>${project.testClasspathElements}</classpathElements>
- <debugForkedProcess>${maven.surefire.debug}</debugForkedProcess>
- <disableXmlReport default-value="false">false</disableXmlReport>
- <enableAssertions default-value="true">${enableAssertions}</enableAssertions>
- <excludedGroups>${excludedGroups}</excludedGroups>
- <failIfNoTests>${failIfNoTests}</failIfNoTests>
- <forkMode default-value="once">pertest</forkMode>
- <forkedProcessTimeoutInSeconds>${surefire.timeout}</forkedProcessTimeoutInSeconds>
- <groups>${groups}</groups>
- <includes>
- <include>**/**TestCase.java</include>
- </includes>
- <junitArtifactName default-value="junit:junit">${junitArtifactName}</junitArtifactName>
- <jvm>${jvm}</jvm>
- <localRepository>${localRepository}</localRepository>
- <parallel>${parallel}</parallel>
- <pluginArtifactMap>${plugin.artifactMap}</pluginArtifactMap>
- <printSummary default-value="true">true</printSummary>
- <project>${project}</project>
- <projectArtifactMap>${project.artifactMap}</projectArtifactMap>
- <redirectTestOutputToFile default-value="false">${maven.test.redirectTestOutputToFile}</redirectTestOutputToFile>
- <remoteRepositories>${project.pluginArtifactRepositories}</remoteRepositories>
- <reportFormat default-value="brief">${surefire.reportFormat}</reportFormat>
- <reportsDirectory>${project.build.directory}/surefire-reports</reportsDirectory>
- <session>${session}</session>
- <skip>${maven.test.skip}</skip>
- <skipExec>${maven.test.skip.exec}</skipExec>
- <skipTests>${skipTests}</skipTests>
- <test>${test}</test>
- <testClassesDirectory>${project.build.testOutputDirectory}</testClassesDirectory>
- <testFailureIgnore>true</testFailureIgnore>
- <testNGArtifactName default-value="org.testng:testng">${testNGArtifactName}</testNGArtifactName>
- <testSourceDirectory>${project.build.testSourceDirectory}</testSourceDirectory>
- <threadCount>${threadCount}</threadCount>
- <trimStackTrace default-value="true">false</trimStackTrace>
- <useFile default-value="true">false</useFile>
- <useManifestOnlyJar default-value="true">${surefire.useManifestOnlyJar}</useManifestOnlyJar>
- <useSystemClassLoader>${surefire.useSystemClassLoader}</useSystemClassLoader>
- <workingDirectory>${basedir}</workingDirectory>
-</configuration>
-[DEBUG] -----------------------------------------------------------------------
-[DEBUG] Goal: org.apache.maven.plugins:maven-war-plugin:2.2:war (default-war)
-[DEBUG] Style: Regular
-[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
-<configuration>
- <archiveClasses default-value="false">${archiveClasses}</archiveClasses>
- <attachClasses default-value="false"/>
- <cacheFile default-value="${project.build.directory}/war/work/webapp-cache.xml"/>
- <classesClassifier default-value="classes"/>
- <classesDirectory default-value="${project.build.outputDirectory}"/>
- <containerConfigXML>${maven.war.containerConfigXML}</containerConfigXML>
- <escapeString>${maven.war.escapeString}</escapeString>
- <escapedBackslashesInFilePath default-value="false">${maven.war.escapedBackslashesInFilePath}</escapedBackslashesInFilePath>
- <failOnMissingWebXml default-value="true">${failOnMissingWebXml}</failOnMissingWebXml>
- <filteringDeploymentDescriptors default-value="false">${maven.war.filteringDeploymentDescriptors}</filteringDeploymentDescriptors>
- <outputDirectory default-value="${project.build.directory}"/>
- <packagingExcludes>**/.svn/,WEB-INF/lib/guice-2.0.jar,WEB-INF/lib/jcip-annotations-1.0.jar</packagingExcludes>
- <primaryArtifact default-value="true">${primaryArtifact}</primaryArtifact>
- <project default-value="${project}"/>
- <session default-value="${session}"/>
- <useCache default-value="false">${useCache}</useCache>
- <warName default-value="${project.build.finalName}">picketlink-reg</warName>
- <warSourceDirectory default-value="${basedir}/src/main/webapp"/>
- <warSourceIncludes default-value="**"/>
- <webXml>${maven.war.webxml}</webXml>
- <webappDirectory default-value="${project.build.directory}/${project.build.finalName}">/home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/../../picketlink-reg/resources/</webappDirectory>
- <workDirectory default-value="${project.build.directory}/war/work"/>
-</configuration>
-[DEBUG] -----------------------------------------------------------------------
-[DEBUG] Goal: org.apache.maven.plugins:maven-source-plugin:2.1.1:jar-no-fork (attach-sources)
-[DEBUG] Style: Regular
-[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
-<configuration>
- <attach default-value="true">${attach}</attach>
- <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
- <excludeResources default-value="false">${source.excludeResources}</excludeResources>
- <finalName default-value="${project.build.finalName}"/>
- <forceCreation default-value="false">${source.forceCreation}</forceCreation>
- <includePom default-value="false">${source.includePom}</includePom>
- <outputDirectory default-value="${project.build.directory}"/>
- <project>${project}</project>
- <reactorProjects>${reactorProjects}</reactorProjects>
- <useDefaultExcludes default-value="true"/>
- <useDefaultManifestFile default-value="false"/>
-</configuration>
-[DEBUG] -----------------------------------------------------------------------
-[DEBUG] Goal: org.apache.maven.plugins:maven-install-plugin:2.3:install (default-install)
-[DEBUG] Style: Regular
-[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
-<configuration>
- <artifact default-value="${project.artifact}"/>
- <attachedArtifacts default-value="${project.attachedArtifacts}"/>
- <createChecksum default-value="false">${createChecksum}</createChecksum>
- <localRepository>${localRepository}</localRepository>
- <packaging default-value="${project.packaging}"/>
- <pomFile default-value="${project.file}"/>
- <updateReleaseInfo default-value="false">${updateReleaseInfo}</updateReleaseInfo>
-</configuration>
-[DEBUG] =======================================================================
-[DEBUG] Skipped remote update check for org.picketlink:picketlink-consolidated-social:2.0.0.Beta1-SNAPSHOT/maven-metadata.xml, locally built metadata up-to-date.
-[DEBUG] Failure to find org.picketlink:picketlink-consolidated-social:2.0.0.Beta1-SNAPSHOT/maven-metadata.xml in http://snapshots.jboss.org/maven2/ was cached in the local repository, resolution will not be reattempted until the update interval of snapshots.jboss.org has elapsed or updates are forced
-[DEBUG] Skipped remote update check for org.picketlink:picketlink-consolidated-social:2.0.0.Beta1-SNAPSHOT/maven-metadata.xml, locally built metadata up-to-date.
-[DEBUG] Failure to find org.picketlink:picketlink-consolidated-social:2.0.0.Beta1-SNAPSHOT/maven-metadata.xml in http://snapshots.jboss.org/maven2/ was cached in the local repository, resolution will not be reattempted until the update interval of snapshots.jboss.org has elapsed or updates are forced
-[DEBUG] Skipped remote update check for org.picketlink:picketlink-social-parent:2.0.0.Beta1-SNAPSHOT/maven-metadata.xml, locally built metadata up-to-date.
-[DEBUG] Failure to find org.picketlink:picketlink-social-parent:2.0.0.Beta1-SNAPSHOT/maven-metadata.xml in http://snapshots.jboss.org/maven2/ was cached in the local repository, resolution will not be reattempted until the update interval of snapshots.jboss.org has elapsed or updates are forced
-[DEBUG] org.picketlink:picketlink-reg-as7:war:2.0.0.Beta1-SNAPSHOT
-[DEBUG] org.picketlink:picketlink-consolidated-social:jar:2.0.0.Beta1-SNAPSHOT:compile
-[DEBUG] org.openid4java:openid4java-nodeps:jar:0.9.6:compile
-[DEBUG] commons-logging:commons-logging:jar:1.1.1:compile
-[DEBUG] org.json:json:jar:20090211:compile
-[INFO]
-[INFO] --- maven-clean-plugin:2.3:clean (default-clean) @ picketlink-reg-as7 ---
-[DEBUG] org.apache.maven.plugins:maven-clean-plugin:jar:2.3:
-[DEBUG] org.apache.maven:maven-project:jar:2.0.6:compile
-[DEBUG] org.apache.maven:maven-settings:jar:2.0.6:compile
-[DEBUG] org.apache.maven:maven-profile:jar:2.0.6:compile
-[DEBUG] org.apache.maven:maven-model:jar:2.0.6:compile
-[DEBUG] org.apache.maven:maven-artifact-manager:jar:2.0.6:compile
-[DEBUG] org.apache.maven:maven-repository-metadata:jar:2.0.6:compile
-[DEBUG] org.apache.maven:maven-plugin-registry:jar:2.0.6:compile
-[DEBUG] org.apache.maven:maven-artifact:jar:2.0.6:compile
-[DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile
-[DEBUG] junit:junit:jar:3.8.1:compile
-[DEBUG] classworlds:classworlds:jar:1.1-alpha-2:compile
-[DEBUG] org.apache.maven:maven-plugin-api:jar:2.0.6:compile
-[DEBUG] org.apache.maven.shared:file-management:jar:1.2.1:compile
-[DEBUG] org.apache.maven.shared:maven-shared-io:jar:1.1:compile
-[DEBUG] org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-6:compile
-[DEBUG] org.codehaus.plexus:plexus-utils:jar:1.5.6:compile
-[DEBUG] Created new class realm maven.api
-[DEBUG] Importing foreign packages into class realm maven.api
-[DEBUG] Imported: org.apache.maven.wagon.events < plexus.core
-[DEBUG] Imported: org.sonatype.aether.transfer < plexus.core
-[DEBUG] Imported: org.apache.maven.exception < plexus.core
-[DEBUG] Imported: org.sonatype.aether.metadata < plexus.core
-[DEBUG] Imported: org.codehaus.plexus.util.xml.Xpp3Dom < plexus.core
-[DEBUG] Imported: org.sonatype.aether.collection < plexus.core
-[DEBUG] Imported: org.sonatype.aether.version < plexus.core
-[DEBUG] Imported: org.apache.maven.monitor < plexus.core
-[DEBUG] Imported: org.apache.maven.wagon.repository < plexus.core
-[DEBUG] Imported: org.apache.maven.repository < plexus.core
-[DEBUG] Imported: org.apache.maven.wagon.resource < plexus.core
-[DEBUG] Imported: org.codehaus.plexus.logging < plexus.core
-[DEBUG] Imported: org.apache.maven.profiles < plexus.core
-[DEBUG] Imported: org.sonatype.aether.repository < plexus.core
-[DEBUG] Imported: org.apache.maven.classrealm < plexus.core
-[DEBUG] Imported: org.apache.maven.execution < plexus.core
-[DEBUG] Imported: org.sonatype.aether.artifact < plexus.core
-[DEBUG] Imported: org.sonatype.aether.spi < plexus.core
-[DEBUG] Imported: org.apache.maven.reporting < plexus.core
-[DEBUG] Imported: org.apache.maven.usability < plexus.core
-[DEBUG] Imported: org.codehaus.plexus.container < plexus.core
-[DEBUG] Imported: org.codehaus.plexus.component < plexus.core
-[DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlSerializer < plexus.core
-[DEBUG] Imported: org.apache.maven.wagon.authentication < plexus.core
-[DEBUG] Imported: org.apache.maven.lifecycle < plexus.core
-[DEBUG] Imported: org.codehaus.plexus.classworlds < plexus.core
-[DEBUG] Imported: org.sonatype.aether.graph < plexus.core
-[DEBUG] Imported: org.sonatype.aether.* < plexus.core
-[DEBUG] Imported: org.apache.maven.settings < plexus.core
-[DEBUG] Imported: org.codehaus.classworlds < plexus.core
-[DEBUG] Imported: org.sonatype.aether.impl < plexus.core
-[DEBUG] Imported: org.apache.maven.wagon.* < plexus.core
-[DEBUG] Imported: org.apache.maven.toolchain < plexus.core
-[DEBUG] Imported: org.sonatype.aether.deployment < plexus.core
-[DEBUG] Imported: org.apache.maven.wagon.observers < plexus.core
-[DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlPullParserException < plexus.core
-[DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlPullParser < plexus.core
-[DEBUG] Imported: org.apache.maven.configuration < plexus.core
-[DEBUG] Imported: org.apache.maven.cli < plexus.core
-[DEBUG] Imported: org.sonatype.aether.installation < plexus.core
-[DEBUG] Imported: org.codehaus.plexus.context < plexus.core
-[DEBUG] Imported: org.apache.maven.wagon.authorization < plexus.core
-[DEBUG] Imported: org.apache.maven.project < plexus.core
-[DEBUG] Imported: org.codehaus.plexus.lifecycle < plexus.core
-[DEBUG] Imported: org.codehaus.plexus.configuration < plexus.core
-[DEBUG] Imported: org.apache.maven.artifact < plexus.core
-[DEBUG] Imported: org.apache.maven.model < plexus.core
-[DEBUG] Imported: org.apache.maven.* < plexus.core
-[DEBUG] Imported: org.apache.maven.wagon.proxy < plexus.core
-[DEBUG] Imported: org.sonatype.aether.resolution < plexus.core
-[DEBUG] Imported: org.apache.maven.plugin < plexus.core
-[DEBUG] Imported: org.codehaus.plexus.* < plexus.core
-[DEBUG] Imported: org.codehaus.plexus.personality < plexus.core
-[DEBUG] Populating class realm maven.api
-[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-clean-plugin:2.3
-[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-clean-plugin:2.3
-[DEBUG] Imported: < maven.api
-[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-clean-plugin:2.3
-[DEBUG] Included: org.apache.maven.plugins:maven-clean-plugin:jar:2.3
-[DEBUG] Included: junit:junit:jar:3.8.1
-[DEBUG] Included: org.apache.maven.shared:file-management:jar:1.2.1
-[DEBUG] Included: org.apache.maven.shared:maven-shared-io:jar:1.1
-[DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:1.5.6
-[DEBUG] Excluded: org.apache.maven:maven-project:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-settings:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-profile:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-model:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-artifact-manager:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-repository-metadata:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-plugin-registry:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-artifact:jar:2.0.6
-[DEBUG] Excluded: org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1
-[DEBUG] Excluded: classworlds:classworlds:jar:1.1-alpha-2
-[DEBUG] Excluded: org.apache.maven:maven-plugin-api:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-6
-[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.3:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.3, parent: sun.misc.Launcher$AppClassLoader@1a45a877]
-[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.3:clean' with basic configurator -->
-[DEBUG] (f) directory = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target
-[DEBUG] (f) excludeDefaultDirectories = false
-[DEBUG] (f) failOnError = true
-[DEBUG] (f) followSymLinks = false
-[DEBUG] (f) outputDirectory = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/classes
-[DEBUG] (f) project = MavenProject: org.picketlink:picketlink-reg-as7:2.0.0.Beta1-SNAPSHOT @ /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/pom.xml
-[DEBUG] (f) reportDirectory = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/site
-[DEBUG] (f) skip = false
-[DEBUG] (f) testOutputDirectory = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/test-classes
-[DEBUG] -- end configuration --
-[INFO] Deleting file set: /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target (included: [**], excluded: [])
-[INFO] Scanning for deletable directories.
-[INFO] Adding symbolic link dirs which were previously excluded to the list being deleted.
-[DEBUG] Originally marked for delete: [classes, , maven-archiver]
-[DEBUG] Marked for preserve (with followSymlinks == false): []
-[DEBUG] Symlinks marked for deletion (originally mismarked): []
-[INFO] Re-scanning for deletable files.
-[INFO] Adding symbolic link files which were previously excluded to the list being deleted.
-[DEBUG] Originally marked for delete: [classes, , maven-archiver/pom.properties, picketlink-reg.war, maven-archiver]
-[DEBUG] Marked for preserve (with followSymlinks == false): []
-[DEBUG] Symlinks marked for deletion (originally mismarked): []
-[DEBUG] Found deletable paths: [classes
-
- maven-archiver/pom.properties
- picketlink-reg.war
- maven-archiver]
-[DEBUG] Checking for symlink:
-File's canonical path: /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/classes
-File's absolute path with canonical parent: /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/classes
-[INFO] Deleting directory: /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/classes
-[DEBUG] Checking for symlink:
-File's canonical path: /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target
-File's absolute path with canonical parent: /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target
-[INFO] Deleting directory: /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target
-[DEBUG] Checking for symlink:
-File's canonical path: /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/maven-archiver
-File's absolute path with canonical parent: /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/maven-archiver
-[DEBUG] Skipping non-existing directory: /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/classes
-[DEBUG] Skipping non-existing directory: /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/test-classes
-[DEBUG] Skipping non-existing directory: /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/site
-[INFO]
-[INFO] --- maven-enforcer-plugin:1.0-beta-1:enforce (enforce-plugin-versions) @ picketlink-reg-as7 ---
-[DEBUG] org.apache.maven.plugins:maven-enforcer-plugin:jar:1.0-beta-1:
-[DEBUG] org.apache.maven:maven-artifact:jar:2.0.9:compile
-[DEBUG] org.apache.maven:maven-plugin-api:jar:2.0.9:compile
-[DEBUG] org.apache.maven:maven-project:jar:2.0.9:compile
-[DEBUG] org.apache.maven:maven-settings:jar:2.0.9:compile
-[DEBUG] org.apache.maven:maven-profile:jar:2.0.9:compile
-[DEBUG] org.apache.maven:maven-model:jar:2.0.9:compile
-[DEBUG] org.apache.maven:maven-artifact-manager:jar:2.0.9:compile
-[DEBUG] org.apache.maven:maven-plugin-registry:jar:2.0.9:compile
-[DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile
-[DEBUG] junit:junit:jar:3.8.2:test (scope managed from compile) (version managed from 3.8.1)
-[DEBUG] org.apache.maven:maven-core:jar:2.0.9:compile
-[DEBUG] org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.9:compile
-[DEBUG] org.apache.maven.reporting:maven-reporting-api:jar:2.0.9:compile
-[DEBUG] org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-10:compile
-[DEBUG] org.apache.maven:maven-repository-metadata:jar:2.0.9:compile
-[DEBUG] org.apache.maven:maven-error-diagnostics:jar:2.0.9:compile
-[DEBUG] commons-cli:commons-cli:jar:1.0:compile
-[DEBUG] org.apache.maven:maven-plugin-descriptor:jar:2.0.9:compile
-[DEBUG] org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile
-[DEBUG] org.apache.maven:maven-monitor:jar:2.0.9:compile
-[DEBUG] classworlds:classworlds:jar:1.1:compile
-[DEBUG] org.codehaus.plexus:plexus-utils:jar:1.5.8:compile
-[DEBUG] commons-lang:commons-lang:jar:2.3:compile
-[DEBUG] org.apache.maven.enforcer:enforcer-api:jar:1.0-beta-1:compile
-[DEBUG] org.apache.maven.enforcer:enforcer-rules:jar:1.0-beta-1:compile
-[DEBUG] org.beanshell:bsh:jar:2.0b4:compile
-[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-enforcer-plugin:1.0-beta-1
-[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-enforcer-plugin:1.0-beta-1
-[DEBUG] Imported: < maven.api
-[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-enforcer-plugin:1.0-beta-1
-[DEBUG] Included: org.apache.maven.plugins:maven-enforcer-plugin:jar:1.0-beta-1
-[DEBUG] Included: org.apache.maven.reporting:maven-reporting-api:jar:2.0.9
-[DEBUG] Included: org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-10
-[DEBUG] Included: commons-cli:commons-cli:jar:1.0
-[DEBUG] Included: org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4
-[DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:1.5.8
-[DEBUG] Included: commons-lang:commons-lang:jar:2.3
-[DEBUG] Included: org.apache.maven.enforcer:enforcer-api:jar:1.0-beta-1
-[DEBUG] Included: org.apache.maven.enforcer:enforcer-rules:jar:1.0-beta-1
-[DEBUG] Included: org.beanshell:bsh:jar:2.0b4
-[DEBUG] Excluded: org.apache.maven:maven-artifact:jar:2.0.9
-[DEBUG] Excluded: org.apache.maven:maven-plugin-api:jar:2.0.9
-[DEBUG] Excluded: org.apache.maven:maven-project:jar:2.0.9
-[DEBUG] Excluded: org.apache.maven:maven-settings:jar:2.0.9
-[DEBUG] Excluded: org.apache.maven:maven-profile:jar:2.0.9
-[DEBUG] Excluded: org.apache.maven:maven-model:jar:2.0.9
-[DEBUG] Excluded: org.apache.maven:maven-artifact-manager:jar:2.0.9
-[DEBUG] Excluded: org.apache.maven:maven-plugin-registry:jar:2.0.9
-[DEBUG] Excluded: org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1
-[DEBUG] Excluded: junit:junit:jar:3.8.2
-[DEBUG] Excluded: org.apache.maven:maven-core:jar:2.0.9
-[DEBUG] Excluded: org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.9
-[DEBUG] Excluded: org.apache.maven:maven-repository-metadata:jar:2.0.9
-[DEBUG] Excluded: org.apache.maven:maven-error-diagnostics:jar:2.0.9
-[DEBUG] Excluded: org.apache.maven:maven-plugin-descriptor:jar:2.0.9
-[DEBUG] Excluded: org.apache.maven:maven-monitor:jar:2.0.9
-[DEBUG] Excluded: classworlds:classworlds:jar:1.1
-[DEBUG] Configuring mojo org.apache.maven.plugins:maven-enforcer-plugin:1.0-beta-1:enforce from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-enforcer-plugin:1.0-beta-1, parent: sun.misc.Launcher$AppClassLoader@1a45a877]
-[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-enforcer-plugin:1.0-beta-1:enforce' with basic configurator -->
-[DEBUG] (s) fail = true
-[DEBUG] (s) failFast = false
-[DEBUG] (f) ignoreCache = false
-[DEBUG] (s) project = MavenProject: org.picketlink:picketlink-reg-as7:2.0.0.Beta1-SNAPSHOT @ /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/pom.xml
-[DEBUG] (f) message = Best practice is to always define plugin versions!
-[DEBUG] (f) banLatest = true
-[DEBUG] (f) banRelease = true
-[DEBUG] (f) phases = deploy,site
-[DEBUG] (s) rules = [org.apache.maven.plugins.enforcer.RequirePluginVersions@53458dcb]
-[DEBUG] (s) session = org.apache.maven.execution.MavenSession@69408a75
-[DEBUG] (s) skip = false
-[DEBUG] -- end configuration --
-[DEBUG] Executing rule: org.apache.maven.plugins.enforcer.RequirePluginVersions
-[WARNING] This rule is not compatible with the current version of Maven. The rule is not able to perform any checks.
-[INFO]
-[INFO] --- maven-enforcer-plugin:1.0-beta-1:enforce (enforce-java-version) @ picketlink-reg-as7 ---
-[DEBUG] Configuring mojo org.apache.maven.plugins:maven-enforcer-plugin:1.0-beta-1:enforce from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-enforcer-plugin:1.0-beta-1, parent: sun.misc.Launcher$AppClassLoader@1a45a877]
-[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-enforcer-plugin:1.0-beta-1:enforce' with basic configurator -->
-[DEBUG] (s) fail = true
-[DEBUG] (s) failFast = false
-[DEBUG] (f) ignoreCache = false
-[DEBUG] (s) project = MavenProject: org.picketlink:picketlink-reg-as7:2.0.0.Beta1-SNAPSHOT @ /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/pom.xml
-[DEBUG] (f) message = To build this project JDK 1.5 (or greater) is required. Please install it.
-[DEBUG] (s) version = 1.5
-[DEBUG] (s) rules = [org.apache.maven.plugins.enforcer.RequireJavaVersion@438d460]
-[DEBUG] (s) session = org.apache.maven.execution.MavenSession@69408a75
-[DEBUG] (s) skip = false
-[DEBUG] -- end configuration --
-[DEBUG] Executing rule: org.apache.maven.plugins.enforcer.RequireJavaVersion
-[DEBUG] Rule org.apache.maven.plugins.enforcer.RequireJavaVersion is cacheable.
-[DEBUG] Detected Java String: 1.6.0_31
-[DEBUG] Normalized Java String: 1.6.0-31
-[DEBUG] Parsed Version: Major: 1 Minor: 6 Incremental: 0 Build: 31 Qualifier: null
-[DEBUG] Detected JDK Version: 1.6.0-31 is allowed in the range 1.5.
-[INFO]
-[INFO] --- maven-enforcer-plugin:1.0-beta-1:enforce (enforce-maven-version) @ picketlink-reg-as7 ---
-[DEBUG] Configuring mojo org.apache.maven.plugins:maven-enforcer-plugin:1.0-beta-1:enforce from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-enforcer-plugin:1.0-beta-1, parent: sun.misc.Launcher$AppClassLoader@1a45a877]
-[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-enforcer-plugin:1.0-beta-1:enforce' with basic configurator -->
-[DEBUG] (s) fail = true
-[DEBUG] (s) failFast = false
-[DEBUG] (f) ignoreCache = false
-[DEBUG] (s) project = MavenProject: org.picketlink:picketlink-reg-as7:2.0.0.Beta1-SNAPSHOT @ /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/pom.xml
-[DEBUG] (f) message = To build this project Maven 2.0.9 (or greater) is required. Please install it.
-[DEBUG] (s) version = 2.0.9
-[DEBUG] (s) rules = [org.apache.maven.plugins.enforcer.RequireMavenVersion@6d4c4d61]
-[DEBUG] (s) session = org.apache.maven.execution.MavenSession@69408a75
-[DEBUG] (s) skip = false
-[DEBUG] -- end configuration --
-[DEBUG] Executing rule: org.apache.maven.plugins.enforcer.RequireMavenVersion
-[DEBUG] Rule org.apache.maven.plugins.enforcer.RequireMavenVersion is cacheable.
-[DEBUG] Detected Maven Version: 3.0.2
-[DEBUG] Detected Maven Version: 3.0.2 is allowed in the range 2.0.9.
-[INFO]
-[INFO] --- maven-resources-plugin:2.4.1:resources (default-resources) @ picketlink-reg-as7 ---
-[DEBUG] org.apache.maven.plugins:maven-resources-plugin:jar:2.4.1:
-[DEBUG] org.apache.maven:maven-plugin-api:jar:2.0.6:compile
-[DEBUG] org.apache.maven:maven-project:jar:2.0.6:compile
-[DEBUG] org.apache.maven:maven-settings:jar:2.0.6:compile
-[DEBUG] org.apache.maven:maven-profile:jar:2.0.6:compile
-[DEBUG] org.apache.maven:maven-model:jar:2.0.6:compile
-[DEBUG] org.apache.maven:maven-artifact-manager:jar:2.0.6:compile
-[DEBUG] org.apache.maven:maven-repository-metadata:jar:2.0.6:compile
-[DEBUG] org.apache.maven:maven-plugin-registry:jar:2.0.6:compile
-[DEBUG] org.apache.maven:maven-artifact:jar:2.0.6:compile
-[DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile
-[DEBUG] junit:junit:jar:3.8.1:compile
-[DEBUG] classworlds:classworlds:jar:1.1-alpha-2:compile
-[DEBUG] org.codehaus.plexus:plexus-utils:jar:1.5.15:compile
-[DEBUG] org.apache.maven.shared:maven-filtering:jar:1.0-beta-3:compile
-[DEBUG] org.apache.maven:maven-core:jar:2.0.6:compile
-[DEBUG] org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.6:compile
-[DEBUG] org.apache.maven.reporting:maven-reporting-api:jar:2.0.6:compile
-[DEBUG] org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-7:compile
-[DEBUG] org.apache.maven:maven-error-diagnostics:jar:2.0.6:compile
-[DEBUG] commons-cli:commons-cli:jar:1.0:compile
-[DEBUG] org.apache.maven:maven-plugin-descriptor:jar:2.0.6:compile
-[DEBUG] org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile
-[DEBUG] org.apache.maven:maven-monitor:jar:2.0.6:compile
-[DEBUG] org.sonatype.plexus:plexus-build-api:jar:0.0.4:compile
-[DEBUG] org.codehaus.plexus:plexus-interpolation:jar:1.13:compile
-[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.1
-[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.1
-[DEBUG] Imported: < maven.api
-[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.1
-[DEBUG] Included: org.apache.maven.plugins:maven-resources-plugin:jar:2.4.1
-[DEBUG] Included: junit:junit:jar:3.8.1
-[DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:1.5.15
-[DEBUG] Included: org.apache.maven.shared:maven-filtering:jar:1.0-beta-3
-[DEBUG] Included: org.apache.maven.reporting:maven-reporting-api:jar:2.0.6
-[DEBUG] Included: org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-7
-[DEBUG] Included: commons-cli:commons-cli:jar:1.0
-[DEBUG] Included: org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4
-[DEBUG] Included: org.sonatype.plexus:plexus-build-api:jar:0.0.4
-[DEBUG] Included: org.codehaus.plexus:plexus-interpolation:jar:1.13
-[DEBUG] Excluded: org.apache.maven:maven-plugin-api:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-project:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-settings:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-profile:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-model:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-artifact-manager:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-repository-metadata:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-plugin-registry:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-artifact:jar:2.0.6
-[DEBUG] Excluded: org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1
-[DEBUG] Excluded: classworlds:classworlds:jar:1.1-alpha-2
-[DEBUG] Excluded: org.apache.maven:maven-core:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-error-diagnostics:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-plugin-descriptor:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-monitor:jar:2.0.6
-[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.1:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.1, parent: sun.misc.Launcher$AppClassLoader@1a45a877]
-[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.1:resources' with basic configurator -->
-[DEBUG] (f) buildFilters = []
-[DEBUG] (f) encoding = UTF-8
-[DEBUG] (f) escapeWindowsPaths = true
-[DEBUG] (s) includeEmptyDirs = false
-[DEBUG] (s) outputDirectory = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/classes
-[DEBUG] (s) overwrite = false
-[DEBUG] (f) project = MavenProject: org.picketlink:picketlink-reg-as7:2.0.0.Beta1-SNAPSHOT @ /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/pom.xml
-[DEBUG] (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/src/main/resources, PatternSet [includes: {}, excludes: {}]}}]
-[DEBUG] (f) session = org.apache.maven.execution.MavenSession@69408a75
-[DEBUG] (f) useBuildFilters = true
-[DEBUG] (s) useDefaultDelimiters = true
-[DEBUG] -- end configuration --
-[DEBUG] properties used {env.DESKTOP_SESSION=gnome, file.encoding.pkg=sun.io, version.assembly.plugin=2.2-beta-4, java.home=/home/anil/java/jdk1.6.0_31/jre, env.DISPLAY=:0, env.LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=01;05;37;41:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lz=01;31:*.xz=01;31:*.bz2=01;31:*.tbz=01;31:*.tbz2=01;31:*.bz=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:!
*.mkv=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.axv=01;35:*.anx=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=01;36:*.au=01;36:*.flac=01;36:*.mid=01;36:*.midi=01;36:*.mka=01;36:*.mp3=01;36:*.mpc=01;36:*.ogg=01;36:*.ra=01;36:*.wav=01;36:*.axa=01;36:*.oga=01;36:*.spx=01;36:*.xspf=01;36:*.pdf=00;33:*.ps=00;33:*.ps.gz=00;33:*.txt=00;33:*.patch=00;33:*.diff=00;33:*.log=00;33:*.tex=00;33:*.xls=00;33:*.xlsx=00;33:*.ppt=00;33:*.pptx=00;33:*.rtf=00;33:*.doc=00;33:*.docx=00;33:*.odt=00;33:*.ods=00;33:*.odp=00;33:*.xml=00;33:*.epub=00;33:*.abw=00;33:*.html=00;33:*.wpd=00;33:, env.XDG_VTNR=1, classworlds.conf=/opt/apache-maven-3.0.2/bin/m2.conf, env.XDG_SESSION_COOKIE=49aaafdaf7853547bcef9f320000000c-1331816034.260259-995781388, java.endorsed.dirs=/home/anil/java/jdk1.6.0!
_31/jre/lib/endorsed, env.LOGNAME=anil, env.USERNAME=anil, env!
.XDG_SEA
T=seat0, env.SESSION_MANAGER=local/unix:@/tmp/.ICE-unix/1192,unix/unix:/tmp/.ICE-unix/1192, env.KDEDIRS=/usr, sun.os.patch.level=unknown, java.vendor.url=http://java.sun.com/, version.javadoc.plugin=2.6.1, version.findbugs.plugin=2.2, java.version=1.6.0_31, arguments=-Prelease, java.vendor.url.bug=http://java.sun.com/cgi-bin/bugreport.cgi, version.deploy.plugin=2.4, version.pir.plugin=2.1.2, env.GNOME_KEYRING_CONTROL=/tmp/keyring-Qy8rWn, user.name=anil, env.LANG=en_US.UTF-8, version.site.plugin=2.0.1, sun.io.unicode.encoding=UnicodeLittle, env.CVSROOT=:ext:asaldhana@cvs.forge.jboss.com:/cvsroot/jboss, sun.jnu.encoding=UTF-8, env.DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-QmlohiCPYg,guid=d0238f4566dc3bf53efde65600000016, java.runtime.name=Java(TM) SE Runtime Environment, version.resources.plugin=2.4.1, java.specification.name=Java Platform API Specification, version.plugin.plugin=2.5.1, user.timezone=US/Central, env.LESSOPEN=||/usr/bin/lesspipe.sh %s, path.separator=:, !
env.XMODIFIERS=@im=none, file.encoding=UTF-8, version.war.plugin=2.1-beta-1, env.HOME=/home/anil, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher -X clean install, version.taglist.plugin=2.4, version.pmd.plugin=2.4, version.eclipse.plugin=2.7, env.HOSTNAME=sadbhav, version.javancss.plugin=2.0, java.io.tmpdir=/tmp, env.GNOME_KEYRING_PID=1186, user.language=en, env.HISTCONTROL=ignoredups, line.separator=
-, env.ANT_OPTS=-Xmx512m, env.HISTSIZE=1000, version.sonar.plugin=1.0-beta-1, version.enforcer.plugin=1.0-beta-1, version.antrun.plugin=1.3, version.cobertura.plugin=2.3, java.vm.info=mixed mode, sun.desktop=gnome, java.vm.specification.name=Java Virtual Machine Specification, jdk.min.version=1.5, version.install.plugin=2.3, env.COLORTERM=gnome-terminal, env.M2_HOME=/opt/apache-maven-3.0.2, env.CATALINA_OPTS=-Xms1024m -Xmx1024m -XX:MaxPermSize=128m, env.GDMSESSION=gnome, version.jxr.plugin=2.1, java.awt.printerjob=sun.print.PSPrinterJob, env.WINDOWID=23068677, env.CLASSPATH=:/opt/apache-ant-1.8.2/lib/ant-junit.jar:/opt/apache-ant-1.8.2/lib/ant-junit.jar, os.name=Linux, java.specification.vendor=Sun Microsystems Inc., version.ear.plugin=2.4, env.TERM=xterm, java.vm.name=Java HotSpot(TM) 64-Bit Server VM, version.checkstyle.plugin=2.4, env.QT_IM_MODULE=xim, java.library.path=/home/anil/java/jdk1.6.0_31/jre/lib/amd64/server:/home/anil/java/jdk1.6.0_31/jre/lib/amd64:/home/anil/!
java/jdk1.6.0_31/jre/../lib/amd64:/usr/lib64/qt-3.3/lib:/usr/lib64/qt-3.3/lib::/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib, env.PATH=/usr/lib/qt-3.3/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/usr/bin:/usr/sbin:/usr/java/latest/bin:/opt/apache-maven-3.0.2/bin:/home/anil/.local/bin:/home/anil/bin:/usr/bin:/usr/sbin:/usr/java/latest/bin:/opt/apache-maven-3.0.2/bin, jboss.snapshots.repo.url=https://repository.jboss.org/nexus/content/repos..., env.JDK_HOME=/usr/java/latest, version.jdepend.plugin=2.0-beta-2, targetJdk=1.5, java.class.version=50.0, env.SHLVL=2, env.LD_LIBRARY_PATH=/home/anil/java/jdk1.6.0_31/jre/lib/amd64/server:/home/anil/java/jdk1.6.0_31/jre/lib/amd64:/home/anil/java/jdk1.6.0_31/jre/../lib/amd64:/usr/lib64/qt-3.3/lib:/usr/lib64/qt-3.3/lib:, version.ejb.plugin=2.2, env.GJS_DEBUG_OUTPUT=stderr, version.clover2.plugin=2.5.1, sun.boot.library.path=/home/anil/java/jdk1.6.0_31/jre/lib/amd64, project.build.sourceE!
ncoding=UTF-8, sun.management.compiler=HotSpot 64-Bit Tiered C!
ompilers
, java.awt.graphicsenv=sun.awt.X11GraphicsEnvironment, env.USER=anil, version.buildnumber.plugin=1.0-beta-3, version.clean.plugin=2.3, java.vm.specification.version=1.0, env.KDE_IS_PRELINKED=1, version.source.plugin=2.1.1, env.NLSPATH=/usr/dt/lib/nls/msg/%L/%N.cat, sun.cpu.isalist=, version.release.plugin=2.0-beta-9, java.ext.dirs=/home/anil/java/jdk1.6.0_31/jre/lib/ext:/usr/java/packages/lib/ext, env.GJS_DEBUG_TOPICS=JS ERROR;JS LOG, os.version=3.2.9-2.fc16.x86_64, user.home=/home/anil, version.surefire.plugin=2.4.3, java.vm.vendor=Sun Microsystems Inc., jboss.releases.repo.url=https://repository.jboss.org/nexus/service/local/..., env.JAVA_HOME=/usr/java/latest, env.XDG_SESSION_ID=2, env.XAUTHORITY=/var/run/gdm/auth-for-anil-a9a0Bn/database, user.dir=/home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg, env.XFILESEARCHPATH=/usr/dt/app-defaults/%L/Dt, env.WINDOWPATH=1, env.MAIL=/var/spool/mail/anil, env.M2=/opt/apache-maven-3.0.2/bin, e!
nv.PWD=/home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg, version.rar.plugin=2.2, sun.cpu.endian=little, useReleaseProfile=false, env.QTLIB=/usr/lib/qt-3.3/lib, maven.min.version=2.0.9, java.vm.version=20.6-b01, java.class.path=/opt/apache-maven-3.0.2/boot/plexus-classworlds-2.4.jar, version.idea.plugin=2.2, downloadSources=true, env.QTDIR=/usr/lib/qt-3.3, os.arch=amd64, version.compiler.plugin=2.0.2, sun.java.launcher=SUN_STANDARD, env.IMSETTINGS_INTEGRATE_DESKTOP=yes, java.vm.specification.vendor=Sun Microsystems Inc., file.separator=/, java.runtime.version=1.6.0_31-b04, env.SSH_AUTH_SOCK=/tmp/keyring-Qy8rWn/ssh, sun.boot.class.path=/home/anil/java/jdk1.6.0_31/jre/lib/resources.jar:/home/anil/java/jdk1.6.0_31/jre/lib/rt.jar:/home/anil/java/jdk1.6.0_31/jre/lib/sunrsasign.jar:/home/anil/java/jdk1.6.0_31/jre/lib/jsse.jar:/home/anil/java/jdk1.6.0_31/jre/lib/jce.jar:/home/anil/java/jdk1.6.0_31/jre/lib/charsets.jar:/home/anil/java/jdk1.6.0_31/jre/lib/modu!
les/jdk.boot.jar:/home/anil/java/jdk1.6.0_31/jre/classes, env.!
XDG_RUNT
IME_DIR=/run/user/anil, version.dependency.plugin=2.1, env.QTINC=/usr/lib/qt-3.3/include, user.country=US, env.ANT_HOME=/opt/apache-ant-1.8.2, env.SHELL=/bin/bash, maven.home=/opt/apache-maven-3.0.2, maven.compiler.target=1.5, java.vendor=Sun Microsystems Inc., version.jar.plugin=2.2, env.GPG_AGENT_INFO=/tmp/keyring-Qy8rWn/gpg:0:1, env.IMSETTINGS_MODULE=none, maven.compiler.source=1.5, java.specification.version=1.6, sun.arch.data.model=64, env.GNOME_DESKTOP_SESSION_ID=this-is-deprecated}
-[INFO] Using 'UTF-8' encoding to copy filtered resources.
-[DEBUG] resource with targetPath null
-directory /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/src/main/resources
-excludes []
-includes []
-[INFO] Copying 0 resource
-[INFO]
-[INFO] --- maven-compiler-plugin:2.0.2:compile (default-compile) @ picketlink-reg-as7 ---
-[DEBUG] org.apache.maven.plugins:maven-compiler-plugin:jar:2.0.2:
-[DEBUG] org.apache.maven:maven-plugin-api:jar:2.0:compile
-[DEBUG] org.codehaus.plexus:plexus-utils:jar:1.0.4:compile
-[DEBUG] org.codehaus.plexus:plexus-compiler-api:jar:1.5.3:compile
-[DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8:compile
-[DEBUG] junit:junit:jar:3.8.1:compile
-[DEBUG] classworlds:classworlds:jar:1.1-alpha-2:compile
-[DEBUG] org.codehaus.plexus:plexus-compiler-manager:jar:1.5.3:compile
-[DEBUG] org.codehaus.plexus:plexus-compiler-javac:jar:1.5.3:runtime
-[DEBUG] org.apache.maven:maven-artifact:jar:2.0:compile
-[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:2.0.2
-[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:2.0.2
-[DEBUG] Imported: < maven.api
-[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:2.0.2
-[DEBUG] Included: org.apache.maven.plugins:maven-compiler-plugin:jar:2.0.2
-[DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:1.0.4
-[DEBUG] Included: org.codehaus.plexus:plexus-compiler-api:jar:1.5.3
-[DEBUG] Included: junit:junit:jar:3.8.1
-[DEBUG] Included: org.codehaus.plexus:plexus-compiler-manager:jar:1.5.3
-[DEBUG] Included: org.codehaus.plexus:plexus-compiler-javac:jar:1.5.3
-[DEBUG] Excluded: org.apache.maven:maven-plugin-api:jar:2.0
-[DEBUG] Excluded: org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8
-[DEBUG] Excluded: classworlds:classworlds:jar:1.1-alpha-2
-[DEBUG] Excluded: org.apache.maven:maven-artifact:jar:2.0
-[DEBUG] Configuring mojo org.apache.maven.plugins:maven-compiler-plugin:2.0.2:compile from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-compiler-plugin:2.0.2, parent: sun.misc.Launcher$AppClassLoader@1a45a877]
-[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-compiler-plugin:2.0.2:compile' with basic configurator -->
-[DEBUG] (f) basedir = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg
-[DEBUG] (f) buildDirectory = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target
-[DEBUG] (f) classpathElements = [/home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/classes, /home/anil/.m2/repository/org/picketlink/picketlink-consolidated-social/2.0.0.Beta1-SNAPSHOT/picketlink-consolidated-social-2.0.0.Beta1-SNAPSHOT.jar, /home/anil/.m2/repository/org/openid4java/openid4java-nodeps/0.9.6/openid4java-nodeps-0.9.6.jar, /home/anil/.m2/repository/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.jar, /home/anil/.m2/repository/org/json/json/20090211/json-20090211.jar]
-[DEBUG] (f) compileSourceRoots = [/home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/src/main/java]
-[DEBUG] (f) compilerId = javac
-[DEBUG] (f) debug = true
-[DEBUG] (f) failOnError = true
-[DEBUG] (f) fork = false
-[DEBUG] (f) optimize = false
-[DEBUG] (f) outputDirectory = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/classes
-[DEBUG] (f) outputFileName = picketlink-reg-as7-2.0.0.Beta1-SNAPSHOT
-[DEBUG] (f) projectArtifact = org.picketlink:picketlink-reg-as7:war:2.0.0.Beta1-SNAPSHOT
-[DEBUG] (f) showDeprecation = false
-[DEBUG] (f) showWarnings = false
-[DEBUG] (f) source = 1.5
-[DEBUG] (f) staleMillis = 0
-[DEBUG] (f) target = 1.5
-[DEBUG] (f) verbose = false
-[DEBUG] -- end configuration --
-[DEBUG] Using compiler 'javac'.
-[INFO] No sources to compile
-[INFO]
-[INFO] --- maven-resources-plugin:2.4.1:testResources (default-testResources) @ picketlink-reg-as7 ---
-[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.1:testResources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.1, parent: sun.misc.Launcher$AppClassLoader@1a45a877]
-[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.1:testResources' with basic configurator -->
-[DEBUG] (f) buildFilters = []
-[DEBUG] (f) encoding = UTF-8
-[DEBUG] (f) escapeWindowsPaths = true
-[DEBUG] (s) includeEmptyDirs = false
-[DEBUG] (s) outputDirectory = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/test-classes
-[DEBUG] (s) overwrite = false
-[DEBUG] (f) project = MavenProject: org.picketlink:picketlink-reg-as7:2.0.0.Beta1-SNAPSHOT @ /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/pom.xml
-[DEBUG] (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/src/test/resources, PatternSet [includes: {}, excludes: {}]}}]
-[DEBUG] (f) session = org.apache.maven.execution.MavenSession@69408a75
-[DEBUG] (f) useBuildFilters = true
-[DEBUG] (s) useDefaultDelimiters = true
-[DEBUG] -- end configuration --
-[DEBUG] properties used {env.DESKTOP_SESSION=gnome, file.encoding.pkg=sun.io, version.assembly.plugin=2.2-beta-4, java.home=/home/anil/java/jdk1.6.0_31/jre, env.DISPLAY=:0, env.LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=01;05;37;41:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lz=01;31:*.xz=01;31:*.bz2=01;31:*.tbz=01;31:*.tbz2=01;31:*.bz=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:!
*.mkv=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.axv=01;35:*.anx=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=01;36:*.au=01;36:*.flac=01;36:*.mid=01;36:*.midi=01;36:*.mka=01;36:*.mp3=01;36:*.mpc=01;36:*.ogg=01;36:*.ra=01;36:*.wav=01;36:*.axa=01;36:*.oga=01;36:*.spx=01;36:*.xspf=01;36:*.pdf=00;33:*.ps=00;33:*.ps.gz=00;33:*.txt=00;33:*.patch=00;33:*.diff=00;33:*.log=00;33:*.tex=00;33:*.xls=00;33:*.xlsx=00;33:*.ppt=00;33:*.pptx=00;33:*.rtf=00;33:*.doc=00;33:*.docx=00;33:*.odt=00;33:*.ods=00;33:*.odp=00;33:*.xml=00;33:*.epub=00;33:*.abw=00;33:*.html=00;33:*.wpd=00;33:, env.XDG_VTNR=1, classworlds.conf=/opt/apache-maven-3.0.2/bin/m2.conf, env.XDG_SESSION_COOKIE=49aaafdaf7853547bcef9f320000000c-1331816034.260259-995781388, java.endorsed.dirs=/home/anil/java/jdk1.6.0!
_31/jre/lib/endorsed, env.LOGNAME=anil, env.USERNAME=anil, env!
.XDG_SEA
T=seat0, env.SESSION_MANAGER=local/unix:@/tmp/.ICE-unix/1192,unix/unix:/tmp/.ICE-unix/1192, env.KDEDIRS=/usr, sun.os.patch.level=unknown, java.vendor.url=http://java.sun.com/, version.javadoc.plugin=2.6.1, version.findbugs.plugin=2.2, java.version=1.6.0_31, arguments=-Prelease, java.vendor.url.bug=http://java.sun.com/cgi-bin/bugreport.cgi, version.deploy.plugin=2.4, version.pir.plugin=2.1.2, env.GNOME_KEYRING_CONTROL=/tmp/keyring-Qy8rWn, user.name=anil, env.LANG=en_US.UTF-8, version.site.plugin=2.0.1, sun.io.unicode.encoding=UnicodeLittle, env.CVSROOT=:ext:asaldhana@cvs.forge.jboss.com:/cvsroot/jboss, sun.jnu.encoding=UTF-8, env.DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-QmlohiCPYg,guid=d0238f4566dc3bf53efde65600000016, java.runtime.name=Java(TM) SE Runtime Environment, version.resources.plugin=2.4.1, java.specification.name=Java Platform API Specification, version.plugin.plugin=2.5.1, user.timezone=US/Central, env.LESSOPEN=||/usr/bin/lesspipe.sh %s, path.separator=:, !
env.XMODIFIERS=@im=none, file.encoding=UTF-8, version.war.plugin=2.1-beta-1, env.HOME=/home/anil, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher -X clean install, version.taglist.plugin=2.4, version.pmd.plugin=2.4, version.eclipse.plugin=2.7, env.HOSTNAME=sadbhav, version.javancss.plugin=2.0, java.io.tmpdir=/tmp, env.GNOME_KEYRING_PID=1186, user.language=en, env.HISTCONTROL=ignoredups, line.separator=
-, env.ANT_OPTS=-Xmx512m, env.HISTSIZE=1000, version.sonar.plugin=1.0-beta-1, version.enforcer.plugin=1.0-beta-1, version.antrun.plugin=1.3, version.cobertura.plugin=2.3, java.vm.info=mixed mode, sun.desktop=gnome, java.vm.specification.name=Java Virtual Machine Specification, jdk.min.version=1.5, version.install.plugin=2.3, env.COLORTERM=gnome-terminal, env.M2_HOME=/opt/apache-maven-3.0.2, env.CATALINA_OPTS=-Xms1024m -Xmx1024m -XX:MaxPermSize=128m, env.GDMSESSION=gnome, version.jxr.plugin=2.1, java.awt.printerjob=sun.print.PSPrinterJob, env.WINDOWID=23068677, env.CLASSPATH=:/opt/apache-ant-1.8.2/lib/ant-junit.jar:/opt/apache-ant-1.8.2/lib/ant-junit.jar, os.name=Linux, java.specification.vendor=Sun Microsystems Inc., version.ear.plugin=2.4, env.TERM=xterm, java.vm.name=Java HotSpot(TM) 64-Bit Server VM, version.checkstyle.plugin=2.4, env.QT_IM_MODULE=xim, java.library.path=/home/anil/java/jdk1.6.0_31/jre/lib/amd64/server:/home/anil/java/jdk1.6.0_31/jre/lib/amd64:/home/anil/!
java/jdk1.6.0_31/jre/../lib/amd64:/usr/lib64/qt-3.3/lib:/usr/lib64/qt-3.3/lib::/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib, env.PATH=/usr/lib/qt-3.3/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/usr/bin:/usr/sbin:/usr/java/latest/bin:/opt/apache-maven-3.0.2/bin:/home/anil/.local/bin:/home/anil/bin:/usr/bin:/usr/sbin:/usr/java/latest/bin:/opt/apache-maven-3.0.2/bin, jboss.snapshots.repo.url=https://repository.jboss.org/nexus/content/repos..., env.JDK_HOME=/usr/java/latest, version.jdepend.plugin=2.0-beta-2, targetJdk=1.5, java.class.version=50.0, env.SHLVL=2, env.LD_LIBRARY_PATH=/home/anil/java/jdk1.6.0_31/jre/lib/amd64/server:/home/anil/java/jdk1.6.0_31/jre/lib/amd64:/home/anil/java/jdk1.6.0_31/jre/../lib/amd64:/usr/lib64/qt-3.3/lib:/usr/lib64/qt-3.3/lib:, version.ejb.plugin=2.2, env.GJS_DEBUG_OUTPUT=stderr, version.clover2.plugin=2.5.1, sun.boot.library.path=/home/anil/java/jdk1.6.0_31/jre/lib/amd64, project.build.sourceE!
ncoding=UTF-8, sun.management.compiler=HotSpot 64-Bit Tiered C!
ompilers
, java.awt.graphicsenv=sun.awt.X11GraphicsEnvironment, env.USER=anil, version.buildnumber.plugin=1.0-beta-3, version.clean.plugin=2.3, java.vm.specification.version=1.0, env.KDE_IS_PRELINKED=1, version.source.plugin=2.1.1, env.NLSPATH=/usr/dt/lib/nls/msg/%L/%N.cat, sun.cpu.isalist=, version.release.plugin=2.0-beta-9, java.ext.dirs=/home/anil/java/jdk1.6.0_31/jre/lib/ext:/usr/java/packages/lib/ext, env.GJS_DEBUG_TOPICS=JS ERROR;JS LOG, os.version=3.2.9-2.fc16.x86_64, user.home=/home/anil, version.surefire.plugin=2.4.3, java.vm.vendor=Sun Microsystems Inc., jboss.releases.repo.url=https://repository.jboss.org/nexus/service/local/..., env.JAVA_HOME=/usr/java/latest, env.XDG_SESSION_ID=2, env.XAUTHORITY=/var/run/gdm/auth-for-anil-a9a0Bn/database, user.dir=/home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg, env.XFILESEARCHPATH=/usr/dt/app-defaults/%L/Dt, env.WINDOWPATH=1, env.MAIL=/var/spool/mail/anil, env.M2=/opt/apache-maven-3.0.2/bin, e!
nv.PWD=/home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg, version.rar.plugin=2.2, sun.cpu.endian=little, useReleaseProfile=false, env.QTLIB=/usr/lib/qt-3.3/lib, maven.min.version=2.0.9, java.vm.version=20.6-b01, java.class.path=/opt/apache-maven-3.0.2/boot/plexus-classworlds-2.4.jar, version.idea.plugin=2.2, downloadSources=true, env.QTDIR=/usr/lib/qt-3.3, os.arch=amd64, version.compiler.plugin=2.0.2, sun.java.launcher=SUN_STANDARD, env.IMSETTINGS_INTEGRATE_DESKTOP=yes, java.vm.specification.vendor=Sun Microsystems Inc., file.separator=/, java.runtime.version=1.6.0_31-b04, env.SSH_AUTH_SOCK=/tmp/keyring-Qy8rWn/ssh, sun.boot.class.path=/home/anil/java/jdk1.6.0_31/jre/lib/resources.jar:/home/anil/java/jdk1.6.0_31/jre/lib/rt.jar:/home/anil/java/jdk1.6.0_31/jre/lib/sunrsasign.jar:/home/anil/java/jdk1.6.0_31/jre/lib/jsse.jar:/home/anil/java/jdk1.6.0_31/jre/lib/jce.jar:/home/anil/java/jdk1.6.0_31/jre/lib/charsets.jar:/home/anil/java/jdk1.6.0_31/jre/lib/modu!
les/jdk.boot.jar:/home/anil/java/jdk1.6.0_31/jre/classes, env.!
XDG_RUNT
IME_DIR=/run/user/anil, version.dependency.plugin=2.1, env.QTINC=/usr/lib/qt-3.3/include, user.country=US, env.ANT_HOME=/opt/apache-ant-1.8.2, env.SHELL=/bin/bash, maven.home=/opt/apache-maven-3.0.2, maven.compiler.target=1.5, java.vendor=Sun Microsystems Inc., version.jar.plugin=2.2, env.GPG_AGENT_INFO=/tmp/keyring-Qy8rWn/gpg:0:1, env.IMSETTINGS_MODULE=none, maven.compiler.source=1.5, java.specification.version=1.6, sun.arch.data.model=64, env.GNOME_DESKTOP_SESSION_ID=this-is-deprecated}
-[INFO] Using 'UTF-8' encoding to copy filtered resources.
-[DEBUG] resource with targetPath null
-directory /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/src/test/resources
-excludes []
-includes []
-[INFO] skip non existing resourceDirectory /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/src/test/resources
-[INFO]
-[INFO] --- maven-compiler-plugin:2.0.2:testCompile (default-testCompile) @ picketlink-reg-as7 ---
-[DEBUG] Configuring mojo org.apache.maven.plugins:maven-compiler-plugin:2.0.2:testCompile from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-compiler-plugin:2.0.2, parent: sun.misc.Launcher$AppClassLoader@1a45a877]
-[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-compiler-plugin:2.0.2:testCompile' with basic configurator -->
-[DEBUG] (f) basedir = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg
-[DEBUG] (f) buildDirectory = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target
-[DEBUG] (f) classpathElements = [/home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/test-classes, /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/classes, /home/anil/.m2/repository/org/picketlink/picketlink-consolidated-social/2.0.0.Beta1-SNAPSHOT/picketlink-consolidated-social-2.0.0.Beta1-SNAPSHOT.jar, /home/anil/.m2/repository/org/openid4java/openid4java-nodeps/0.9.6/openid4java-nodeps-0.9.6.jar, /home/anil/.m2/repository/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.jar, /home/anil/.m2/repository/org/json/json/20090211/json-20090211.jar]
-[DEBUG] (f) compileSourceRoots = [/home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/src/test/java]
-[DEBUG] (f) compilerId = javac
-[DEBUG] (f) debug = true
-[DEBUG] (f) failOnError = true
-[DEBUG] (f) fork = false
-[DEBUG] (f) optimize = false
-[DEBUG] (f) outputDirectory = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/test-classes
-[DEBUG] (f) outputFileName = picketlink-reg-as7-2.0.0.Beta1-SNAPSHOT
-[DEBUG] (f) showDeprecation = false
-[DEBUG] (f) showWarnings = false
-[DEBUG] (f) source = 1.5
-[DEBUG] (f) staleMillis = 0
-[DEBUG] (f) target = 1.5
-[DEBUG] (f) verbose = false
-[DEBUG] -- end configuration --
-[DEBUG] Using compiler 'javac'.
-[INFO] No sources to compile
-[INFO]
-[INFO] --- maven-surefire-plugin:2.4.3:test (default-test) @ picketlink-reg-as7 ---
-[DEBUG] org.apache.maven.plugins:maven-surefire-plugin:jar:2.4.3:
-[DEBUG] org.apache.maven:maven-plugin-api:jar:2.0.6:compile
-[DEBUG] org.apache.maven.surefire:surefire-booter:jar:2.4.3:compile
-[DEBUG] org.apache.maven.surefire:surefire-api:jar:2.4.3:compile
-[DEBUG] org.codehaus.plexus:plexus-utils:jar:1.5.1:compile
-[DEBUG] org.apache.maven:maven-artifact:jar:2.0.6:compile
-[DEBUG] org.apache.maven:maven-project:jar:2.0.6:compile
-[DEBUG] org.apache.maven:maven-settings:jar:2.0.6:compile
-[DEBUG] org.apache.maven:maven-profile:jar:2.0.6:compile
-[DEBUG] org.apache.maven:maven-model:jar:2.0.6:compile
-[DEBUG] org.apache.maven:maven-artifact-manager:jar:2.0.6:compile
-[DEBUG] org.apache.maven:maven-plugin-registry:jar:2.0.6:compile
-[DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile
-[DEBUG] junit:junit:jar:3.8.1:compile
-[DEBUG] org.apache.maven:maven-core:jar:2.0.6:compile
-[DEBUG] org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.6:compile
-[DEBUG] org.apache.maven.reporting:maven-reporting-api:jar:2.0.6:compile
-[DEBUG] org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-7:compile
-[DEBUG] org.apache.maven:maven-repository-metadata:jar:2.0.6:compile
-[DEBUG] org.apache.maven:maven-error-diagnostics:jar:2.0.6:compile
-[DEBUG] commons-cli:commons-cli:jar:1.0:compile
-[DEBUG] org.apache.maven:maven-plugin-descriptor:jar:2.0.6:compile
-[DEBUG] org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile
-[DEBUG] org.apache.maven:maven-monitor:jar:2.0.6:compile
-[DEBUG] classworlds:classworlds:jar:1.1:compile
-[DEBUG] org.apache.maven:maven-toolchain:jar:1.0:compile
-[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-surefire-plugin:2.4.3
-[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-surefire-plugin:2.4.3
-[DEBUG] Imported: < maven.api
-[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-surefire-plugin:2.4.3
-[DEBUG] Included: org.apache.maven.plugins:maven-surefire-plugin:jar:2.4.3
-[DEBUG] Included: org.apache.maven.surefire:surefire-booter:jar:2.4.3
-[DEBUG] Included: org.apache.maven.surefire:surefire-api:jar:2.4.3
-[DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:1.5.1
-[DEBUG] Included: junit:junit:jar:3.8.1
-[DEBUG] Included: org.apache.maven.reporting:maven-reporting-api:jar:2.0.6
-[DEBUG] Included: org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-7
-[DEBUG] Included: commons-cli:commons-cli:jar:1.0
-[DEBUG] Included: org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4
-[DEBUG] Excluded: org.apache.maven:maven-plugin-api:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-artifact:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-project:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-settings:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-profile:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-model:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-artifact-manager:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-plugin-registry:jar:2.0.6
-[DEBUG] Excluded: org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1
-[DEBUG] Excluded: org.apache.maven:maven-core:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-repository-metadata:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-error-diagnostics:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-plugin-descriptor:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-monitor:jar:2.0.6
-[DEBUG] Excluded: classworlds:classworlds:jar:1.1
-[DEBUG] Excluded: org.apache.maven:maven-toolchain:jar:1.0
-[DEBUG] Configuring mojo org.apache.maven.plugins:maven-surefire-plugin:2.4.3:test from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-surefire-plugin:2.4.3, parent: sun.misc.Launcher$AppClassLoader@1a45a877]
-[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-surefire-plugin:2.4.3:test' with basic configurator -->
-[DEBUG] (f) basedir = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg
-[DEBUG] (f) childDelegation = false
-[DEBUG] (f) classesDirectory = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/classes
-[DEBUG] (f) classpathElements = [/home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/test-classes, /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/classes, /home/anil/.m2/repository/org/picketlink/picketlink-consolidated-social/2.0.0.Beta1-SNAPSHOT/picketlink-consolidated-social-2.0.0.Beta1-SNAPSHOT.jar, /home/anil/.m2/repository/org/openid4java/openid4java-nodeps/0.9.6/openid4java-nodeps-0.9.6.jar, /home/anil/.m2/repository/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.jar, /home/anil/.m2/repository/org/json/json/20090211/json-20090211.jar]
-[DEBUG] (f) disableXmlReport = false
-[DEBUG] (f) enableAssertions = true
-[DEBUG] (f) forkMode = pertest
-[DEBUG] (f) includes = [**/**TestCase.java]
-[DEBUG] (f) junitArtifactName = junit:junit
-[DEBUG] (f) localRepository = id: local
- url: file:///home/anil/.m2/repository/
- layout: none
-
-[DEBUG] (f) pluginArtifactMap = {org.apache.maven.plugins:maven-surefire-plugin=org.apache.maven.plugins:maven-surefire-plugin:maven-plugin:2.4.3:, org.apache.maven.surefire:surefire-booter=org.apache.maven.surefire:surefire-booter:jar:2.4.3:compile, org.apache.maven.surefire:surefire-api=org.apache.maven.surefire:surefire-api:jar:2.4.3:compile, org.codehaus.plexus:plexus-utils=org.codehaus.plexus:plexus-utils:jar:1.5.1:compile, junit:junit=junit:junit:jar:3.8.1:compile, org.apache.maven.reporting:maven-reporting-api=org.apache.maven.reporting:maven-reporting-api:jar:2.0.6:compile, org.apache.maven.doxia:doxia-sink-api=org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-7:compile, commons-cli:commons-cli=commons-cli:commons-cli:jar:1.0:compile, org.codehaus.plexus:plexus-interactivity-api=org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile}
-[DEBUG] (f) printSummary = true
-[DEBUG] (f) project = MavenProject: org.picketlink:picketlink-reg-as7:2.0.0.Beta1-SNAPSHOT @ /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/pom.xml
-[DEBUG] (f) projectArtifactMap = {org.picketlink:picketlink-consolidated-social=org.picketlink:picketlink-consolidated-social:jar:2.0.0.Beta1-SNAPSHOT:compile, org.openid4java:openid4java-nodeps=org.openid4java:openid4java-nodeps:jar:0.9.6:compile, commons-logging:commons-logging=commons-logging:commons-logging:jar:1.1.1:compile, org.json:json=org.json:json:jar:20090211:compile}
-[DEBUG] (f) redirectTestOutputToFile = false
-[DEBUG] (f) remoteRepositories = [ id: jboss-public-repository-group
- url: https://repository.jboss.org/nexus/content/groups/public/
- layout: default
-snapshots: [enabled => true, update => never]
- releases: [enabled => true, update => never]
-, id: central
- url: http://repo1.maven.org/maven2
- layout: default
-snapshots: [enabled => false, update => daily]
- releases: [enabled => true, update => never]
-]
-[DEBUG] (f) reportFormat = brief
-[DEBUG] (f) reportsDirectory = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/surefire-reports
-[DEBUG] (f) session = org.apache.maven.execution.MavenSession@69408a75
-[DEBUG] (f) testClassesDirectory = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/test-classes
-[DEBUG] (f) testFailureIgnore = true
-[DEBUG] (f) testNGArtifactName = org.testng:testng
-[DEBUG] (f) testSourceDirectory = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/src/test/java
-[DEBUG] (f) trimStackTrace = false
-[DEBUG] (f) useFile = false
-[DEBUG] (f) useManifestOnlyJar = true
-[DEBUG] (f) workingDirectory = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg
-[DEBUG] -- end configuration --
-[INFO] No tests to run.
-[INFO]
-[INFO] --- maven-war-plugin:2.2:war (default-war) @ picketlink-reg-as7 ---
-[DEBUG] org.apache.maven.plugins:maven-war-plugin:jar:2.2:
-[DEBUG] org.apache.maven:maven-plugin-api:jar:2.0.6:compile
-[DEBUG] org.apache.maven:maven-artifact:jar:2.0.6:compile
-[DEBUG] org.apache.maven:maven-model:jar:2.0.6:compile
-[DEBUG] org.apache.maven:maven-project:jar:2.0.6:compile
-[DEBUG] org.apache.maven:maven-profile:jar:2.0.6:compile
-[DEBUG] org.apache.maven:maven-artifact-manager:jar:2.0.6:compile
-[DEBUG] org.apache.maven:maven-plugin-registry:jar:2.0.6:compile
-[DEBUG] org.apache.maven:maven-core:jar:2.0.6:compile
-[DEBUG] org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.6:compile
-[DEBUG] org.apache.maven.reporting:maven-reporting-api:jar:2.0.6:compile
-[DEBUG] org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-7:compile
-[DEBUG] org.apache.maven:maven-repository-metadata:jar:2.0.6:compile
-[DEBUG] org.apache.maven:maven-error-diagnostics:jar:2.0.6:compile
-[DEBUG] commons-cli:commons-cli:jar:1.0:compile
-[DEBUG] org.apache.maven:maven-plugin-descriptor:jar:2.0.6:compile
-[DEBUG] org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile
-[DEBUG] classworlds:classworlds:jar:1.1:compile
-[DEBUG] org.apache.maven:maven-settings:jar:2.0.6:compile
-[DEBUG] org.apache.maven:maven-monitor:jar:2.0.6:compile
-[DEBUG] org.apache.maven:maven-archiver:jar:2.5:compile
-[DEBUG] org.codehaus.plexus:plexus-io:jar:2.0.2:compile
-[DEBUG] org.codehaus.plexus:plexus-archiver:jar:2.1:compile
-[DEBUG] org.codehaus.plexus:plexus-interpolation:jar:1.15:compile
-[DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile
-[DEBUG] junit:junit:jar:3.8.1:compile
-[DEBUG] com.thoughtworks.xstream:xstream:jar:1.3.1:compile
-[DEBUG] xpp3:xpp3_min:jar:1.1.4c:compile
-[DEBUG] org.codehaus.plexus:plexus-utils:jar:3.0:compile
-[DEBUG] org.apache.maven.shared:maven-filtering:jar:1.0-beta-2:compile
-[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-war-plugin:2.2
-[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-war-plugin:2.2
-[DEBUG] Imported: < maven.api
-[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-war-plugin:2.2
-[DEBUG] Included: org.apache.maven.plugins:maven-war-plugin:jar:2.2
-[DEBUG] Included: org.apache.maven.reporting:maven-reporting-api:jar:2.0.6
-[DEBUG] Included: org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-7
-[DEBUG] Included: commons-cli:commons-cli:jar:1.0
-[DEBUG] Included: org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4
-[DEBUG] Included: org.apache.maven:maven-archiver:jar:2.5
-[DEBUG] Included: org.codehaus.plexus:plexus-io:jar:2.0.2
-[DEBUG] Included: org.codehaus.plexus:plexus-archiver:jar:2.1
-[DEBUG] Included: org.codehaus.plexus:plexus-interpolation:jar:1.15
-[DEBUG] Included: junit:junit:jar:3.8.1
-[DEBUG] Included: com.thoughtworks.xstream:xstream:jar:1.3.1
-[DEBUG] Included: xpp3:xpp3_min:jar:1.1.4c
-[DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:3.0
-[DEBUG] Included: org.apache.maven.shared:maven-filtering:jar:1.0-beta-2
-[DEBUG] Excluded: org.apache.maven:maven-plugin-api:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-artifact:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-model:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-project:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-profile:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-artifact-manager:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-plugin-registry:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-core:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-repository-metadata:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-error-diagnostics:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-plugin-descriptor:jar:2.0.6
-[DEBUG] Excluded: classworlds:classworlds:jar:1.1
-[DEBUG] Excluded: org.apache.maven:maven-settings:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-monitor:jar:2.0.6
-[DEBUG] Excluded: org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1
-[DEBUG] Configuring mojo org.apache.maven.plugins:maven-war-plugin:2.2:war from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-war-plugin:2.2, parent: sun.misc.Launcher$AppClassLoader@1a45a877]
-[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-war-plugin:2.2:war' with basic configurator -->
-[DEBUG] (s) archiveClasses = false
-[DEBUG] (s) attachClasses = false
-[DEBUG] (s) cacheFile = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/war/work/webapp-cache.xml
-[DEBUG] (s) classesClassifier = classes
-[DEBUG] (s) classesDirectory = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/classes
-[DEBUG] (f) escapedBackslashesInFilePath = false
-[DEBUG] (s) failOnMissingWebXml = true
-[DEBUG] (f) filteringDeploymentDescriptors = false
-[DEBUG] (s) outputDirectory = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target
-[DEBUG] (s) packagingExcludes = **/.svn/,WEB-INF/lib/guice-2.0.jar,WEB-INF/lib/jcip-annotations-1.0.jar
-[DEBUG] (s) primaryArtifact = true
-[DEBUG] (s) project = MavenProject: org.picketlink:picketlink-reg-as7:2.0.0.Beta1-SNAPSHOT @ /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/pom.xml
-[DEBUG] (f) session = org.apache.maven.execution.MavenSession@69408a75
-[DEBUG] (s) useCache = false
-[DEBUG] (s) warName = picketlink-reg
-[DEBUG] (s) warSourceDirectory = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/src/main/webapp
-[DEBUG] (s) warSourceIncludes = **
-[DEBUG] (s) webappDirectory = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/../../picketlink-reg/resources
-[DEBUG] (s) workDirectory = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/war/work
-[DEBUG] -- end configuration --
-[INFO] Packaging webapp
-[INFO] Assembling webapp [picketlink-reg-as7] in [/home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/../../picketlink-reg/resources]
-[DEBUG] properties used {env.DESKTOP_SESSION=gnome, file.encoding.pkg=sun.io, version.assembly.plugin=2.2-beta-4, java.home=/home/anil/java/jdk1.6.0_31/jre, env.DISPLAY=:0, env.LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=01;05;37;41:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lz=01;31:*.xz=01;31:*.bz2=01;31:*.tbz=01;31:*.tbz2=01;31:*.bz=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:!
*.mkv=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.axv=01;35:*.anx=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=01;36:*.au=01;36:*.flac=01;36:*.mid=01;36:*.midi=01;36:*.mka=01;36:*.mp3=01;36:*.mpc=01;36:*.ogg=01;36:*.ra=01;36:*.wav=01;36:*.axa=01;36:*.oga=01;36:*.spx=01;36:*.xspf=01;36:*.pdf=00;33:*.ps=00;33:*.ps.gz=00;33:*.txt=00;33:*.patch=00;33:*.diff=00;33:*.log=00;33:*.tex=00;33:*.xls=00;33:*.xlsx=00;33:*.ppt=00;33:*.pptx=00;33:*.rtf=00;33:*.doc=00;33:*.docx=00;33:*.odt=00;33:*.ods=00;33:*.odp=00;33:*.xml=00;33:*.epub=00;33:*.abw=00;33:*.html=00;33:*.wpd=00;33:, env.XDG_VTNR=1, classworlds.conf=/opt/apache-maven-3.0.2/bin/m2.conf, env.XDG_SESSION_COOKIE=49aaafdaf7853547bcef9f320000000c-1331816034.260259-995781388, java.endorsed.dirs=/home/anil/java/jdk1.6.0!
_31/jre/lib/endorsed, env.LOGNAME=anil, env.USERNAME=anil, env!
.XDG_SEA
T=seat0, env.SESSION_MANAGER=local/unix:@/tmp/.ICE-unix/1192,unix/unix:/tmp/.ICE-unix/1192, env.KDEDIRS=/usr, sun.os.patch.level=unknown, java.vendor.url=http://java.sun.com/, version.javadoc.plugin=2.6.1, version.findbugs.plugin=2.2, java.version=1.6.0_31, arguments=-Prelease, java.vendor.url.bug=http://java.sun.com/cgi-bin/bugreport.cgi, version.deploy.plugin=2.4, version.pir.plugin=2.1.2, env.GNOME_KEYRING_CONTROL=/tmp/keyring-Qy8rWn, user.name=anil, env.LANG=en_US.UTF-8, version.site.plugin=2.0.1, sun.io.unicode.encoding=UnicodeLittle, env.CVSROOT=:ext:asaldhana@cvs.forge.jboss.com:/cvsroot/jboss, sun.jnu.encoding=UTF-8, env.DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-QmlohiCPYg,guid=d0238f4566dc3bf53efde65600000016, java.runtime.name=Java(TM) SE Runtime Environment, version.resources.plugin=2.4.1, java.specification.name=Java Platform API Specification, version.plugin.plugin=2.5.1, user.timezone=US/Central, env.LESSOPEN=||/usr/bin/lesspipe.sh %s, path.separator=:, !
env.XMODIFIERS=@im=none, file.encoding=UTF-8, version.war.plugin=2.1-beta-1, env.HOME=/home/anil, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher -X clean install, version.taglist.plugin=2.4, version.pmd.plugin=2.4, version.eclipse.plugin=2.7, env.HOSTNAME=sadbhav, version.javancss.plugin=2.0, java.io.tmpdir=/tmp, env.GNOME_KEYRING_PID=1186, user.language=en, env.HISTCONTROL=ignoredups, line.separator=
-, env.ANT_OPTS=-Xmx512m, env.HISTSIZE=1000, version.sonar.plugin=1.0-beta-1, version.enforcer.plugin=1.0-beta-1, version.antrun.plugin=1.3, version.cobertura.plugin=2.3, java.vm.info=mixed mode, sun.desktop=gnome, java.vm.specification.name=Java Virtual Machine Specification, jdk.min.version=1.5, version.install.plugin=2.3, env.COLORTERM=gnome-terminal, env.M2_HOME=/opt/apache-maven-3.0.2, env.CATALINA_OPTS=-Xms1024m -Xmx1024m -XX:MaxPermSize=128m, env.GDMSESSION=gnome, version.jxr.plugin=2.1, java.awt.printerjob=sun.print.PSPrinterJob, env.WINDOWID=23068677, env.CLASSPATH=:/opt/apache-ant-1.8.2/lib/ant-junit.jar:/opt/apache-ant-1.8.2/lib/ant-junit.jar, os.name=Linux, java.specification.vendor=Sun Microsystems Inc., version.ear.plugin=2.4, env.TERM=xterm, java.vm.name=Java HotSpot(TM) 64-Bit Server VM, version.checkstyle.plugin=2.4, env.QT_IM_MODULE=xim, java.library.path=/home/anil/java/jdk1.6.0_31/jre/lib/amd64/server:/home/anil/java/jdk1.6.0_31/jre/lib/amd64:/home/anil/!
java/jdk1.6.0_31/jre/../lib/amd64:/usr/lib64/qt-3.3/lib:/usr/lib64/qt-3.3/lib::/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib, env.PATH=/usr/lib/qt-3.3/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/usr/bin:/usr/sbin:/usr/java/latest/bin:/opt/apache-maven-3.0.2/bin:/home/anil/.local/bin:/home/anil/bin:/usr/bin:/usr/sbin:/usr/java/latest/bin:/opt/apache-maven-3.0.2/bin, jboss.snapshots.repo.url=https://repository.jboss.org/nexus/content/repos..., env.JDK_HOME=/usr/java/latest, version.jdepend.plugin=2.0-beta-2, targetJdk=1.5, java.class.version=50.0, env.SHLVL=2, env.LD_LIBRARY_PATH=/home/anil/java/jdk1.6.0_31/jre/lib/amd64/server:/home/anil/java/jdk1.6.0_31/jre/lib/amd64:/home/anil/java/jdk1.6.0_31/jre/../lib/amd64:/usr/lib64/qt-3.3/lib:/usr/lib64/qt-3.3/lib:, version.ejb.plugin=2.2, env.GJS_DEBUG_OUTPUT=stderr, version.clover2.plugin=2.5.1, sun.boot.library.path=/home/anil/java/jdk1.6.0_31/jre/lib/amd64, project.build.sourceE!
ncoding=UTF-8, sun.management.compiler=HotSpot 64-Bit Tiered C!
ompilers
, java.awt.graphicsenv=sun.awt.X11GraphicsEnvironment, env.USER=anil, version.buildnumber.plugin=1.0-beta-3, version.clean.plugin=2.3, java.vm.specification.version=1.0, env.KDE_IS_PRELINKED=1, version.source.plugin=2.1.1, env.NLSPATH=/usr/dt/lib/nls/msg/%L/%N.cat, sun.cpu.isalist=, version.release.plugin=2.0-beta-9, java.ext.dirs=/home/anil/java/jdk1.6.0_31/jre/lib/ext:/usr/java/packages/lib/ext, env.GJS_DEBUG_TOPICS=JS ERROR;JS LOG, os.version=3.2.9-2.fc16.x86_64, user.home=/home/anil, version.surefire.plugin=2.4.3, java.vm.vendor=Sun Microsystems Inc., jboss.releases.repo.url=https://repository.jboss.org/nexus/service/local/..., env.JAVA_HOME=/usr/java/latest, env.XDG_SESSION_ID=2, env.XAUTHORITY=/var/run/gdm/auth-for-anil-a9a0Bn/database, user.dir=/home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg, env.XFILESEARCHPATH=/usr/dt/app-defaults/%L/Dt, env.WINDOWPATH=1, env.MAIL=/var/spool/mail/anil, env.M2=/opt/apache-maven-3.0.2/bin, e!
nv.PWD=/home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg, version.rar.plugin=2.2, sun.cpu.endian=little, useReleaseProfile=false, env.QTLIB=/usr/lib/qt-3.3/lib, maven.min.version=2.0.9, java.vm.version=20.6-b01, java.class.path=/opt/apache-maven-3.0.2/boot/plexus-classworlds-2.4.jar, version.idea.plugin=2.2, downloadSources=true, env.QTDIR=/usr/lib/qt-3.3, os.arch=amd64, version.compiler.plugin=2.0.2, sun.java.launcher=SUN_STANDARD, env.IMSETTINGS_INTEGRATE_DESKTOP=yes, java.vm.specification.vendor=Sun Microsystems Inc., file.separator=/, java.runtime.version=1.6.0_31-b04, env.SSH_AUTH_SOCK=/tmp/keyring-Qy8rWn/ssh, sun.boot.class.path=/home/anil/java/jdk1.6.0_31/jre/lib/resources.jar:/home/anil/java/jdk1.6.0_31/jre/lib/rt.jar:/home/anil/java/jdk1.6.0_31/jre/lib/sunrsasign.jar:/home/anil/java/jdk1.6.0_31/jre/lib/jsse.jar:/home/anil/java/jdk1.6.0_31/jre/lib/jce.jar:/home/anil/java/jdk1.6.0_31/jre/lib/charsets.jar:/home/anil/java/jdk1.6.0_31/jre/lib/modu!
les/jdk.boot.jar:/home/anil/java/jdk1.6.0_31/jre/classes, env.!
XDG_RUNT
IME_DIR=/run/user/anil, version.dependency.plugin=2.1, env.QTINC=/usr/lib/qt-3.3/include, env.ANT_HOME=/opt/apache-ant-1.8.2, user.country=US, maven.home=/opt/apache-maven-3.0.2, env.SHELL=/bin/bash, maven.compiler.target=1.5, java.vendor=Sun Microsystems Inc., env.GPG_AGENT_INFO=/tmp/keyring-Qy8rWn/gpg:0:1, version.jar.plugin=2.2, env.IMSETTINGS_MODULE=none, maven.compiler.source=1.5, java.specification.version=1.6, env.GNOME_DESKTOP_SESSION_ID=this-is-deprecated, sun.arch.data.model=64}
-[INFO] Processing war project
-[INFO] Copying webapp resources [/home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/src/main/webapp]
-[DEBUG] + META-INF/jboss-deployment-structure.xml has been copied.
-[DEBUG] + WEB-INF/jboss-web.xml has been copied.
-[DEBUG] Dump of the current build pathSet content -->
-[DEBUG] META-INF/jboss-deployment-structure.xml
-[DEBUG] WEB-INF/jboss-web.xml
-[DEBUG] -- end of dump --
-[DEBUG] Processing: picketlink-consolidated-social-2.0.0.Beta1-SNAPSHOT.jar
-[DEBUG] + WEB-INF/lib/picketlink-consolidated-social-2.0.0.Beta1-SNAPSHOT.jar has been copied.
-[DEBUG] Processing: openid4java-nodeps-0.9.6.jar
-[DEBUG] + WEB-INF/lib/openid4java-nodeps-0.9.6.jar has been copied.
-[DEBUG] Processing: commons-logging-1.1.1.jar
-[DEBUG] + WEB-INF/lib/commons-logging-1.1.1.jar has been copied.
-[DEBUG] Processing: json-20090211.jar
-[DEBUG] + WEB-INF/lib/json-20090211.jar has been copied.
-[INFO] Webapp assembled in [40 msecs]
-[DEBUG] Excluding [**/.svn/, WEB-INF/lib/guice-2.0.jar, WEB-INF/lib/jcip-annotations-1.0.jar] from the generated webapp archive.
-[DEBUG] Including [**] in the generated webapp archive.
-[INFO] Building war: /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/picketlink-reg.war
-[DEBUG] adding directory META-INF/
-[DEBUG] adding entry META-INF/MANIFEST.MF
-[DEBUG] adding directory auth/
-[DEBUG] adding directory auth/css/
-[DEBUG] adding directory css/
-[DEBUG] adding directory WEB-INF/
-[DEBUG] adding directory WEB-INF/classes/
-[DEBUG] adding directory WEB-INF/lib/
-[DEBUG] adding directory images/
-[DEBUG] adding entry auth/css/text.css
-[DEBUG] adding entry auth/css/960_12_col_rtl.css
-[DEBUG] adding entry auth/css/reset.css
-[DEBUG] adding entry auth/css/960_12_col.css
-[DEBUG] adding entry auth/css/reset_rtl.css
-[DEBUG] adding entry auth/css/demo.css
-[DEBUG] adding entry auth/css/960_24_col_rtl.css
-[DEBUG] adding entry auth/css/960_16_col.css
-[DEBUG] adding entry auth/css/text_rtl.css
-[DEBUG] adding entry auth/css/960.css
-[DEBUG] adding entry auth/css/960_24_col.css
-[DEBUG] adding entry auth/css/960_rtl.css
-[DEBUG] adding entry auth/css/960_16_col_rtl.css
-[DEBUG] adding entry auth/auth.jsp
-[DEBUG] adding entry css/text.css
-[DEBUG] adding entry css/960_12_col_rtl.css
-[DEBUG] adding entry css/reset.css
-[DEBUG] adding entry css/960_12_col.css
-[DEBUG] adding entry css/reset_rtl.css
-[DEBUG] adding entry css/demo.css
-[DEBUG] adding entry css/960_24_col_rtl.css
-[DEBUG] adding entry css/960_16_col.css
-[DEBUG] adding entry css/text_rtl.css
-[DEBUG] adding entry css/960.css
-[DEBUG] adding entry css/960_24_col.css
-[DEBUG] adding entry css/960_rtl.css
-[DEBUG] adding entry css/960_16_col_rtl.css
-[DEBUG] adding entry META-INF/jboss-deployment-structure.xml
-[DEBUG] adding entry WEB-INF/jboss-web.xml
-[DEBUG] adding entry WEB-INF/context.xml
-[DEBUG] adding entry WEB-INF/web.xml
-[DEBUG] adding entry WEB-INF/lib/json-20090211.jar
-[DEBUG] adding entry WEB-INF/lib/commons-httpclient-3.1.jar
-[DEBUG] adding entry WEB-INF/lib/commons-codec-1.4.jar
-[DEBUG] adding entry WEB-INF/lib/picketlink-consolidated-social-2.0.0.Beta1-SNAPSHOT.jar
-[DEBUG] adding entry WEB-INF/lib/openid4java-nodeps-0.9.6.jar
-[DEBUG] adding entry WEB-INF/lib/commons-logging-1.1.1.jar
-[DEBUG] adding entry index.jsp
-[DEBUG] adding entry images/picketlink_banner.png
-[DEBUG] adding entry images/login-with-facebook.png
-[DEBUG] adding entry images/login-with-google.png
-[INFO] WEB-INF/web.xml already added, skipping
-[DEBUG] adding directory META-INF/maven/
-[DEBUG] adding directory META-INF/maven/org.picketlink/
-[DEBUG] adding directory META-INF/maven/org.picketlink/picketlink-reg-as7/
-[DEBUG] adding entry META-INF/maven/org.picketlink/picketlink-reg-as7/pom.xml
-[DEBUG] adding entry META-INF/maven/org.picketlink/picketlink-reg-as7/pom.properties
-[INFO]
-[INFO] --- maven-source-plugin:2.1.1:jar-no-fork (attach-sources) @ picketlink-reg-as7 ---
-[DEBUG] org.apache.maven.plugins:maven-source-plugin:jar:2.1.1:
-[DEBUG] org.apache.maven:maven-model:jar:2.0.9:compile
-[DEBUG] org.apache.maven:maven-artifact:jar:2.0.9:compile
-[DEBUG] org.apache.maven:maven-plugin-api:jar:2.0.9:compile
-[DEBUG] org.apache.maven:maven-project:jar:2.0.9:compile
-[DEBUG] org.apache.maven:maven-settings:jar:2.0.9:compile
-[DEBUG] org.apache.maven:maven-profile:jar:2.0.9:compile
-[DEBUG] org.apache.maven:maven-artifact-manager:jar:2.0.9:compile
-[DEBUG] org.apache.maven:maven-repository-metadata:jar:2.0.9:compile
-[DEBUG] org.apache.maven:maven-plugin-registry:jar:2.0.9:compile
-[DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile
-[DEBUG] junit:junit:jar:3.8.1:compile
-[DEBUG] classworlds:classworlds:jar:1.1-alpha-2:compile
-[DEBUG] org.apache.maven:maven-archiver:jar:2.4:compile
-[DEBUG] org.codehaus.plexus:plexus-interpolation:jar:1.6:compile
-[DEBUG] org.codehaus.plexus:plexus-archiver:jar:1.0-alpha-9:compile
-[DEBUG] org.codehaus.plexus:plexus-io:jar:1.0-alpha-1:compile
-[DEBUG] org.codehaus.plexus:plexus-utils:jar:1.5.8:compile
-[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-source-plugin:2.1.1
-[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-source-plugin:2.1.1
-[DEBUG] Imported: < maven.api
-[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-source-plugin:2.1.1
-[DEBUG] Included: org.apache.maven.plugins:maven-source-plugin:jar:2.1.1
-[DEBUG] Included: junit:junit:jar:3.8.1
-[DEBUG] Included: org.apache.maven:maven-archiver:jar:2.4
-[DEBUG] Included: org.codehaus.plexus:plexus-interpolation:jar:1.6
-[DEBUG] Included: org.codehaus.plexus:plexus-archiver:jar:1.0-alpha-9
-[DEBUG] Included: org.codehaus.plexus:plexus-io:jar:1.0-alpha-1
-[DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:1.5.8
-[DEBUG] Excluded: org.apache.maven:maven-model:jar:2.0.9
-[DEBUG] Excluded: org.apache.maven:maven-artifact:jar:2.0.9
-[DEBUG] Excluded: org.apache.maven:maven-plugin-api:jar:2.0.9
-[DEBUG] Excluded: org.apache.maven:maven-project:jar:2.0.9
-[DEBUG] Excluded: org.apache.maven:maven-settings:jar:2.0.9
-[DEBUG] Excluded: org.apache.maven:maven-profile:jar:2.0.9
-[DEBUG] Excluded: org.apache.maven:maven-artifact-manager:jar:2.0.9
-[DEBUG] Excluded: org.apache.maven:maven-repository-metadata:jar:2.0.9
-[DEBUG] Excluded: org.apache.maven:maven-plugin-registry:jar:2.0.9
-[DEBUG] Excluded: org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1
-[DEBUG] Excluded: classworlds:classworlds:jar:1.1-alpha-2
-[DEBUG] Configuring mojo org.apache.maven.plugins:maven-source-plugin:2.1.1:jar-no-fork from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-source-plugin:2.1.1, parent: sun.misc.Launcher$AppClassLoader@1a45a877]
-[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-source-plugin:2.1.1:jar-no-fork' with basic configurator -->
-[DEBUG] (f) attach = true
-[DEBUG] (f) defaultManifestFile = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/classes/META-INF/MANIFEST.MF
-[DEBUG] (f) excludeResources = false
-[DEBUG] (f) finalName = picketlink-reg-as7-2.0.0.Beta1-SNAPSHOT
-[DEBUG] (f) forceCreation = false
-[DEBUG] (f) includePom = false
-[DEBUG] (f) outputDirectory = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target
-[DEBUG] (f) project = MavenProject: org.picketlink:picketlink-reg-as7:2.0.0.Beta1-SNAPSHOT @ /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/pom.xml
-[DEBUG] (f) reactorProjects = [MavenProject: org.picketlink:picketlink-reg-as7:2.0.0.Beta1-SNAPSHOT @ /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/pom.xml]
-[DEBUG] (f) useDefaultExcludes = true
-[DEBUG] (f) useDefaultManifestFile = false
-[DEBUG] -- end configuration --
-[INFO] No sources in project. Archive not created.
-[INFO]
-[INFO] --- maven-install-plugin:2.3:install (default-install) @ picketlink-reg-as7 ---
-[DEBUG] org.apache.maven.plugins:maven-install-plugin:jar:2.3:
-[DEBUG] org.apache.maven:maven-plugin-api:jar:2.0.6:compile
-[DEBUG] org.apache.maven:maven-project:jar:2.0.6:compile
-[DEBUG] org.apache.maven:maven-settings:jar:2.0.6:compile
-[DEBUG] org.apache.maven:maven-profile:jar:2.0.6:compile
-[DEBUG] org.apache.maven:maven-plugin-registry:jar:2.0.6:compile
-[DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile
-[DEBUG] junit:junit:jar:3.8.1:compile
-[DEBUG] classworlds:classworlds:jar:1.1-alpha-2:compile
-[DEBUG] org.apache.maven:maven-model:jar:2.0.6:compile
-[DEBUG] org.apache.maven:maven-artifact-manager:jar:2.0.6:compile
-[DEBUG] org.apache.maven:maven-repository-metadata:jar:2.0.6:compile
-[DEBUG] org.apache.maven:maven-artifact:jar:2.0.6:compile
-[DEBUG] org.codehaus.plexus:plexus-utils:jar:1.5.6:compile
-[DEBUG] org.codehaus.plexus:plexus-digest:jar:1.0:compile
-[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-install-plugin:2.3
-[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-install-plugin:2.3
-[DEBUG] Imported: < maven.api
-[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-install-plugin:2.3
-[DEBUG] Included: org.apache.maven.plugins:maven-install-plugin:jar:2.3
-[DEBUG] Included: junit:junit:jar:3.8.1
-[DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:1.5.6
-[DEBUG] Included: org.codehaus.plexus:plexus-digest:jar:1.0
-[DEBUG] Excluded: org.apache.maven:maven-plugin-api:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-project:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-settings:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-profile:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-plugin-registry:jar:2.0.6
-[DEBUG] Excluded: org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1
-[DEBUG] Excluded: classworlds:classworlds:jar:1.1-alpha-2
-[DEBUG] Excluded: org.apache.maven:maven-model:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-artifact-manager:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-repository-metadata:jar:2.0.6
-[DEBUG] Excluded: org.apache.maven:maven-artifact:jar:2.0.6
-[DEBUG] Configuring mojo org.apache.maven.plugins:maven-install-plugin:2.3:install from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-install-plugin:2.3, parent: sun.misc.Launcher$AppClassLoader@1a45a877]
-[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-install-plugin:2.3:install' with basic configurator -->
-[DEBUG] (f) artifact = org.picketlink:picketlink-reg-as7:war:2.0.0.Beta1-SNAPSHOT
-[DEBUG] (f) attachedArtifacts = []
-[DEBUG] (f) createChecksum = false
-[DEBUG] (f) localRepository = id: local
- url: file:///home/anil/.m2/repository/
- layout: none
-
-[DEBUG] (f) packaging = war
-[DEBUG] (f) pomFile = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/pom.xml
-[DEBUG] (f) updateReleaseInfo = false
-[DEBUG] -- end configuration --
-[DEBUG] Using manager EnhancedLocalRepositoryManager with priority 10 for /home/anil/.m2/repository
-[INFO] Installing /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/picketlink-reg.war to /home/anil/.m2/repository/org/picketlink/picketlink-reg-as7/2.0.0.Beta1-SNAPSHOT/picketlink-reg-as7-2.0.0.Beta1-SNAPSHOT.war
-[INFO] Installing /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/pom.xml to /home/anil/.m2/repository/org/picketlink/picketlink-reg-as7/2.0.0.Beta1-SNAPSHOT/picketlink-reg-as7-2.0.0.Beta1-SNAPSHOT.pom
-[DEBUG] Installing org.picketlink:picketlink-reg-as7:2.0.0.Beta1-SNAPSHOT/maven-metadata.xml to /home/anil/.m2/repository/org/picketlink/picketlink-reg-as7/2.0.0.Beta1-SNAPSHOT/maven-metadata-local.xml
-[DEBUG] Installing org.picketlink:picketlink-reg-as7/maven-metadata.xml to /home/anil/.m2/repository/org/picketlink/picketlink-reg-as7/maven-metadata-local.xml
-[INFO] ------------------------------------------------------------------------
-[INFO] BUILD SUCCESS
-[INFO] ------------------------------------------------------------------------
-[INFO] Total time: 2.383s
-[INFO] Finished at: Thu Mar 15 13:37:44 CDT 2012
-[INFO] Final Memory: 6M/150M
-[INFO] ------------------------------------------------------------------------
Modified: social/trunk/webapps/as7/picketlink-reg/pom.xml
===================================================================
--- social/trunk/webapps/as7/picketlink-reg/pom.xml 2012-03-19 19:45:15 UTC (rev 1526)
+++ social/trunk/webapps/as7/picketlink-reg/pom.xml 2012-03-19 20:36:39 UTC (rev 1527)
@@ -1,8 +1,16 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+
+ <parent>
+ <groupId>org.picketlink</groupId>
+ <artifactId>picketlink-social-webapps</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ <relativePath>../../</relativePath>
+ </parent>
+
<modelVersion>4.0.0</modelVersion>
<groupId>org.picketlink.social.as7</groupId>
<artifactId>picketlink-reg</artifactId>
- <version>1.0.0.Final</version>
+ <version>1.0.0-SNAPSHOT</version>
<packaging>war</packaging>
<name>PicketLink Social Registration</name>
<url>http://labs.jboss.org/portal/picketlink/</url>
Modified: social/trunk/webapps/as7/pom.xml
===================================================================
--- social/trunk/webapps/as7/pom.xml 2012-03-19 19:45:15 UTC (rev 1526)
+++ social/trunk/webapps/as7/pom.xml 2012-03-19 20:36:39 UTC (rev 1527)
@@ -1,8 +1,15 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <parent>
+ <groupId>org.picketlink</groupId>
+ <artifactId>picketlink-social-webapps</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ <relativePath>../</relativePath>
+ </parent>
+
<modelVersion>4.0.0</modelVersion>
<groupId>org.picketlink.social</groupId>
<artifactId>picketlink-social-as7-webapps</artifactId>
- <version>1.0.0.Final</version>
+ <version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>PicketLink Social Web Applications</name>
<url>http://labs.jboss.org/portal/jbosssecurity/</url>
@@ -18,6 +25,44 @@
<name>JBoss Inc.</name>
<url>http://www.jboss.org</url>
</organization>
+ <repositories>
+ <repository>
+ <id>jboss-public-repository-group</id>
+ <name>JBoss Public Maven Repository Group</name>
+ <url>http://repository.jboss.org/nexus/content/groups/public/</url>
+ <layout>default</layout>
+ <releases>
+ <enabled>true</enabled>
+ <updatePolicy>never</updatePolicy>
+ </releases>
+ <snapshots>
+ <enabled>true</enabled>
+ <updatePolicy>never</updatePolicy>
+ </snapshots>
+ </repository>
+ <repository>
+ <id>repository.jboss.org</id>
+ <name>JBoss Repository</name>
+ <layout>default</layout>
+ <url>http://repository.jboss.org/maven2/</url>
+ <snapshots>
+ <enabled>false</enabled>
+ </snapshots>
+ </repository>
+ <repository>
+ <id>snapshots.jboss.org</id>
+ <name>JBoss Snapshots Repository</name>
+ <layout>default</layout>
+ <url>http://snapshots.jboss.org/maven2/</url>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ <releases>
+ <enabled>false</enabled>
+ </releases>
+ </repository>
+ </repositories>
+
<modules>
<module>openid-consumer</module>
<module>picketlink-reg</module>
Modified: social/trunk/webapps/openid-consumer/pom.xml
===================================================================
--- social/trunk/webapps/openid-consumer/pom.xml 2012-03-19 19:45:15 UTC (rev 1526)
+++ social/trunk/webapps/openid-consumer/pom.xml 2012-03-19 20:36:39 UTC (rev 1527)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-social-webapps</artifactId>
- <version>1.0.0.Final</version>
+ <version>1.0.0-SNAPSHOT</version>
<relativePath>../</relativePath>
</parent>
Modified: social/trunk/webapps/openid-provider/pom.xml
===================================================================
--- social/trunk/webapps/openid-provider/pom.xml 2012-03-19 19:45:15 UTC (rev 1526)
+++ social/trunk/webapps/openid-provider/pom.xml 2012-03-19 20:36:39 UTC (rev 1527)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-social-webapps</artifactId>
- <version>1.0.0.Final</version>
+ <version>1.0.0-SNAPSHOT</version>
<relativePath>../</relativePath>
</parent>
Modified: social/trunk/webapps/picketlink-reg/pom.xml
===================================================================
--- social/trunk/webapps/picketlink-reg/pom.xml 2012-03-19 19:45:15 UTC (rev 1526)
+++ social/trunk/webapps/picketlink-reg/pom.xml 2012-03-19 20:36:39 UTC (rev 1527)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-social-webapps</artifactId>
- <version>1.0.0.Final</version>
+ <version>1.0.0-SNAPSHOT</version>
<relativePath>../</relativePath>
</parent>
Modified: social/trunk/webapps/pom.xml
===================================================================
--- social/trunk/webapps/pom.xml 2012-03-19 19:45:15 UTC (rev 1526)
+++ social/trunk/webapps/pom.xml 2012-03-19 20:36:39 UTC (rev 1527)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-social-parent</artifactId>
- <version>1.0.0.Final</version>
+ <version>1.0.0-SNAPSHOT</version>
<relativePath>../parent</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -22,6 +22,44 @@
<name>JBoss Inc.</name>
<url>http://www.jboss.org</url>
</organization>
+ <repositories>
+ <repository>
+ <id>jboss-public-repository-group</id>
+ <name>JBoss Public Maven Repository Group</name>
+ <url>http://repository.jboss.org/nexus/content/groups/public/</url>
+ <layout>default</layout>
+ <releases>
+ <enabled>true</enabled>
+ <updatePolicy>never</updatePolicy>
+ </releases>
+ <snapshots>
+ <enabled>true</enabled>
+ <updatePolicy>never</updatePolicy>
+ </snapshots>
+ </repository>
+ <repository>
+ <id>repository.jboss.org</id>
+ <name>JBoss Repository</name>
+ <layout>default</layout>
+ <url>http://repository.jboss.org/maven2/</url>
+ <snapshots>
+ <enabled>false</enabled>
+ </snapshots>
+ </repository>
+ <repository>
+ <id>snapshots.jboss.org</id>
+ <name>JBoss Snapshots Repository</name>
+ <layout>default</layout>
+ <url>http://snapshots.jboss.org/maven2/</url>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ <releases>
+ <enabled>false</enabled>
+ </releases>
+ </repository>
+ </repositories>
+
<modules>
<module>openid-provider</module>
<module>openid-consumer</module>
12 years, 9 months
Picketlink SVN: r1526 - in social/trunk: assembly and 11 other directories.
by picketlink-commits@lists.jboss.org
Author: anil.saldhana(a)jboss.com
Date: 2012-03-19 15:45:15 -0400 (Mon, 19 Mar 2012)
New Revision: 1526
Modified:
social/trunk/assembly/pom.xml
social/trunk/facebook/pom.xml
social/trunk/openid/pom.xml
social/trunk/parent/pom.xml
social/trunk/pom.xml
social/trunk/social/pom.xml
social/trunk/webapps/as7/openid-consumer/pom.xml
social/trunk/webapps/as7/picketlink-reg/pom.xml
social/trunk/webapps/as7/pom.xml
social/trunk/webapps/openid-consumer/pom.xml
social/trunk/webapps/openid-provider/pom.xml
social/trunk/webapps/picketlink-reg/pom.xml
social/trunk/webapps/pom.xml
Log:
PLFED-272: prepare 1.0.0.Final
Modified: social/trunk/assembly/pom.xml
===================================================================
--- social/trunk/assembly/pom.xml 2012-03-19 19:01:13 UTC (rev 1525)
+++ social/trunk/assembly/pom.xml 2012-03-19 19:45:15 UTC (rev 1526)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-social-parent</artifactId>
- <version>2.0.0.Beta1-SNAPSHOT</version>
+ <version>1.0.0.Final</version>
<relativePath>../parent</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: social/trunk/facebook/pom.xml
===================================================================
--- social/trunk/facebook/pom.xml 2012-03-19 19:01:13 UTC (rev 1525)
+++ social/trunk/facebook/pom.xml 2012-03-19 19:45:15 UTC (rev 1526)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-social-parent</artifactId>
- <version>2.0.0.Beta1-SNAPSHOT</version>
+ <version>1.0.0.Final</version>
<relativePath>../parent</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: social/trunk/openid/pom.xml
===================================================================
--- social/trunk/openid/pom.xml 2012-03-19 19:01:13 UTC (rev 1525)
+++ social/trunk/openid/pom.xml 2012-03-19 19:45:15 UTC (rev 1526)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-social-parent</artifactId>
- <version>2.0.0.Beta1-SNAPSHOT</version>
+ <version>1.0.0.Final</version>
<relativePath>../parent</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: social/trunk/parent/pom.xml
===================================================================
--- social/trunk/parent/pom.xml 2012-03-19 19:01:13 UTC (rev 1525)
+++ social/trunk/parent/pom.xml 2012-03-19 19:45:15 UTC (rev 1526)
@@ -8,7 +8,7 @@
<groupId>org.picketlink</groupId>
<artifactId>picketlink-social-parent</artifactId>
<packaging>pom</packaging>
- <version>2.0.0.Beta1-SNAPSHOT</version>
+ <version>1.0.0.Final</version>
<name>PicketLink Social - Parent</name>
<url>http://labs.jboss.org/portal/picketlink/</url>
<description>PicketLink Social Parent</description>
Modified: social/trunk/pom.xml
===================================================================
--- social/trunk/pom.xml 2012-03-19 19:01:13 UTC (rev 1525)
+++ social/trunk/pom.xml 2012-03-19 19:45:15 UTC (rev 1526)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-social-parent</artifactId>
- <version>2.0.0.Beta1-SNAPSHOT</version>
+ <version>1.0.0.Final</version>
<relativePath>parent</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: social/trunk/social/pom.xml
===================================================================
--- social/trunk/social/pom.xml 2012-03-19 19:01:13 UTC (rev 1525)
+++ social/trunk/social/pom.xml 2012-03-19 19:45:15 UTC (rev 1526)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-social-parent</artifactId>
- <version>2.0.0.Beta1-SNAPSHOT</version>
+ <version>1.0.0.Final</version>
<relativePath>../parent</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: social/trunk/webapps/as7/openid-consumer/pom.xml
===================================================================
--- social/trunk/webapps/as7/openid-consumer/pom.xml 2012-03-19 19:01:13 UTC (rev 1525)
+++ social/trunk/webapps/as7/openid-consumer/pom.xml 2012-03-19 19:45:15 UTC (rev 1526)
@@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.picketlink.social.as7</groupId>
<artifactId>openid-consumer</artifactId>
- <version>2.0.0.Beta1-SNAPSHOT</version>
+ <version>1.0.0.Final</version>
<packaging>war</packaging>
<name>PicketLink Federation OpenID Consumer</name>
<url>http://labs.jboss.org/portal/picketlink/</url>
Modified: social/trunk/webapps/as7/picketlink-reg/pom.xml
===================================================================
--- social/trunk/webapps/as7/picketlink-reg/pom.xml 2012-03-19 19:01:13 UTC (rev 1525)
+++ social/trunk/webapps/as7/picketlink-reg/pom.xml 2012-03-19 19:45:15 UTC (rev 1526)
@@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.picketlink.social.as7</groupId>
<artifactId>picketlink-reg</artifactId>
- <version>2.0.0.Beta1-SNAPSHOT</version>
+ <version>1.0.0.Final</version>
<packaging>war</packaging>
<name>PicketLink Social Registration</name>
<url>http://labs.jboss.org/portal/picketlink/</url>
Modified: social/trunk/webapps/as7/pom.xml
===================================================================
--- social/trunk/webapps/as7/pom.xml 2012-03-19 19:01:13 UTC (rev 1525)
+++ social/trunk/webapps/as7/pom.xml 2012-03-19 19:45:15 UTC (rev 1526)
@@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.picketlink.social</groupId>
<artifactId>picketlink-social-as7-webapps</artifactId>
- <version>2.0.0.Beta1-SNAPSHOT</version>
+ <version>1.0.0.Final</version>
<packaging>pom</packaging>
<name>PicketLink Social Web Applications</name>
<url>http://labs.jboss.org/portal/jbosssecurity/</url>
Modified: social/trunk/webapps/openid-consumer/pom.xml
===================================================================
--- social/trunk/webapps/openid-consumer/pom.xml 2012-03-19 19:01:13 UTC (rev 1525)
+++ social/trunk/webapps/openid-consumer/pom.xml 2012-03-19 19:45:15 UTC (rev 1526)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-social-webapps</artifactId>
- <version>2.0.0.Beta1-SNAPSHOT</version>
+ <version>1.0.0.Final</version>
<relativePath>../</relativePath>
</parent>
Modified: social/trunk/webapps/openid-provider/pom.xml
===================================================================
--- social/trunk/webapps/openid-provider/pom.xml 2012-03-19 19:01:13 UTC (rev 1525)
+++ social/trunk/webapps/openid-provider/pom.xml 2012-03-19 19:45:15 UTC (rev 1526)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-social-webapps</artifactId>
- <version>2.0.0.Beta1-SNAPSHOT</version>
+ <version>1.0.0.Final</version>
<relativePath>../</relativePath>
</parent>
Modified: social/trunk/webapps/picketlink-reg/pom.xml
===================================================================
--- social/trunk/webapps/picketlink-reg/pom.xml 2012-03-19 19:01:13 UTC (rev 1525)
+++ social/trunk/webapps/picketlink-reg/pom.xml 2012-03-19 19:45:15 UTC (rev 1526)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-social-webapps</artifactId>
- <version>2.0.0.Beta1-SNAPSHOT</version>
+ <version>1.0.0.Final</version>
<relativePath>../</relativePath>
</parent>
Modified: social/trunk/webapps/pom.xml
===================================================================
--- social/trunk/webapps/pom.xml 2012-03-19 19:01:13 UTC (rev 1525)
+++ social/trunk/webapps/pom.xml 2012-03-19 19:45:15 UTC (rev 1526)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-social-parent</artifactId>
- <version>2.0.0.Beta1-SNAPSHOT</version>
+ <version>1.0.0.Final</version>
<relativePath>../parent</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
12 years, 9 months
Picketlink SVN: r1525 - in social/trunk: openid/src/main/java/org/picketlink/social/openid/auth and 1 other directories.
by picketlink-commits@lists.jboss.org
Author: anil.saldhana(a)jboss.com
Date: 2012-03-19 15:01:13 -0400 (Mon, 19 Mar 2012)
New Revision: 1525
Modified:
social/trunk/facebook/src/main/java/org/picketlink/social/facebook/FacebookAuthenticator.java
social/trunk/facebook/src/main/java/org/picketlink/social/facebook/FacebookProcessor.java
social/trunk/openid/src/main/java/org/picketlink/social/openid/auth/OpenIDProcessor.java
social/trunk/social/src/main/java/org/picketlink/social/auth/ExternalAuthenticator.java
Log:
deal with negative responses
Modified: social/trunk/facebook/src/main/java/org/picketlink/social/facebook/FacebookAuthenticator.java
===================================================================
--- social/trunk/facebook/src/main/java/org/picketlink/social/facebook/FacebookAuthenticator.java 2012-03-19 15:59:04 UTC (rev 1524)
+++ social/trunk/facebook/src/main/java/org/picketlink/social/facebook/FacebookAuthenticator.java 2012-03-19 19:01:13 UTC (rev 1525)
@@ -187,7 +187,12 @@
Principal principal = processor.getPrincipal(request, response, context.getRealm());
if(principal == null)
- throw new RuntimeException("Principal was null. Maybe login modules need to be configured properly.");
+ {
+ log.error("Principal was null. Maybe login modules need to be configured properly.");
+ response.sendError(HttpServletResponse.SC_FORBIDDEN);
+ return false;
+ }
+
String userName = principal.getName();
request.getSessionInternal().setNote(Constants.SESS_USERNAME_NOTE, userName);
Modified: social/trunk/facebook/src/main/java/org/picketlink/social/facebook/FacebookProcessor.java
===================================================================
--- social/trunk/facebook/src/main/java/org/picketlink/social/facebook/FacebookProcessor.java 2012-03-19 15:59:04 UTC (rev 1524)
+++ social/trunk/facebook/src/main/java/org/picketlink/social/facebook/FacebookProcessor.java 2012-03-19 19:01:13 UTC (rev 1525)
@@ -156,6 +156,8 @@
{
Principal principal = null;
Principal facebookPrincipal = handleAuthenticationResponse(request, response);
+ if(facebookPrincipal == null)
+ return null;
request.getSession().setAttribute("PRINCIPAL", facebookPrincipal);
cachedPrincipal.set(facebookPrincipal);
@@ -186,7 +188,8 @@
String authorizationCode = request.getParameter(OAuthConstants.CODE_PARAMETER);
if (authorizationCode == null)
{
- throw new RuntimeException("Authorization code parameter not found");
+ log.error("Authorization code parameter not found");
+ return null;
}
URLConnection connection = sendAccessTokenRequest(returnUrl, authorizationCode, response);
Modified: social/trunk/openid/src/main/java/org/picketlink/social/openid/auth/OpenIDProcessor.java
===================================================================
--- social/trunk/openid/src/main/java/org/picketlink/social/openid/auth/OpenIDProcessor.java 2012-03-19 15:59:04 UTC (rev 1524)
+++ social/trunk/openid/src/main/java/org/picketlink/social/openid/auth/OpenIDProcessor.java 2012-03-19 19:01:13 UTC (rev 1525)
@@ -241,7 +241,7 @@
{
throw new RuntimeException(e);
}
-
+
// examine the verification result and extract the verified identifier
Identifier identifier = verification.getVerifiedId();
Modified: social/trunk/social/src/main/java/org/picketlink/social/auth/ExternalAuthenticator.java
===================================================================
--- social/trunk/social/src/main/java/org/picketlink/social/auth/ExternalAuthenticator.java 2012-03-19 15:59:04 UTC (rev 1524)
+++ social/trunk/social/src/main/java/org/picketlink/social/auth/ExternalAuthenticator.java 2012-03-19 19:01:13 UTC (rev 1525)
@@ -32,7 +32,6 @@
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
-import org.apache.catalina.Session;
import org.apache.catalina.authenticator.Constants;
import org.apache.catalina.authenticator.FormAuthenticator;
import org.apache.catalina.connector.Request;
@@ -219,6 +218,11 @@
{
principal = facebookProcessor.getPrincipal(request, response, context.getRealm());
}
+ if(principal == null)
+ {
+ response.sendError(HttpServletResponse.SC_FORBIDDEN);
+ return false;
+ }
return dealWithFacebookPrincipal(request, response, principal);
}
@@ -242,7 +246,11 @@
Principal principal = facebookProcessor.getPrincipal(request, response, context.getRealm());
if(principal == null)
- throw new RuntimeException("Principal was null. Maybe login modules need to be configured properly. Or user chose no data");
+ {
+ log.error("Principal was null. Maybe login modules need to be configured properly. Or user chose no data");
+ response.sendError(HttpServletResponse.SC_FORBIDDEN);
+ return false;
+ }
return dealWithFacebookPrincipal(request, response, principal);
}
@@ -274,9 +282,14 @@
HttpSession httpSession = request.getSession();
String state = (String) httpSession.getAttribute("STATE");
if(trace) log.trace("state="+ state);
-
+
if( STATES.FINISH.name().equals(state))
- return true;
+ {
+ //This is a replay. We need to resend a request back to the OpenID provider
+ httpSession.setAttribute("STATE", STATES.AUTH.name());
+
+ return openidProcessor.prepareAndSendAuthRequest(request, response);
+ }
if( state == null || state.isEmpty())
{
@@ -284,32 +297,16 @@
}
//We have sent an auth request
if( state.equals(STATES.AUTH.name()))
- {
- Session session = request.getSessionInternal(true);
- if (saveRestoreRequest)
- {
- this.saveRequest(request, session);
- }
-
+ {
Principal principal = openidProcessor.processIncomingAuthResult(request, response, context.getRealm());
if(principal == null)
- throw new RuntimeException("Principal was null. Maybe login modules need to be configured properly. Or user chose no data");
-
- String principalName = principal.getName();
- request.getSessionInternal().setNote(Constants.SESS_USERNAME_NOTE, principalName);
- request.getSessionInternal().setNote(Constants.SESS_PASSWORD_NOTE, "");
- request.setUserPrincipal(principal);
-
- if (saveRestoreRequest)
{
- this.restoreRequest(request, request.getSessionInternal());
+ log.error("Principal was null. Maybe login modules need to be configured properly. Or user chose no data");
+ return false;
}
-
- if(trace)
- log.trace("Logged in as:" + principal);
- registerWithAuthenticatorBase(request,response,principal,principalName);
- return true;
+
+ return dealWithOpenIDPrincipal(request, response, principal);
}
return false;
}
@@ -365,4 +362,25 @@
return true;
}
+
+ private boolean dealWithOpenIDPrincipal(Request request, Response response, Principal principal) throws IOException
+ {
+ HttpSession httpSession = request.getSession();
+
+ String principalName = principal.getName();
+ request.getSessionInternal().setNote(Constants.SESS_USERNAME_NOTE, principalName);
+ request.getSessionInternal().setNote(Constants.SESS_PASSWORD_NOTE, "");
+ request.setUserPrincipal(principal);
+
+ if (saveRestoreRequest)
+ {
+ this.restoreRequest(request, request.getSessionInternal());
+ }
+
+ if(trace)
+ log.trace("Logged in as:" + principal);
+ registerWithAuthenticatorBase(request,response,principal,principalName);
+ httpSession.setAttribute("STATE", STATES.FINISH.name());
+ return true;
+ }
}
\ No newline at end of file
12 years, 9 months
Picketlink SVN: r1524 - in social/trunk: facebook and 22 other directories.
by picketlink-commits@lists.jboss.org
Author: anil.saldhana(a)jboss.com
Date: 2012-03-19 11:59:04 -0400 (Mon, 19 Mar 2012)
New Revision: 1524
Added:
social/trunk/webapps/as7/
social/trunk/webapps/as7/openid-consumer/
social/trunk/webapps/as7/openid-consumer/pom.xml
social/trunk/webapps/as7/openid-consumer/src/
social/trunk/webapps/as7/openid-consumer/src/main/
social/trunk/webapps/as7/openid-consumer/src/main/resources/
social/trunk/webapps/as7/openid-consumer/src/main/webapp/
social/trunk/webapps/as7/openid-consumer/src/main/webapp/META-INF/
social/trunk/webapps/as7/openid-consumer/src/main/webapp/META-INF/jboss-deployment-structure.xml
social/trunk/webapps/as7/picketlink-reg/
social/trunk/webapps/as7/picketlink-reg/a
social/trunk/webapps/as7/picketlink-reg/pom.xml
social/trunk/webapps/as7/picketlink-reg/src/
social/trunk/webapps/as7/picketlink-reg/src/main/
social/trunk/webapps/as7/picketlink-reg/src/main/resources/
social/trunk/webapps/as7/picketlink-reg/src/main/webapp/
social/trunk/webapps/as7/picketlink-reg/src/main/webapp/META-INF/
social/trunk/webapps/as7/picketlink-reg/src/main/webapp/META-INF/jboss-deployment-structure.xml
social/trunk/webapps/as7/picketlink-reg/src/main/webapp/WEB-INF/
social/trunk/webapps/as7/picketlink-reg/src/main/webapp/WEB-INF/jboss-web.xml
social/trunk/webapps/as7/pom.xml
social/trunk/webapps/openid-consumer/resources/META-INF/jboss-deployment-structure.xml
social/trunk/webapps/picketlink-reg/resources/META-INF/context.xml
social/trunk/webapps/picketlink-reg/resources/META-INF/jboss-deployment-structure.xml
social/trunk/webapps/picketlink-reg/resources/WEB-INF/classes/
social/trunk/webapps/picketlink-reg/src/main/webapp/META-INF/
social/trunk/webapps/picketlink-reg/src/main/webapp/META-INF/context.xml
social/trunk/webapps/resources/
social/trunk/webapps/resources/META-INF/
social/trunk/webapps/resources/WEB-INF/
social/trunk/webapps/resources/WEB-INF/classes/
Modified:
social/trunk/facebook/.project
social/trunk/pom.xml
social/trunk/social/pom.xml
social/trunk/webapps/picketlink-reg/resources/WEB-INF/context.xml
social/trunk/webapps/picketlink-reg/resources/WEB-INF/jboss-web.xml
social/trunk/webapps/picketlink-reg/src/main/webapp/WEB-INF/context.xml
social/trunk/webapps/pom.xml
Log:
as7 apps
Modified: social/trunk/facebook/.project
===================================================================
--- social/trunk/facebook/.project 2012-03-19 15:57:16 UTC (rev 1523)
+++ social/trunk/facebook/.project 2012-03-19 15:59:04 UTC (rev 1524)
@@ -1,6 +1,6 @@
<projectDescription>
<name>picketlink-facebook</name>
- <comment>PicketLink Social - Facebook Adaptor</comment>
+ <comment>PicketLink Social - Facebook Adaptor. NO_M2ECLIPSE_SUPPORT: Project files created with the maven-eclipse-plugin are not supported in M2Eclipse.</comment>
<projects/>
<buildSpec>
<buildCommand>
Modified: social/trunk/pom.xml
===================================================================
--- social/trunk/pom.xml 2012-03-19 15:57:16 UTC (rev 1523)
+++ social/trunk/pom.xml 2012-03-19 15:59:04 UTC (rev 1524)
@@ -19,6 +19,7 @@
<module>facebook</module>
<module>social</module>
<module>assembly</module>
+ <module>webapps</module>
</modules>
<reporting>
Modified: social/trunk/social/pom.xml
===================================================================
--- social/trunk/social/pom.xml 2012-03-19 15:57:16 UTC (rev 1523)
+++ social/trunk/social/pom.xml 2012-03-19 15:59:04 UTC (rev 1524)
@@ -96,12 +96,12 @@
<dependency>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-fed-model</artifactId>
- <version>2.0.1.final</version>
+ <version>2.0.2.Final</version>
</dependency>
<dependency>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-web</artifactId>
- <version>2.0.1.final</version>
+ <version>2.0.2.Final</version>
</dependency>
<dependency>
<groupId>org.openid4java</groupId>
Added: social/trunk/webapps/as7/openid-consumer/pom.xml
===================================================================
--- social/trunk/webapps/as7/openid-consumer/pom.xml (rev 0)
+++ social/trunk/webapps/as7/openid-consumer/pom.xml 2012-03-19 15:59:04 UTC (rev 1524)
@@ -0,0 +1,34 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.picketlink.social.as7</groupId>
+ <artifactId>openid-consumer</artifactId>
+ <version>2.0.0.Beta1-SNAPSHOT</version>
+ <packaging>war</packaging>
+ <name>PicketLink Federation OpenID Consumer</name>
+ <url>http://labs.jboss.org/portal/picketlink/</url>
+ <description>PicketLink Samples contains the samples for Federated Identity Needs.</description>
+ <licenses>
+ <license>
+ <name>lgpl</name>
+ <url>http://repository.jboss.com/licenses/lgpl.txt</url>
+ </license>
+ </licenses>
+ <organization>
+ <name>JBoss Inc.</name>
+ <url>http://www.jboss.org</url>
+ </organization>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-war-plugin</artifactId>
+ <configuration>
+ <warName>openid-consumer</warName>
+ <webappDirectory>${basedir}/../../openid-consumer/resources/</webappDirectory>
+ <warSourceExcludes>WEB-INF/lib/*.jar</warSourceExcludes>
+ <packagingExcludes>**/.svn/</packagingExcludes>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>
Property changes on: social/trunk/webapps/as7/openid-consumer/pom.xml
___________________________________________________________________
Added: svn:executable
+ *
Added: social/trunk/webapps/as7/openid-consumer/src/main/webapp/META-INF/jboss-deployment-structure.xml
===================================================================
--- social/trunk/webapps/as7/openid-consumer/src/main/webapp/META-INF/jboss-deployment-structure.xml (rev 0)
+++ social/trunk/webapps/as7/openid-consumer/src/main/webapp/META-INF/jboss-deployment-structure.xml 2012-03-19 15:59:04 UTC (rev 1524)
@@ -0,0 +1,10 @@
+<jboss-deployment-structure>
+
+ <deployment>
+ <!-- Add picketlink module dependency -->
+ <dependencies>
+ <module name="org.picketlink" />
+ </dependencies>
+ </deployment>
+</jboss-deployment-structure>
+
Added: social/trunk/webapps/as7/picketlink-reg/a
===================================================================
--- social/trunk/webapps/as7/picketlink-reg/a (rev 0)
+++ social/trunk/webapps/as7/picketlink-reg/a 2012-03-19 15:59:04 UTC (rev 1524)
@@ -0,0 +1,1174 @@
+Apache Maven 3.0.2 (r1056850; 2011-01-08 18:58:10-0600)
+Java version: 1.6.0_31, vendor: Sun Microsystems Inc.
+Java home: /home/anil/java/jdk1.6.0_31/jre
+Default locale: en_US, platform encoding: UTF-8
+OS name: "linux", version: "3.2.9-2.fc16.x86_64", arch: "amd64", family: "unix"
+[INFO] Error stacktraces are turned on.
+[DEBUG] Reading global settings from /opt/apache-maven-3.0.2/conf/settings.xml
+[DEBUG] Reading user settings from /home/anil/.m2/settings.xml
+[DEBUG] Using local repository at /home/anil/.m2/repository
+[DEBUG] Using manager EnhancedLocalRepositoryManager with priority 10 for /home/anil/.m2/repository
+[INFO] Scanning for projects...
+[DEBUG] Skipped remote update check for org.picketlink:picketlink-social-webapps:2.0.0.Beta1-SNAPSHOT/maven-metadata.xml, locally built metadata up-to-date.
+[DEBUG] Skipped remote update check for org.picketlink:picketlink-social-parent:2.0.0.Beta1-SNAPSHOT/maven-metadata.xml, locally built metadata up-to-date.
+[DEBUG] Extension realms for project org.picketlink:picketlink-reg-as7:war:2.0.0.Beta1-SNAPSHOT: (none)
+[DEBUG] Looking up lifecyle mappings for packaging war from ClassRealm[plexus.core, parent: null]
+[WARNING]
+[WARNING] Some problems were encountered while building the effective model for org.picketlink:picketlink-reg-as7:war:2.0.0.Beta1-SNAPSHOT
+[WARNING] 'parent.relativePath' points at org.picketlink:picketlink-social-as7-webapps instead of org.picketlink:picketlink-social-webapps, please verify your project structure @ line 2, column 11
+[WARNING] The expression ${pom.version} is deprecated. Please use ${project.version} instead.
+[WARNING]
+[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
+[WARNING]
+[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
+[WARNING]
+[DEBUG] === REACTOR BUILD PLAN ================================================
+[DEBUG] Project: org.picketlink:picketlink-reg-as7:war:2.0.0.Beta1-SNAPSHOT
+[DEBUG] Tasks: [clean, install]
+[DEBUG] Style: Regular
+[DEBUG] =======================================================================
+[INFO]
+[INFO] ------------------------------------------------------------------------
+[INFO] Building PicketLink Social Registration 2.0.0.Beta1-SNAPSHOT
+[INFO] ------------------------------------------------------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project: org.picketlink:picketlink-reg-as7:2.0.0.Beta1-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): [compile, runtime, test]
+[DEBUG] Repositories (dependencies): [jboss-public-repository-group (https://repository.jboss.org/nexus/content/groups/public/, releases=true, snapshots=true, managed=false), repository.jboss.org (http://repository.jboss.org/maven2/, releases=true, snapshots=false, managed=false), snapshots.jboss.org (http://snapshots.jboss.org/maven2/, releases=false, snapshots=true, managed=false), central (http://repo1.maven.org/maven2, releases=true, snapshots=false, managed=false)]
+[DEBUG] Repositories (plugins) : [jboss-public-repository-group (https://repository.jboss.org/nexus/content/groups/public/, releases=true, snapshots=true, managed=false), central (http://repo1.maven.org/maven2, releases=true, snapshots=false, managed=false)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal: org.apache.maven.plugins:maven-clean-plugin:2.3:clean (default-clean)
+[DEBUG] Style: Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+ <directory default-value="${project.build.directory}"/>
+ <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+ <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+ <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+ <outputDirectory default-value="${project.build.outputDirectory}"/>
+ <project default-value="${project}"/>
+ <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+ <skip default-value="false">${clean.skip}</skip>
+ <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+ <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal: org.apache.maven.plugins:maven-enforcer-plugin:1.0-beta-1:enforce (enforce-plugin-versions)
+[DEBUG] Style: Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+ <fail default-value="true">${enforcer.fail}</fail>
+ <failFast default-value="false">${enforcer.failFast}</failFast>
+ <ignoreCache default-value="false">${enforcer.ignoreCache}</ignoreCache>
+ <project>${project}</project>
+ <rules>
+ <requirePluginVersions>
+ <message>Best practice is to always define plugin versions!</message>
+ <banLatest>true</banLatest>
+ <banRelease>true</banRelease>
+ <phases>deploy,site</phases>
+ </requirePluginVersions>
+ </rules>
+ <session>${session}</session>
+ <skip default-value="false">${enforcer.skip}</skip>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal: org.apache.maven.plugins:maven-enforcer-plugin:1.0-beta-1:enforce (enforce-java-version)
+[DEBUG] Style: Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+ <fail default-value="true">${enforcer.fail}</fail>
+ <failFast default-value="false">${enforcer.failFast}</failFast>
+ <ignoreCache default-value="false">${enforcer.ignoreCache}</ignoreCache>
+ <project>${project}</project>
+ <rules>
+ <requireJavaVersion>
+ <message>To build this project JDK 1.5 (or greater) is required. Please install it.</message>
+ <version>1.5</version>
+ </requireJavaVersion>
+ </rules>
+ <session>${session}</session>
+ <skip default-value="false">${enforcer.skip}</skip>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal: org.apache.maven.plugins:maven-enforcer-plugin:1.0-beta-1:enforce (enforce-maven-version)
+[DEBUG] Style: Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+ <fail default-value="true">${enforcer.fail}</fail>
+ <failFast default-value="false">${enforcer.failFast}</failFast>
+ <ignoreCache default-value="false">${enforcer.ignoreCache}</ignoreCache>
+ <project>${project}</project>
+ <rules>
+ <requireMavenVersion>
+ <message>To build this project Maven 2.0.9 (or greater) is required. Please install it.</message>
+ <version>2.0.9</version>
+ </requireMavenVersion>
+ </rules>
+ <session>${session}</session>
+ <skip default-value="false">${enforcer.skip}</skip>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal: org.apache.maven.plugins:maven-resources-plugin:2.4.1:resources (default-resources)
+[DEBUG] Style: Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+ <buildFilters default-value="${project.build.filters}"/>
+ <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+ <escapeString default-value="${maven.resources.escapeString}"/>
+ <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+ <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+ <outputDirectory default-value="${project.build.outputDirectory}"/>
+ <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+ <project default-value="${project}"/>
+ <resources default-value="${project.resources}"/>
+ <session default-value="${session}"/>
+ <useBuildFilters default-value="true"/>
+ <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal: org.apache.maven.plugins:maven-compiler-plugin:2.0.2:compile (default-compile)
+[DEBUG] Style: Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+ <basedir>${basedir}</basedir>
+ <buildDirectory>${project.build.directory}</buildDirectory>
+ <classpathElements>${project.compileClasspathElements}</classpathElements>
+ <compileSourceRoots>${project.compileSourceRoots}</compileSourceRoots>
+ <compilerId default-value="javac">${maven.compiler.compilerId}</compilerId>
+ <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>
+ <debug default-value="true">${maven.compiler.debug}</debug>
+ <encoding>${maven.compiler.encoding}</encoding>
+ <executable>${maven.compiler.executable}</executable>
+ <failOnError default-value="true">${maven.compiler.failOnError}</failOnError>
+ <fork default-value="false"/>
+ <maxmem>${maven.compiler.maxmem}</maxmem>
+ <meminitial>${maven.compiler.meminitial}</meminitial>
+ <optimize default-value="false">${maven.compiler.optimize}</optimize>
+ <outputDirectory>${project.build.outputDirectory}</outputDirectory>
+ <outputFileName>${project.build.finalName}</outputFileName>
+ <projectArtifact>${project.artifact}</projectArtifact>
+ <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
+ <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
+ <source>${maven.compiler.source}</source>
+ <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
+ <target>${maven.compiler.target}</target>
+ <verbose default-value="false">${maven.compiler.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal: org.apache.maven.plugins:maven-resources-plugin:2.4.1:testResources (default-testResources)
+[DEBUG] Style: Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+ <buildFilters default-value="${project.build.filters}"/>
+ <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+ <escapeString default-value="${maven.resources.escapeString}"/>
+ <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+ <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+ <outputDirectory>${project.build.testOutputDirectory}</outputDirectory>
+ <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+ <project default-value="${project}"/>
+ <resources>${project.testResources}</resources>
+ <session default-value="${session}"/>
+ <useBuildFilters default-value="true"/>
+ <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal: org.apache.maven.plugins:maven-compiler-plugin:2.0.2:testCompile (default-testCompile)
+[DEBUG] Style: Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+ <basedir>${basedir}</basedir>
+ <buildDirectory>${project.build.directory}</buildDirectory>
+ <classpathElements>${project.testClasspathElements}</classpathElements>
+ <compileSourceRoots>${project.testCompileSourceRoots}</compileSourceRoots>
+ <compilerId default-value="javac">${maven.compiler.compilerId}</compilerId>
+ <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>
+ <debug default-value="true">${maven.compiler.debug}</debug>
+ <encoding>${maven.compiler.encoding}</encoding>
+ <executable>${maven.compiler.executable}</executable>
+ <failOnError default-value="true">${maven.compiler.failOnError}</failOnError>
+ <fork default-value="false"/>
+ <maxmem>${maven.compiler.maxmem}</maxmem>
+ <meminitial>${maven.compiler.meminitial}</meminitial>
+ <optimize default-value="false">${maven.compiler.optimize}</optimize>
+ <outputDirectory>${project.build.testOutputDirectory}</outputDirectory>
+ <outputFileName>${project.build.finalName}</outputFileName>
+ <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
+ <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
+ <skip>${maven.test.skip}</skip>
+ <source>${maven.compiler.source}</source>
+ <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
+ <target>${maven.compiler.target}</target>
+ <verbose default-value="false">${maven.compiler.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal: org.apache.maven.plugins:maven-surefire-plugin:2.4.3:test (default-test)
+[DEBUG] Style: Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+ <argLine>${surefire.jvm.args}</argLine>
+ <basedir>${basedir}</basedir>
+ <childDelegation default-value="false">${childDelegation}</childDelegation>
+ <classesDirectory>${project.build.outputDirectory}</classesDirectory>
+ <classpathElements>${project.testClasspathElements}</classpathElements>
+ <debugForkedProcess>${maven.surefire.debug}</debugForkedProcess>
+ <disableXmlReport default-value="false">false</disableXmlReport>
+ <enableAssertions default-value="true">${enableAssertions}</enableAssertions>
+ <excludedGroups>${excludedGroups}</excludedGroups>
+ <failIfNoTests>${failIfNoTests}</failIfNoTests>
+ <forkMode default-value="once">pertest</forkMode>
+ <forkedProcessTimeoutInSeconds>${surefire.timeout}</forkedProcessTimeoutInSeconds>
+ <groups>${groups}</groups>
+ <includes>
+ <include>**/**TestCase.java</include>
+ </includes>
+ <junitArtifactName default-value="junit:junit">${junitArtifactName}</junitArtifactName>
+ <jvm>${jvm}</jvm>
+ <localRepository>${localRepository}</localRepository>
+ <parallel>${parallel}</parallel>
+ <pluginArtifactMap>${plugin.artifactMap}</pluginArtifactMap>
+ <printSummary default-value="true">true</printSummary>
+ <project>${project}</project>
+ <projectArtifactMap>${project.artifactMap}</projectArtifactMap>
+ <redirectTestOutputToFile default-value="false">${maven.test.redirectTestOutputToFile}</redirectTestOutputToFile>
+ <remoteRepositories>${project.pluginArtifactRepositories}</remoteRepositories>
+ <reportFormat default-value="brief">${surefire.reportFormat}</reportFormat>
+ <reportsDirectory>${project.build.directory}/surefire-reports</reportsDirectory>
+ <session>${session}</session>
+ <skip>${maven.test.skip}</skip>
+ <skipExec>${maven.test.skip.exec}</skipExec>
+ <skipTests>${skipTests}</skipTests>
+ <test>${test}</test>
+ <testClassesDirectory>${project.build.testOutputDirectory}</testClassesDirectory>
+ <testFailureIgnore>true</testFailureIgnore>
+ <testNGArtifactName default-value="org.testng:testng">${testNGArtifactName}</testNGArtifactName>
+ <testSourceDirectory>${project.build.testSourceDirectory}</testSourceDirectory>
+ <threadCount>${threadCount}</threadCount>
+ <trimStackTrace default-value="true">false</trimStackTrace>
+ <useFile default-value="true">false</useFile>
+ <useManifestOnlyJar default-value="true">${surefire.useManifestOnlyJar}</useManifestOnlyJar>
+ <useSystemClassLoader>${surefire.useSystemClassLoader}</useSystemClassLoader>
+ <workingDirectory>${basedir}</workingDirectory>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal: org.apache.maven.plugins:maven-war-plugin:2.2:war (default-war)
+[DEBUG] Style: Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+ <archiveClasses default-value="false">${archiveClasses}</archiveClasses>
+ <attachClasses default-value="false"/>
+ <cacheFile default-value="${project.build.directory}/war/work/webapp-cache.xml"/>
+ <classesClassifier default-value="classes"/>
+ <classesDirectory default-value="${project.build.outputDirectory}"/>
+ <containerConfigXML>${maven.war.containerConfigXML}</containerConfigXML>
+ <escapeString>${maven.war.escapeString}</escapeString>
+ <escapedBackslashesInFilePath default-value="false">${maven.war.escapedBackslashesInFilePath}</escapedBackslashesInFilePath>
+ <failOnMissingWebXml default-value="true">${failOnMissingWebXml}</failOnMissingWebXml>
+ <filteringDeploymentDescriptors default-value="false">${maven.war.filteringDeploymentDescriptors}</filteringDeploymentDescriptors>
+ <outputDirectory default-value="${project.build.directory}"/>
+ <packagingExcludes>**/.svn/,WEB-INF/lib/guice-2.0.jar,WEB-INF/lib/jcip-annotations-1.0.jar</packagingExcludes>
+ <primaryArtifact default-value="true">${primaryArtifact}</primaryArtifact>
+ <project default-value="${project}"/>
+ <session default-value="${session}"/>
+ <useCache default-value="false">${useCache}</useCache>
+ <warName default-value="${project.build.finalName}">picketlink-reg</warName>
+ <warSourceDirectory default-value="${basedir}/src/main/webapp"/>
+ <warSourceIncludes default-value="**"/>
+ <webXml>${maven.war.webxml}</webXml>
+ <webappDirectory default-value="${project.build.directory}/${project.build.finalName}">/home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/../../picketlink-reg/resources/</webappDirectory>
+ <workDirectory default-value="${project.build.directory}/war/work"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal: org.apache.maven.plugins:maven-source-plugin:2.1.1:jar-no-fork (attach-sources)
+[DEBUG] Style: Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+ <attach default-value="true">${attach}</attach>
+ <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+ <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+ <finalName default-value="${project.build.finalName}"/>
+ <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+ <includePom default-value="false">${source.includePom}</includePom>
+ <outputDirectory default-value="${project.build.directory}"/>
+ <project>${project}</project>
+ <reactorProjects>${reactorProjects}</reactorProjects>
+ <useDefaultExcludes default-value="true"/>
+ <useDefaultManifestFile default-value="false"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal: org.apache.maven.plugins:maven-install-plugin:2.3:install (default-install)
+[DEBUG] Style: Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+ <artifact default-value="${project.artifact}"/>
+ <attachedArtifacts default-value="${project.attachedArtifacts}"/>
+ <createChecksum default-value="false">${createChecksum}</createChecksum>
+ <localRepository>${localRepository}</localRepository>
+ <packaging default-value="${project.packaging}"/>
+ <pomFile default-value="${project.file}"/>
+ <updateReleaseInfo default-value="false">${updateReleaseInfo}</updateReleaseInfo>
+</configuration>
+[DEBUG] =======================================================================
+[DEBUG] Skipped remote update check for org.picketlink:picketlink-consolidated-social:2.0.0.Beta1-SNAPSHOT/maven-metadata.xml, locally built metadata up-to-date.
+[DEBUG] Failure to find org.picketlink:picketlink-consolidated-social:2.0.0.Beta1-SNAPSHOT/maven-metadata.xml in http://snapshots.jboss.org/maven2/ was cached in the local repository, resolution will not be reattempted until the update interval of snapshots.jboss.org has elapsed or updates are forced
+[DEBUG] Skipped remote update check for org.picketlink:picketlink-consolidated-social:2.0.0.Beta1-SNAPSHOT/maven-metadata.xml, locally built metadata up-to-date.
+[DEBUG] Failure to find org.picketlink:picketlink-consolidated-social:2.0.0.Beta1-SNAPSHOT/maven-metadata.xml in http://snapshots.jboss.org/maven2/ was cached in the local repository, resolution will not be reattempted until the update interval of snapshots.jboss.org has elapsed or updates are forced
+[DEBUG] Skipped remote update check for org.picketlink:picketlink-social-parent:2.0.0.Beta1-SNAPSHOT/maven-metadata.xml, locally built metadata up-to-date.
+[DEBUG] Failure to find org.picketlink:picketlink-social-parent:2.0.0.Beta1-SNAPSHOT/maven-metadata.xml in http://snapshots.jboss.org/maven2/ was cached in the local repository, resolution will not be reattempted until the update interval of snapshots.jboss.org has elapsed or updates are forced
+[DEBUG] org.picketlink:picketlink-reg-as7:war:2.0.0.Beta1-SNAPSHOT
+[DEBUG] org.picketlink:picketlink-consolidated-social:jar:2.0.0.Beta1-SNAPSHOT:compile
+[DEBUG] org.openid4java:openid4java-nodeps:jar:0.9.6:compile
+[DEBUG] commons-logging:commons-logging:jar:1.1.1:compile
+[DEBUG] org.json:json:jar:20090211:compile
+[INFO]
+[INFO] --- maven-clean-plugin:2.3:clean (default-clean) @ picketlink-reg-as7 ---
+[DEBUG] org.apache.maven.plugins:maven-clean-plugin:jar:2.3:
+[DEBUG] org.apache.maven:maven-project:jar:2.0.6:compile
+[DEBUG] org.apache.maven:maven-settings:jar:2.0.6:compile
+[DEBUG] org.apache.maven:maven-profile:jar:2.0.6:compile
+[DEBUG] org.apache.maven:maven-model:jar:2.0.6:compile
+[DEBUG] org.apache.maven:maven-artifact-manager:jar:2.0.6:compile
+[DEBUG] org.apache.maven:maven-repository-metadata:jar:2.0.6:compile
+[DEBUG] org.apache.maven:maven-plugin-registry:jar:2.0.6:compile
+[DEBUG] org.apache.maven:maven-artifact:jar:2.0.6:compile
+[DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile
+[DEBUG] junit:junit:jar:3.8.1:compile
+[DEBUG] classworlds:classworlds:jar:1.1-alpha-2:compile
+[DEBUG] org.apache.maven:maven-plugin-api:jar:2.0.6:compile
+[DEBUG] org.apache.maven.shared:file-management:jar:1.2.1:compile
+[DEBUG] org.apache.maven.shared:maven-shared-io:jar:1.1:compile
+[DEBUG] org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-6:compile
+[DEBUG] org.codehaus.plexus:plexus-utils:jar:1.5.6:compile
+[DEBUG] Created new class realm maven.api
+[DEBUG] Importing foreign packages into class realm maven.api
+[DEBUG] Imported: org.apache.maven.wagon.events < plexus.core
+[DEBUG] Imported: org.sonatype.aether.transfer < plexus.core
+[DEBUG] Imported: org.apache.maven.exception < plexus.core
+[DEBUG] Imported: org.sonatype.aether.metadata < plexus.core
+[DEBUG] Imported: org.codehaus.plexus.util.xml.Xpp3Dom < plexus.core
+[DEBUG] Imported: org.sonatype.aether.collection < plexus.core
+[DEBUG] Imported: org.sonatype.aether.version < plexus.core
+[DEBUG] Imported: org.apache.maven.monitor < plexus.core
+[DEBUG] Imported: org.apache.maven.wagon.repository < plexus.core
+[DEBUG] Imported: org.apache.maven.repository < plexus.core
+[DEBUG] Imported: org.apache.maven.wagon.resource < plexus.core
+[DEBUG] Imported: org.codehaus.plexus.logging < plexus.core
+[DEBUG] Imported: org.apache.maven.profiles < plexus.core
+[DEBUG] Imported: org.sonatype.aether.repository < plexus.core
+[DEBUG] Imported: org.apache.maven.classrealm < plexus.core
+[DEBUG] Imported: org.apache.maven.execution < plexus.core
+[DEBUG] Imported: org.sonatype.aether.artifact < plexus.core
+[DEBUG] Imported: org.sonatype.aether.spi < plexus.core
+[DEBUG] Imported: org.apache.maven.reporting < plexus.core
+[DEBUG] Imported: org.apache.maven.usability < plexus.core
+[DEBUG] Imported: org.codehaus.plexus.container < plexus.core
+[DEBUG] Imported: org.codehaus.plexus.component < plexus.core
+[DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlSerializer < plexus.core
+[DEBUG] Imported: org.apache.maven.wagon.authentication < plexus.core
+[DEBUG] Imported: org.apache.maven.lifecycle < plexus.core
+[DEBUG] Imported: org.codehaus.plexus.classworlds < plexus.core
+[DEBUG] Imported: org.sonatype.aether.graph < plexus.core
+[DEBUG] Imported: org.sonatype.aether.* < plexus.core
+[DEBUG] Imported: org.apache.maven.settings < plexus.core
+[DEBUG] Imported: org.codehaus.classworlds < plexus.core
+[DEBUG] Imported: org.sonatype.aether.impl < plexus.core
+[DEBUG] Imported: org.apache.maven.wagon.* < plexus.core
+[DEBUG] Imported: org.apache.maven.toolchain < plexus.core
+[DEBUG] Imported: org.sonatype.aether.deployment < plexus.core
+[DEBUG] Imported: org.apache.maven.wagon.observers < plexus.core
+[DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlPullParserException < plexus.core
+[DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlPullParser < plexus.core
+[DEBUG] Imported: org.apache.maven.configuration < plexus.core
+[DEBUG] Imported: org.apache.maven.cli < plexus.core
+[DEBUG] Imported: org.sonatype.aether.installation < plexus.core
+[DEBUG] Imported: org.codehaus.plexus.context < plexus.core
+[DEBUG] Imported: org.apache.maven.wagon.authorization < plexus.core
+[DEBUG] Imported: org.apache.maven.project < plexus.core
+[DEBUG] Imported: org.codehaus.plexus.lifecycle < plexus.core
+[DEBUG] Imported: org.codehaus.plexus.configuration < plexus.core
+[DEBUG] Imported: org.apache.maven.artifact < plexus.core
+[DEBUG] Imported: org.apache.maven.model < plexus.core
+[DEBUG] Imported: org.apache.maven.* < plexus.core
+[DEBUG] Imported: org.apache.maven.wagon.proxy < plexus.core
+[DEBUG] Imported: org.sonatype.aether.resolution < plexus.core
+[DEBUG] Imported: org.apache.maven.plugin < plexus.core
+[DEBUG] Imported: org.codehaus.plexus.* < plexus.core
+[DEBUG] Imported: org.codehaus.plexus.personality < plexus.core
+[DEBUG] Populating class realm maven.api
+[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-clean-plugin:2.3
+[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-clean-plugin:2.3
+[DEBUG] Imported: < maven.api
+[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-clean-plugin:2.3
+[DEBUG] Included: org.apache.maven.plugins:maven-clean-plugin:jar:2.3
+[DEBUG] Included: junit:junit:jar:3.8.1
+[DEBUG] Included: org.apache.maven.shared:file-management:jar:1.2.1
+[DEBUG] Included: org.apache.maven.shared:maven-shared-io:jar:1.1
+[DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:1.5.6
+[DEBUG] Excluded: org.apache.maven:maven-project:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-settings:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-profile:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-model:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-artifact-manager:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-repository-metadata:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-plugin-registry:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-artifact:jar:2.0.6
+[DEBUG] Excluded: org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1
+[DEBUG] Excluded: classworlds:classworlds:jar:1.1-alpha-2
+[DEBUG] Excluded: org.apache.maven:maven-plugin-api:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-6
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.3:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.3, parent: sun.misc.Launcher$AppClassLoader@1a45a877]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.3:clean' with basic configurator -->
+[DEBUG] (f) directory = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target
+[DEBUG] (f) excludeDefaultDirectories = false
+[DEBUG] (f) failOnError = true
+[DEBUG] (f) followSymLinks = false
+[DEBUG] (f) outputDirectory = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/classes
+[DEBUG] (f) project = MavenProject: org.picketlink:picketlink-reg-as7:2.0.0.Beta1-SNAPSHOT @ /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/pom.xml
+[DEBUG] (f) reportDirectory = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/site
+[DEBUG] (f) skip = false
+[DEBUG] (f) testOutputDirectory = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/test-classes
+[DEBUG] -- end configuration --
+[INFO] Deleting file set: /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target (included: [**], excluded: [])
+[INFO] Scanning for deletable directories.
+[INFO] Adding symbolic link dirs which were previously excluded to the list being deleted.
+[DEBUG] Originally marked for delete: [classes, , maven-archiver]
+[DEBUG] Marked for preserve (with followSymlinks == false): []
+[DEBUG] Symlinks marked for deletion (originally mismarked): []
+[INFO] Re-scanning for deletable files.
+[INFO] Adding symbolic link files which were previously excluded to the list being deleted.
+[DEBUG] Originally marked for delete: [classes, , maven-archiver/pom.properties, picketlink-reg.war, maven-archiver]
+[DEBUG] Marked for preserve (with followSymlinks == false): []
+[DEBUG] Symlinks marked for deletion (originally mismarked): []
+[DEBUG] Found deletable paths: [classes
+
+ maven-archiver/pom.properties
+ picketlink-reg.war
+ maven-archiver]
+[DEBUG] Checking for symlink:
+File's canonical path: /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/classes
+File's absolute path with canonical parent: /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/classes
+[INFO] Deleting directory: /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/classes
+[DEBUG] Checking for symlink:
+File's canonical path: /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target
+File's absolute path with canonical parent: /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target
+[INFO] Deleting directory: /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target
+[DEBUG] Checking for symlink:
+File's canonical path: /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/maven-archiver
+File's absolute path with canonical parent: /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/maven-archiver
+[DEBUG] Skipping non-existing directory: /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/classes
+[DEBUG] Skipping non-existing directory: /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/test-classes
+[DEBUG] Skipping non-existing directory: /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/site
+[INFO]
+[INFO] --- maven-enforcer-plugin:1.0-beta-1:enforce (enforce-plugin-versions) @ picketlink-reg-as7 ---
+[DEBUG] org.apache.maven.plugins:maven-enforcer-plugin:jar:1.0-beta-1:
+[DEBUG] org.apache.maven:maven-artifact:jar:2.0.9:compile
+[DEBUG] org.apache.maven:maven-plugin-api:jar:2.0.9:compile
+[DEBUG] org.apache.maven:maven-project:jar:2.0.9:compile
+[DEBUG] org.apache.maven:maven-settings:jar:2.0.9:compile
+[DEBUG] org.apache.maven:maven-profile:jar:2.0.9:compile
+[DEBUG] org.apache.maven:maven-model:jar:2.0.9:compile
+[DEBUG] org.apache.maven:maven-artifact-manager:jar:2.0.9:compile
+[DEBUG] org.apache.maven:maven-plugin-registry:jar:2.0.9:compile
+[DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile
+[DEBUG] junit:junit:jar:3.8.2:test (scope managed from compile) (version managed from 3.8.1)
+[DEBUG] org.apache.maven:maven-core:jar:2.0.9:compile
+[DEBUG] org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.9:compile
+[DEBUG] org.apache.maven.reporting:maven-reporting-api:jar:2.0.9:compile
+[DEBUG] org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-10:compile
+[DEBUG] org.apache.maven:maven-repository-metadata:jar:2.0.9:compile
+[DEBUG] org.apache.maven:maven-error-diagnostics:jar:2.0.9:compile
+[DEBUG] commons-cli:commons-cli:jar:1.0:compile
+[DEBUG] org.apache.maven:maven-plugin-descriptor:jar:2.0.9:compile
+[DEBUG] org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile
+[DEBUG] org.apache.maven:maven-monitor:jar:2.0.9:compile
+[DEBUG] classworlds:classworlds:jar:1.1:compile
+[DEBUG] org.codehaus.plexus:plexus-utils:jar:1.5.8:compile
+[DEBUG] commons-lang:commons-lang:jar:2.3:compile
+[DEBUG] org.apache.maven.enforcer:enforcer-api:jar:1.0-beta-1:compile
+[DEBUG] org.apache.maven.enforcer:enforcer-rules:jar:1.0-beta-1:compile
+[DEBUG] org.beanshell:bsh:jar:2.0b4:compile
+[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-enforcer-plugin:1.0-beta-1
+[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-enforcer-plugin:1.0-beta-1
+[DEBUG] Imported: < maven.api
+[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-enforcer-plugin:1.0-beta-1
+[DEBUG] Included: org.apache.maven.plugins:maven-enforcer-plugin:jar:1.0-beta-1
+[DEBUG] Included: org.apache.maven.reporting:maven-reporting-api:jar:2.0.9
+[DEBUG] Included: org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-10
+[DEBUG] Included: commons-cli:commons-cli:jar:1.0
+[DEBUG] Included: org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4
+[DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:1.5.8
+[DEBUG] Included: commons-lang:commons-lang:jar:2.3
+[DEBUG] Included: org.apache.maven.enforcer:enforcer-api:jar:1.0-beta-1
+[DEBUG] Included: org.apache.maven.enforcer:enforcer-rules:jar:1.0-beta-1
+[DEBUG] Included: org.beanshell:bsh:jar:2.0b4
+[DEBUG] Excluded: org.apache.maven:maven-artifact:jar:2.0.9
+[DEBUG] Excluded: org.apache.maven:maven-plugin-api:jar:2.0.9
+[DEBUG] Excluded: org.apache.maven:maven-project:jar:2.0.9
+[DEBUG] Excluded: org.apache.maven:maven-settings:jar:2.0.9
+[DEBUG] Excluded: org.apache.maven:maven-profile:jar:2.0.9
+[DEBUG] Excluded: org.apache.maven:maven-model:jar:2.0.9
+[DEBUG] Excluded: org.apache.maven:maven-artifact-manager:jar:2.0.9
+[DEBUG] Excluded: org.apache.maven:maven-plugin-registry:jar:2.0.9
+[DEBUG] Excluded: org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1
+[DEBUG] Excluded: junit:junit:jar:3.8.2
+[DEBUG] Excluded: org.apache.maven:maven-core:jar:2.0.9
+[DEBUG] Excluded: org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.9
+[DEBUG] Excluded: org.apache.maven:maven-repository-metadata:jar:2.0.9
+[DEBUG] Excluded: org.apache.maven:maven-error-diagnostics:jar:2.0.9
+[DEBUG] Excluded: org.apache.maven:maven-plugin-descriptor:jar:2.0.9
+[DEBUG] Excluded: org.apache.maven:maven-monitor:jar:2.0.9
+[DEBUG] Excluded: classworlds:classworlds:jar:1.1
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-enforcer-plugin:1.0-beta-1:enforce from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-enforcer-plugin:1.0-beta-1, parent: sun.misc.Launcher$AppClassLoader@1a45a877]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-enforcer-plugin:1.0-beta-1:enforce' with basic configurator -->
+[DEBUG] (s) fail = true
+[DEBUG] (s) failFast = false
+[DEBUG] (f) ignoreCache = false
+[DEBUG] (s) project = MavenProject: org.picketlink:picketlink-reg-as7:2.0.0.Beta1-SNAPSHOT @ /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/pom.xml
+[DEBUG] (f) message = Best practice is to always define plugin versions!
+[DEBUG] (f) banLatest = true
+[DEBUG] (f) banRelease = true
+[DEBUG] (f) phases = deploy,site
+[DEBUG] (s) rules = [org.apache.maven.plugins.enforcer.RequirePluginVersions@53458dcb]
+[DEBUG] (s) session = org.apache.maven.execution.MavenSession@69408a75
+[DEBUG] (s) skip = false
+[DEBUG] -- end configuration --
+[DEBUG] Executing rule: org.apache.maven.plugins.enforcer.RequirePluginVersions
+[WARNING] This rule is not compatible with the current version of Maven. The rule is not able to perform any checks.
+[INFO]
+[INFO] --- maven-enforcer-plugin:1.0-beta-1:enforce (enforce-java-version) @ picketlink-reg-as7 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-enforcer-plugin:1.0-beta-1:enforce from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-enforcer-plugin:1.0-beta-1, parent: sun.misc.Launcher$AppClassLoader@1a45a877]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-enforcer-plugin:1.0-beta-1:enforce' with basic configurator -->
+[DEBUG] (s) fail = true
+[DEBUG] (s) failFast = false
+[DEBUG] (f) ignoreCache = false
+[DEBUG] (s) project = MavenProject: org.picketlink:picketlink-reg-as7:2.0.0.Beta1-SNAPSHOT @ /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/pom.xml
+[DEBUG] (f) message = To build this project JDK 1.5 (or greater) is required. Please install it.
+[DEBUG] (s) version = 1.5
+[DEBUG] (s) rules = [org.apache.maven.plugins.enforcer.RequireJavaVersion@438d460]
+[DEBUG] (s) session = org.apache.maven.execution.MavenSession@69408a75
+[DEBUG] (s) skip = false
+[DEBUG] -- end configuration --
+[DEBUG] Executing rule: org.apache.maven.plugins.enforcer.RequireJavaVersion
+[DEBUG] Rule org.apache.maven.plugins.enforcer.RequireJavaVersion is cacheable.
+[DEBUG] Detected Java String: 1.6.0_31
+[DEBUG] Normalized Java String: 1.6.0-31
+[DEBUG] Parsed Version: Major: 1 Minor: 6 Incremental: 0 Build: 31 Qualifier: null
+[DEBUG] Detected JDK Version: 1.6.0-31 is allowed in the range 1.5.
+[INFO]
+[INFO] --- maven-enforcer-plugin:1.0-beta-1:enforce (enforce-maven-version) @ picketlink-reg-as7 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-enforcer-plugin:1.0-beta-1:enforce from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-enforcer-plugin:1.0-beta-1, parent: sun.misc.Launcher$AppClassLoader@1a45a877]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-enforcer-plugin:1.0-beta-1:enforce' with basic configurator -->
+[DEBUG] (s) fail = true
+[DEBUG] (s) failFast = false
+[DEBUG] (f) ignoreCache = false
+[DEBUG] (s) project = MavenProject: org.picketlink:picketlink-reg-as7:2.0.0.Beta1-SNAPSHOT @ /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/pom.xml
+[DEBUG] (f) message = To build this project Maven 2.0.9 (or greater) is required. Please install it.
+[DEBUG] (s) version = 2.0.9
+[DEBUG] (s) rules = [org.apache.maven.plugins.enforcer.RequireMavenVersion@6d4c4d61]
+[DEBUG] (s) session = org.apache.maven.execution.MavenSession@69408a75
+[DEBUG] (s) skip = false
+[DEBUG] -- end configuration --
+[DEBUG] Executing rule: org.apache.maven.plugins.enforcer.RequireMavenVersion
+[DEBUG] Rule org.apache.maven.plugins.enforcer.RequireMavenVersion is cacheable.
+[DEBUG] Detected Maven Version: 3.0.2
+[DEBUG] Detected Maven Version: 3.0.2 is allowed in the range 2.0.9.
+[INFO]
+[INFO] --- maven-resources-plugin:2.4.1:resources (default-resources) @ picketlink-reg-as7 ---
+[DEBUG] org.apache.maven.plugins:maven-resources-plugin:jar:2.4.1:
+[DEBUG] org.apache.maven:maven-plugin-api:jar:2.0.6:compile
+[DEBUG] org.apache.maven:maven-project:jar:2.0.6:compile
+[DEBUG] org.apache.maven:maven-settings:jar:2.0.6:compile
+[DEBUG] org.apache.maven:maven-profile:jar:2.0.6:compile
+[DEBUG] org.apache.maven:maven-model:jar:2.0.6:compile
+[DEBUG] org.apache.maven:maven-artifact-manager:jar:2.0.6:compile
+[DEBUG] org.apache.maven:maven-repository-metadata:jar:2.0.6:compile
+[DEBUG] org.apache.maven:maven-plugin-registry:jar:2.0.6:compile
+[DEBUG] org.apache.maven:maven-artifact:jar:2.0.6:compile
+[DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile
+[DEBUG] junit:junit:jar:3.8.1:compile
+[DEBUG] classworlds:classworlds:jar:1.1-alpha-2:compile
+[DEBUG] org.codehaus.plexus:plexus-utils:jar:1.5.15:compile
+[DEBUG] org.apache.maven.shared:maven-filtering:jar:1.0-beta-3:compile
+[DEBUG] org.apache.maven:maven-core:jar:2.0.6:compile
+[DEBUG] org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.6:compile
+[DEBUG] org.apache.maven.reporting:maven-reporting-api:jar:2.0.6:compile
+[DEBUG] org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-7:compile
+[DEBUG] org.apache.maven:maven-error-diagnostics:jar:2.0.6:compile
+[DEBUG] commons-cli:commons-cli:jar:1.0:compile
+[DEBUG] org.apache.maven:maven-plugin-descriptor:jar:2.0.6:compile
+[DEBUG] org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile
+[DEBUG] org.apache.maven:maven-monitor:jar:2.0.6:compile
+[DEBUG] org.sonatype.plexus:plexus-build-api:jar:0.0.4:compile
+[DEBUG] org.codehaus.plexus:plexus-interpolation:jar:1.13:compile
+[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.1
+[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.1
+[DEBUG] Imported: < maven.api
+[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.1
+[DEBUG] Included: org.apache.maven.plugins:maven-resources-plugin:jar:2.4.1
+[DEBUG] Included: junit:junit:jar:3.8.1
+[DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:1.5.15
+[DEBUG] Included: org.apache.maven.shared:maven-filtering:jar:1.0-beta-3
+[DEBUG] Included: org.apache.maven.reporting:maven-reporting-api:jar:2.0.6
+[DEBUG] Included: org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-7
+[DEBUG] Included: commons-cli:commons-cli:jar:1.0
+[DEBUG] Included: org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4
+[DEBUG] Included: org.sonatype.plexus:plexus-build-api:jar:0.0.4
+[DEBUG] Included: org.codehaus.plexus:plexus-interpolation:jar:1.13
+[DEBUG] Excluded: org.apache.maven:maven-plugin-api:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-project:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-settings:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-profile:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-model:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-artifact-manager:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-repository-metadata:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-plugin-registry:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-artifact:jar:2.0.6
+[DEBUG] Excluded: org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1
+[DEBUG] Excluded: classworlds:classworlds:jar:1.1-alpha-2
+[DEBUG] Excluded: org.apache.maven:maven-core:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-error-diagnostics:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-plugin-descriptor:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-monitor:jar:2.0.6
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.1:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.1, parent: sun.misc.Launcher$AppClassLoader@1a45a877]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.1:resources' with basic configurator -->
+[DEBUG] (f) buildFilters = []
+[DEBUG] (f) encoding = UTF-8
+[DEBUG] (f) escapeWindowsPaths = true
+[DEBUG] (s) includeEmptyDirs = false
+[DEBUG] (s) outputDirectory = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/classes
+[DEBUG] (s) overwrite = false
+[DEBUG] (f) project = MavenProject: org.picketlink:picketlink-reg-as7:2.0.0.Beta1-SNAPSHOT @ /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/pom.xml
+[DEBUG] (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/src/main/resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG] (f) session = org.apache.maven.execution.MavenSession@69408a75
+[DEBUG] (f) useBuildFilters = true
+[DEBUG] (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.DESKTOP_SESSION=gnome, file.encoding.pkg=sun.io, version.assembly.plugin=2.2-beta-4, java.home=/home/anil/java/jdk1.6.0_31/jre, env.DISPLAY=:0, env.LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=01;05;37;41:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lz=01;31:*.xz=01;31:*.bz2=01;31:*.tbz=01;31:*.tbz2=01;31:*.bz=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:!
*.mkv=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.axv=01;35:*.anx=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=01;36:*.au=01;36:*.flac=01;36:*.mid=01;36:*.midi=01;36:*.mka=01;36:*.mp3=01;36:*.mpc=01;36:*.ogg=01;36:*.ra=01;36:*.wav=01;36:*.axa=01;36:*.oga=01;36:*.spx=01;36:*.xspf=01;36:*.pdf=00;33:*.ps=00;33:*.ps.gz=00;33:*.txt=00;33:*.patch=00;33:*.diff=00;33:*.log=00;33:*.tex=00;33:*.xls=00;33:*.xlsx=00;33:*.ppt=00;33:*.pptx=00;33:*.rtf=00;33:*.doc=00;33:*.docx=00;33:*.odt=00;33:*.ods=00;33:*.odp=00;33:*.xml=00;33:*.epub=00;33:*.abw=00;33:*.html=00;33:*.wpd=00;33:, env.XDG_VTNR=1, classworlds.conf=/opt/apache-maven-3.0.2/bin/m2.conf, env.XDG_SESSION_COOKIE=49aaafdaf7853547bcef9f320000000c-1331816034.260259-995781388, java.endorsed.dirs=/home/anil/java/jdk1.6.0!
_31/jre/lib/endorsed, env.LOGNAME=anil, env.USERNAME=anil, env!
.XDG_SEA
T=seat0, env.SESSION_MANAGER=local/unix:@/tmp/.ICE-unix/1192,unix/unix:/tmp/.ICE-unix/1192, env.KDEDIRS=/usr, sun.os.patch.level=unknown, java.vendor.url=http://java.sun.com/, version.javadoc.plugin=2.6.1, version.findbugs.plugin=2.2, java.version=1.6.0_31, arguments=-Prelease, java.vendor.url.bug=http://java.sun.com/cgi-bin/bugreport.cgi, version.deploy.plugin=2.4, version.pir.plugin=2.1.2, env.GNOME_KEYRING_CONTROL=/tmp/keyring-Qy8rWn, user.name=anil, env.LANG=en_US.UTF-8, version.site.plugin=2.0.1, sun.io.unicode.encoding=UnicodeLittle, env.CVSROOT=:ext:asaldhana@cvs.forge.jboss.com:/cvsroot/jboss, sun.jnu.encoding=UTF-8, env.DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-QmlohiCPYg,guid=d0238f4566dc3bf53efde65600000016, java.runtime.name=Java(TM) SE Runtime Environment, version.resources.plugin=2.4.1, java.specification.name=Java Platform API Specification, version.plugin.plugin=2.5.1, user.timezone=US/Central, env.LESSOPEN=||/usr/bin/lesspipe.sh %s, path.separator=:, !
env.XMODIFIERS=@im=none, file.encoding=UTF-8, version.war.plugin=2.1-beta-1, env.HOME=/home/anil, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher -X clean install, version.taglist.plugin=2.4, version.pmd.plugin=2.4, version.eclipse.plugin=2.7, env.HOSTNAME=sadbhav, version.javancss.plugin=2.0, java.io.tmpdir=/tmp, env.GNOME_KEYRING_PID=1186, user.language=en, env.HISTCONTROL=ignoredups, line.separator=
+, env.ANT_OPTS=-Xmx512m, env.HISTSIZE=1000, version.sonar.plugin=1.0-beta-1, version.enforcer.plugin=1.0-beta-1, version.antrun.plugin=1.3, version.cobertura.plugin=2.3, java.vm.info=mixed mode, sun.desktop=gnome, java.vm.specification.name=Java Virtual Machine Specification, jdk.min.version=1.5, version.install.plugin=2.3, env.COLORTERM=gnome-terminal, env.M2_HOME=/opt/apache-maven-3.0.2, env.CATALINA_OPTS=-Xms1024m -Xmx1024m -XX:MaxPermSize=128m, env.GDMSESSION=gnome, version.jxr.plugin=2.1, java.awt.printerjob=sun.print.PSPrinterJob, env.WINDOWID=23068677, env.CLASSPATH=:/opt/apache-ant-1.8.2/lib/ant-junit.jar:/opt/apache-ant-1.8.2/lib/ant-junit.jar, os.name=Linux, java.specification.vendor=Sun Microsystems Inc., version.ear.plugin=2.4, env.TERM=xterm, java.vm.name=Java HotSpot(TM) 64-Bit Server VM, version.checkstyle.plugin=2.4, env.QT_IM_MODULE=xim, java.library.path=/home/anil/java/jdk1.6.0_31/jre/lib/amd64/server:/home/anil/java/jdk1.6.0_31/jre/lib/amd64:/home/anil/!
java/jdk1.6.0_31/jre/../lib/amd64:/usr/lib64/qt-3.3/lib:/usr/lib64/qt-3.3/lib::/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib, env.PATH=/usr/lib/qt-3.3/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/usr/bin:/usr/sbin:/usr/java/latest/bin:/opt/apache-maven-3.0.2/bin:/home/anil/.local/bin:/home/anil/bin:/usr/bin:/usr/sbin:/usr/java/latest/bin:/opt/apache-maven-3.0.2/bin, jboss.snapshots.repo.url=https://repository.jboss.org/nexus/content/repos..., env.JDK_HOME=/usr/java/latest, version.jdepend.plugin=2.0-beta-2, targetJdk=1.5, java.class.version=50.0, env.SHLVL=2, env.LD_LIBRARY_PATH=/home/anil/java/jdk1.6.0_31/jre/lib/amd64/server:/home/anil/java/jdk1.6.0_31/jre/lib/amd64:/home/anil/java/jdk1.6.0_31/jre/../lib/amd64:/usr/lib64/qt-3.3/lib:/usr/lib64/qt-3.3/lib:, version.ejb.plugin=2.2, env.GJS_DEBUG_OUTPUT=stderr, version.clover2.plugin=2.5.1, sun.boot.library.path=/home/anil/java/jdk1.6.0_31/jre/lib/amd64, project.build.sourceE!
ncoding=UTF-8, sun.management.compiler=HotSpot 64-Bit Tiered C!
ompilers
, java.awt.graphicsenv=sun.awt.X11GraphicsEnvironment, env.USER=anil, version.buildnumber.plugin=1.0-beta-3, version.clean.plugin=2.3, java.vm.specification.version=1.0, env.KDE_IS_PRELINKED=1, version.source.plugin=2.1.1, env.NLSPATH=/usr/dt/lib/nls/msg/%L/%N.cat, sun.cpu.isalist=, version.release.plugin=2.0-beta-9, java.ext.dirs=/home/anil/java/jdk1.6.0_31/jre/lib/ext:/usr/java/packages/lib/ext, env.GJS_DEBUG_TOPICS=JS ERROR;JS LOG, os.version=3.2.9-2.fc16.x86_64, user.home=/home/anil, version.surefire.plugin=2.4.3, java.vm.vendor=Sun Microsystems Inc., jboss.releases.repo.url=https://repository.jboss.org/nexus/service/local/..., env.JAVA_HOME=/usr/java/latest, env.XDG_SESSION_ID=2, env.XAUTHORITY=/var/run/gdm/auth-for-anil-a9a0Bn/database, user.dir=/home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg, env.XFILESEARCHPATH=/usr/dt/app-defaults/%L/Dt, env.WINDOWPATH=1, env.MAIL=/var/spool/mail/anil, env.M2=/opt/apache-maven-3.0.2/bin, e!
nv.PWD=/home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg, version.rar.plugin=2.2, sun.cpu.endian=little, useReleaseProfile=false, env.QTLIB=/usr/lib/qt-3.3/lib, maven.min.version=2.0.9, java.vm.version=20.6-b01, java.class.path=/opt/apache-maven-3.0.2/boot/plexus-classworlds-2.4.jar, version.idea.plugin=2.2, downloadSources=true, env.QTDIR=/usr/lib/qt-3.3, os.arch=amd64, version.compiler.plugin=2.0.2, sun.java.launcher=SUN_STANDARD, env.IMSETTINGS_INTEGRATE_DESKTOP=yes, java.vm.specification.vendor=Sun Microsystems Inc., file.separator=/, java.runtime.version=1.6.0_31-b04, env.SSH_AUTH_SOCK=/tmp/keyring-Qy8rWn/ssh, sun.boot.class.path=/home/anil/java/jdk1.6.0_31/jre/lib/resources.jar:/home/anil/java/jdk1.6.0_31/jre/lib/rt.jar:/home/anil/java/jdk1.6.0_31/jre/lib/sunrsasign.jar:/home/anil/java/jdk1.6.0_31/jre/lib/jsse.jar:/home/anil/java/jdk1.6.0_31/jre/lib/jce.jar:/home/anil/java/jdk1.6.0_31/jre/lib/charsets.jar:/home/anil/java/jdk1.6.0_31/jre/lib/modu!
les/jdk.boot.jar:/home/anil/java/jdk1.6.0_31/jre/classes, env.!
XDG_RUNT
IME_DIR=/run/user/anil, version.dependency.plugin=2.1, env.QTINC=/usr/lib/qt-3.3/include, user.country=US, env.ANT_HOME=/opt/apache-ant-1.8.2, env.SHELL=/bin/bash, maven.home=/opt/apache-maven-3.0.2, maven.compiler.target=1.5, java.vendor=Sun Microsystems Inc., version.jar.plugin=2.2, env.GPG_AGENT_INFO=/tmp/keyring-Qy8rWn/gpg:0:1, env.IMSETTINGS_MODULE=none, maven.compiler.source=1.5, java.specification.version=1.6, sun.arch.data.model=64, env.GNOME_DESKTOP_SESSION_ID=this-is-deprecated}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/src/main/resources
+excludes []
+includes []
+[INFO] Copying 0 resource
+[INFO]
+[INFO] --- maven-compiler-plugin:2.0.2:compile (default-compile) @ picketlink-reg-as7 ---
+[DEBUG] org.apache.maven.plugins:maven-compiler-plugin:jar:2.0.2:
+[DEBUG] org.apache.maven:maven-plugin-api:jar:2.0:compile
+[DEBUG] org.codehaus.plexus:plexus-utils:jar:1.0.4:compile
+[DEBUG] org.codehaus.plexus:plexus-compiler-api:jar:1.5.3:compile
+[DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8:compile
+[DEBUG] junit:junit:jar:3.8.1:compile
+[DEBUG] classworlds:classworlds:jar:1.1-alpha-2:compile
+[DEBUG] org.codehaus.plexus:plexus-compiler-manager:jar:1.5.3:compile
+[DEBUG] org.codehaus.plexus:plexus-compiler-javac:jar:1.5.3:runtime
+[DEBUG] org.apache.maven:maven-artifact:jar:2.0:compile
+[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:2.0.2
+[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:2.0.2
+[DEBUG] Imported: < maven.api
+[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:2.0.2
+[DEBUG] Included: org.apache.maven.plugins:maven-compiler-plugin:jar:2.0.2
+[DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:1.0.4
+[DEBUG] Included: org.codehaus.plexus:plexus-compiler-api:jar:1.5.3
+[DEBUG] Included: junit:junit:jar:3.8.1
+[DEBUG] Included: org.codehaus.plexus:plexus-compiler-manager:jar:1.5.3
+[DEBUG] Included: org.codehaus.plexus:plexus-compiler-javac:jar:1.5.3
+[DEBUG] Excluded: org.apache.maven:maven-plugin-api:jar:2.0
+[DEBUG] Excluded: org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8
+[DEBUG] Excluded: classworlds:classworlds:jar:1.1-alpha-2
+[DEBUG] Excluded: org.apache.maven:maven-artifact:jar:2.0
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-compiler-plugin:2.0.2:compile from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-compiler-plugin:2.0.2, parent: sun.misc.Launcher$AppClassLoader@1a45a877]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-compiler-plugin:2.0.2:compile' with basic configurator -->
+[DEBUG] (f) basedir = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg
+[DEBUG] (f) buildDirectory = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target
+[DEBUG] (f) classpathElements = [/home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/classes, /home/anil/.m2/repository/org/picketlink/picketlink-consolidated-social/2.0.0.Beta1-SNAPSHOT/picketlink-consolidated-social-2.0.0.Beta1-SNAPSHOT.jar, /home/anil/.m2/repository/org/openid4java/openid4java-nodeps/0.9.6/openid4java-nodeps-0.9.6.jar, /home/anil/.m2/repository/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.jar, /home/anil/.m2/repository/org/json/json/20090211/json-20090211.jar]
+[DEBUG] (f) compileSourceRoots = [/home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/src/main/java]
+[DEBUG] (f) compilerId = javac
+[DEBUG] (f) debug = true
+[DEBUG] (f) failOnError = true
+[DEBUG] (f) fork = false
+[DEBUG] (f) optimize = false
+[DEBUG] (f) outputDirectory = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/classes
+[DEBUG] (f) outputFileName = picketlink-reg-as7-2.0.0.Beta1-SNAPSHOT
+[DEBUG] (f) projectArtifact = org.picketlink:picketlink-reg-as7:war:2.0.0.Beta1-SNAPSHOT
+[DEBUG] (f) showDeprecation = false
+[DEBUG] (f) showWarnings = false
+[DEBUG] (f) source = 1.5
+[DEBUG] (f) staleMillis = 0
+[DEBUG] (f) target = 1.5
+[DEBUG] (f) verbose = false
+[DEBUG] -- end configuration --
+[DEBUG] Using compiler 'javac'.
+[INFO] No sources to compile
+[INFO]
+[INFO] --- maven-resources-plugin:2.4.1:testResources (default-testResources) @ picketlink-reg-as7 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.1:testResources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.1, parent: sun.misc.Launcher$AppClassLoader@1a45a877]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.1:testResources' with basic configurator -->
+[DEBUG] (f) buildFilters = []
+[DEBUG] (f) encoding = UTF-8
+[DEBUG] (f) escapeWindowsPaths = true
+[DEBUG] (s) includeEmptyDirs = false
+[DEBUG] (s) outputDirectory = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/test-classes
+[DEBUG] (s) overwrite = false
+[DEBUG] (f) project = MavenProject: org.picketlink:picketlink-reg-as7:2.0.0.Beta1-SNAPSHOT @ /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/pom.xml
+[DEBUG] (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/src/test/resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG] (f) session = org.apache.maven.execution.MavenSession@69408a75
+[DEBUG] (f) useBuildFilters = true
+[DEBUG] (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.DESKTOP_SESSION=gnome, file.encoding.pkg=sun.io, version.assembly.plugin=2.2-beta-4, java.home=/home/anil/java/jdk1.6.0_31/jre, env.DISPLAY=:0, env.LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=01;05;37;41:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lz=01;31:*.xz=01;31:*.bz2=01;31:*.tbz=01;31:*.tbz2=01;31:*.bz=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:!
*.mkv=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.axv=01;35:*.anx=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=01;36:*.au=01;36:*.flac=01;36:*.mid=01;36:*.midi=01;36:*.mka=01;36:*.mp3=01;36:*.mpc=01;36:*.ogg=01;36:*.ra=01;36:*.wav=01;36:*.axa=01;36:*.oga=01;36:*.spx=01;36:*.xspf=01;36:*.pdf=00;33:*.ps=00;33:*.ps.gz=00;33:*.txt=00;33:*.patch=00;33:*.diff=00;33:*.log=00;33:*.tex=00;33:*.xls=00;33:*.xlsx=00;33:*.ppt=00;33:*.pptx=00;33:*.rtf=00;33:*.doc=00;33:*.docx=00;33:*.odt=00;33:*.ods=00;33:*.odp=00;33:*.xml=00;33:*.epub=00;33:*.abw=00;33:*.html=00;33:*.wpd=00;33:, env.XDG_VTNR=1, classworlds.conf=/opt/apache-maven-3.0.2/bin/m2.conf, env.XDG_SESSION_COOKIE=49aaafdaf7853547bcef9f320000000c-1331816034.260259-995781388, java.endorsed.dirs=/home/anil/java/jdk1.6.0!
_31/jre/lib/endorsed, env.LOGNAME=anil, env.USERNAME=anil, env!
.XDG_SEA
T=seat0, env.SESSION_MANAGER=local/unix:@/tmp/.ICE-unix/1192,unix/unix:/tmp/.ICE-unix/1192, env.KDEDIRS=/usr, sun.os.patch.level=unknown, java.vendor.url=http://java.sun.com/, version.javadoc.plugin=2.6.1, version.findbugs.plugin=2.2, java.version=1.6.0_31, arguments=-Prelease, java.vendor.url.bug=http://java.sun.com/cgi-bin/bugreport.cgi, version.deploy.plugin=2.4, version.pir.plugin=2.1.2, env.GNOME_KEYRING_CONTROL=/tmp/keyring-Qy8rWn, user.name=anil, env.LANG=en_US.UTF-8, version.site.plugin=2.0.1, sun.io.unicode.encoding=UnicodeLittle, env.CVSROOT=:ext:asaldhana@cvs.forge.jboss.com:/cvsroot/jboss, sun.jnu.encoding=UTF-8, env.DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-QmlohiCPYg,guid=d0238f4566dc3bf53efde65600000016, java.runtime.name=Java(TM) SE Runtime Environment, version.resources.plugin=2.4.1, java.specification.name=Java Platform API Specification, version.plugin.plugin=2.5.1, user.timezone=US/Central, env.LESSOPEN=||/usr/bin/lesspipe.sh %s, path.separator=:, !
env.XMODIFIERS=@im=none, file.encoding=UTF-8, version.war.plugin=2.1-beta-1, env.HOME=/home/anil, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher -X clean install, version.taglist.plugin=2.4, version.pmd.plugin=2.4, version.eclipse.plugin=2.7, env.HOSTNAME=sadbhav, version.javancss.plugin=2.0, java.io.tmpdir=/tmp, env.GNOME_KEYRING_PID=1186, user.language=en, env.HISTCONTROL=ignoredups, line.separator=
+, env.ANT_OPTS=-Xmx512m, env.HISTSIZE=1000, version.sonar.plugin=1.0-beta-1, version.enforcer.plugin=1.0-beta-1, version.antrun.plugin=1.3, version.cobertura.plugin=2.3, java.vm.info=mixed mode, sun.desktop=gnome, java.vm.specification.name=Java Virtual Machine Specification, jdk.min.version=1.5, version.install.plugin=2.3, env.COLORTERM=gnome-terminal, env.M2_HOME=/opt/apache-maven-3.0.2, env.CATALINA_OPTS=-Xms1024m -Xmx1024m -XX:MaxPermSize=128m, env.GDMSESSION=gnome, version.jxr.plugin=2.1, java.awt.printerjob=sun.print.PSPrinterJob, env.WINDOWID=23068677, env.CLASSPATH=:/opt/apache-ant-1.8.2/lib/ant-junit.jar:/opt/apache-ant-1.8.2/lib/ant-junit.jar, os.name=Linux, java.specification.vendor=Sun Microsystems Inc., version.ear.plugin=2.4, env.TERM=xterm, java.vm.name=Java HotSpot(TM) 64-Bit Server VM, version.checkstyle.plugin=2.4, env.QT_IM_MODULE=xim, java.library.path=/home/anil/java/jdk1.6.0_31/jre/lib/amd64/server:/home/anil/java/jdk1.6.0_31/jre/lib/amd64:/home/anil/!
java/jdk1.6.0_31/jre/../lib/amd64:/usr/lib64/qt-3.3/lib:/usr/lib64/qt-3.3/lib::/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib, env.PATH=/usr/lib/qt-3.3/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/usr/bin:/usr/sbin:/usr/java/latest/bin:/opt/apache-maven-3.0.2/bin:/home/anil/.local/bin:/home/anil/bin:/usr/bin:/usr/sbin:/usr/java/latest/bin:/opt/apache-maven-3.0.2/bin, jboss.snapshots.repo.url=https://repository.jboss.org/nexus/content/repos..., env.JDK_HOME=/usr/java/latest, version.jdepend.plugin=2.0-beta-2, targetJdk=1.5, java.class.version=50.0, env.SHLVL=2, env.LD_LIBRARY_PATH=/home/anil/java/jdk1.6.0_31/jre/lib/amd64/server:/home/anil/java/jdk1.6.0_31/jre/lib/amd64:/home/anil/java/jdk1.6.0_31/jre/../lib/amd64:/usr/lib64/qt-3.3/lib:/usr/lib64/qt-3.3/lib:, version.ejb.plugin=2.2, env.GJS_DEBUG_OUTPUT=stderr, version.clover2.plugin=2.5.1, sun.boot.library.path=/home/anil/java/jdk1.6.0_31/jre/lib/amd64, project.build.sourceE!
ncoding=UTF-8, sun.management.compiler=HotSpot 64-Bit Tiered C!
ompilers
, java.awt.graphicsenv=sun.awt.X11GraphicsEnvironment, env.USER=anil, version.buildnumber.plugin=1.0-beta-3, version.clean.plugin=2.3, java.vm.specification.version=1.0, env.KDE_IS_PRELINKED=1, version.source.plugin=2.1.1, env.NLSPATH=/usr/dt/lib/nls/msg/%L/%N.cat, sun.cpu.isalist=, version.release.plugin=2.0-beta-9, java.ext.dirs=/home/anil/java/jdk1.6.0_31/jre/lib/ext:/usr/java/packages/lib/ext, env.GJS_DEBUG_TOPICS=JS ERROR;JS LOG, os.version=3.2.9-2.fc16.x86_64, user.home=/home/anil, version.surefire.plugin=2.4.3, java.vm.vendor=Sun Microsystems Inc., jboss.releases.repo.url=https://repository.jboss.org/nexus/service/local/..., env.JAVA_HOME=/usr/java/latest, env.XDG_SESSION_ID=2, env.XAUTHORITY=/var/run/gdm/auth-for-anil-a9a0Bn/database, user.dir=/home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg, env.XFILESEARCHPATH=/usr/dt/app-defaults/%L/Dt, env.WINDOWPATH=1, env.MAIL=/var/spool/mail/anil, env.M2=/opt/apache-maven-3.0.2/bin, e!
nv.PWD=/home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg, version.rar.plugin=2.2, sun.cpu.endian=little, useReleaseProfile=false, env.QTLIB=/usr/lib/qt-3.3/lib, maven.min.version=2.0.9, java.vm.version=20.6-b01, java.class.path=/opt/apache-maven-3.0.2/boot/plexus-classworlds-2.4.jar, version.idea.plugin=2.2, downloadSources=true, env.QTDIR=/usr/lib/qt-3.3, os.arch=amd64, version.compiler.plugin=2.0.2, sun.java.launcher=SUN_STANDARD, env.IMSETTINGS_INTEGRATE_DESKTOP=yes, java.vm.specification.vendor=Sun Microsystems Inc., file.separator=/, java.runtime.version=1.6.0_31-b04, env.SSH_AUTH_SOCK=/tmp/keyring-Qy8rWn/ssh, sun.boot.class.path=/home/anil/java/jdk1.6.0_31/jre/lib/resources.jar:/home/anil/java/jdk1.6.0_31/jre/lib/rt.jar:/home/anil/java/jdk1.6.0_31/jre/lib/sunrsasign.jar:/home/anil/java/jdk1.6.0_31/jre/lib/jsse.jar:/home/anil/java/jdk1.6.0_31/jre/lib/jce.jar:/home/anil/java/jdk1.6.0_31/jre/lib/charsets.jar:/home/anil/java/jdk1.6.0_31/jre/lib/modu!
les/jdk.boot.jar:/home/anil/java/jdk1.6.0_31/jre/classes, env.!
XDG_RUNT
IME_DIR=/run/user/anil, version.dependency.plugin=2.1, env.QTINC=/usr/lib/qt-3.3/include, user.country=US, env.ANT_HOME=/opt/apache-ant-1.8.2, env.SHELL=/bin/bash, maven.home=/opt/apache-maven-3.0.2, maven.compiler.target=1.5, java.vendor=Sun Microsystems Inc., version.jar.plugin=2.2, env.GPG_AGENT_INFO=/tmp/keyring-Qy8rWn/gpg:0:1, env.IMSETTINGS_MODULE=none, maven.compiler.source=1.5, java.specification.version=1.6, sun.arch.data.model=64, env.GNOME_DESKTOP_SESSION_ID=this-is-deprecated}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/src/test/resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/src/test/resources
+[INFO]
+[INFO] --- maven-compiler-plugin:2.0.2:testCompile (default-testCompile) @ picketlink-reg-as7 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-compiler-plugin:2.0.2:testCompile from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-compiler-plugin:2.0.2, parent: sun.misc.Launcher$AppClassLoader@1a45a877]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-compiler-plugin:2.0.2:testCompile' with basic configurator -->
+[DEBUG] (f) basedir = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg
+[DEBUG] (f) buildDirectory = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target
+[DEBUG] (f) classpathElements = [/home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/test-classes, /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/classes, /home/anil/.m2/repository/org/picketlink/picketlink-consolidated-social/2.0.0.Beta1-SNAPSHOT/picketlink-consolidated-social-2.0.0.Beta1-SNAPSHOT.jar, /home/anil/.m2/repository/org/openid4java/openid4java-nodeps/0.9.6/openid4java-nodeps-0.9.6.jar, /home/anil/.m2/repository/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.jar, /home/anil/.m2/repository/org/json/json/20090211/json-20090211.jar]
+[DEBUG] (f) compileSourceRoots = [/home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/src/test/java]
+[DEBUG] (f) compilerId = javac
+[DEBUG] (f) debug = true
+[DEBUG] (f) failOnError = true
+[DEBUG] (f) fork = false
+[DEBUG] (f) optimize = false
+[DEBUG] (f) outputDirectory = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/test-classes
+[DEBUG] (f) outputFileName = picketlink-reg-as7-2.0.0.Beta1-SNAPSHOT
+[DEBUG] (f) showDeprecation = false
+[DEBUG] (f) showWarnings = false
+[DEBUG] (f) source = 1.5
+[DEBUG] (f) staleMillis = 0
+[DEBUG] (f) target = 1.5
+[DEBUG] (f) verbose = false
+[DEBUG] -- end configuration --
+[DEBUG] Using compiler 'javac'.
+[INFO] No sources to compile
+[INFO]
+[INFO] --- maven-surefire-plugin:2.4.3:test (default-test) @ picketlink-reg-as7 ---
+[DEBUG] org.apache.maven.plugins:maven-surefire-plugin:jar:2.4.3:
+[DEBUG] org.apache.maven:maven-plugin-api:jar:2.0.6:compile
+[DEBUG] org.apache.maven.surefire:surefire-booter:jar:2.4.3:compile
+[DEBUG] org.apache.maven.surefire:surefire-api:jar:2.4.3:compile
+[DEBUG] org.codehaus.plexus:plexus-utils:jar:1.5.1:compile
+[DEBUG] org.apache.maven:maven-artifact:jar:2.0.6:compile
+[DEBUG] org.apache.maven:maven-project:jar:2.0.6:compile
+[DEBUG] org.apache.maven:maven-settings:jar:2.0.6:compile
+[DEBUG] org.apache.maven:maven-profile:jar:2.0.6:compile
+[DEBUG] org.apache.maven:maven-model:jar:2.0.6:compile
+[DEBUG] org.apache.maven:maven-artifact-manager:jar:2.0.6:compile
+[DEBUG] org.apache.maven:maven-plugin-registry:jar:2.0.6:compile
+[DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile
+[DEBUG] junit:junit:jar:3.8.1:compile
+[DEBUG] org.apache.maven:maven-core:jar:2.0.6:compile
+[DEBUG] org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.6:compile
+[DEBUG] org.apache.maven.reporting:maven-reporting-api:jar:2.0.6:compile
+[DEBUG] org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-7:compile
+[DEBUG] org.apache.maven:maven-repository-metadata:jar:2.0.6:compile
+[DEBUG] org.apache.maven:maven-error-diagnostics:jar:2.0.6:compile
+[DEBUG] commons-cli:commons-cli:jar:1.0:compile
+[DEBUG] org.apache.maven:maven-plugin-descriptor:jar:2.0.6:compile
+[DEBUG] org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile
+[DEBUG] org.apache.maven:maven-monitor:jar:2.0.6:compile
+[DEBUG] classworlds:classworlds:jar:1.1:compile
+[DEBUG] org.apache.maven:maven-toolchain:jar:1.0:compile
+[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-surefire-plugin:2.4.3
+[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-surefire-plugin:2.4.3
+[DEBUG] Imported: < maven.api
+[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-surefire-plugin:2.4.3
+[DEBUG] Included: org.apache.maven.plugins:maven-surefire-plugin:jar:2.4.3
+[DEBUG] Included: org.apache.maven.surefire:surefire-booter:jar:2.4.3
+[DEBUG] Included: org.apache.maven.surefire:surefire-api:jar:2.4.3
+[DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:1.5.1
+[DEBUG] Included: junit:junit:jar:3.8.1
+[DEBUG] Included: org.apache.maven.reporting:maven-reporting-api:jar:2.0.6
+[DEBUG] Included: org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-7
+[DEBUG] Included: commons-cli:commons-cli:jar:1.0
+[DEBUG] Included: org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4
+[DEBUG] Excluded: org.apache.maven:maven-plugin-api:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-artifact:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-project:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-settings:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-profile:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-model:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-artifact-manager:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-plugin-registry:jar:2.0.6
+[DEBUG] Excluded: org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1
+[DEBUG] Excluded: org.apache.maven:maven-core:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-repository-metadata:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-error-diagnostics:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-plugin-descriptor:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-monitor:jar:2.0.6
+[DEBUG] Excluded: classworlds:classworlds:jar:1.1
+[DEBUG] Excluded: org.apache.maven:maven-toolchain:jar:1.0
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-surefire-plugin:2.4.3:test from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-surefire-plugin:2.4.3, parent: sun.misc.Launcher$AppClassLoader@1a45a877]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-surefire-plugin:2.4.3:test' with basic configurator -->
+[DEBUG] (f) basedir = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg
+[DEBUG] (f) childDelegation = false
+[DEBUG] (f) classesDirectory = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/classes
+[DEBUG] (f) classpathElements = [/home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/test-classes, /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/classes, /home/anil/.m2/repository/org/picketlink/picketlink-consolidated-social/2.0.0.Beta1-SNAPSHOT/picketlink-consolidated-social-2.0.0.Beta1-SNAPSHOT.jar, /home/anil/.m2/repository/org/openid4java/openid4java-nodeps/0.9.6/openid4java-nodeps-0.9.6.jar, /home/anil/.m2/repository/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.jar, /home/anil/.m2/repository/org/json/json/20090211/json-20090211.jar]
+[DEBUG] (f) disableXmlReport = false
+[DEBUG] (f) enableAssertions = true
+[DEBUG] (f) forkMode = pertest
+[DEBUG] (f) includes = [**/**TestCase.java]
+[DEBUG] (f) junitArtifactName = junit:junit
+[DEBUG] (f) localRepository = id: local
+ url: file:///home/anil/.m2/repository/
+ layout: none
+
+[DEBUG] (f) pluginArtifactMap = {org.apache.maven.plugins:maven-surefire-plugin=org.apache.maven.plugins:maven-surefire-plugin:maven-plugin:2.4.3:, org.apache.maven.surefire:surefire-booter=org.apache.maven.surefire:surefire-booter:jar:2.4.3:compile, org.apache.maven.surefire:surefire-api=org.apache.maven.surefire:surefire-api:jar:2.4.3:compile, org.codehaus.plexus:plexus-utils=org.codehaus.plexus:plexus-utils:jar:1.5.1:compile, junit:junit=junit:junit:jar:3.8.1:compile, org.apache.maven.reporting:maven-reporting-api=org.apache.maven.reporting:maven-reporting-api:jar:2.0.6:compile, org.apache.maven.doxia:doxia-sink-api=org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-7:compile, commons-cli:commons-cli=commons-cli:commons-cli:jar:1.0:compile, org.codehaus.plexus:plexus-interactivity-api=org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile}
+[DEBUG] (f) printSummary = true
+[DEBUG] (f) project = MavenProject: org.picketlink:picketlink-reg-as7:2.0.0.Beta1-SNAPSHOT @ /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/pom.xml
+[DEBUG] (f) projectArtifactMap = {org.picketlink:picketlink-consolidated-social=org.picketlink:picketlink-consolidated-social:jar:2.0.0.Beta1-SNAPSHOT:compile, org.openid4java:openid4java-nodeps=org.openid4java:openid4java-nodeps:jar:0.9.6:compile, commons-logging:commons-logging=commons-logging:commons-logging:jar:1.1.1:compile, org.json:json=org.json:json:jar:20090211:compile}
+[DEBUG] (f) redirectTestOutputToFile = false
+[DEBUG] (f) remoteRepositories = [ id: jboss-public-repository-group
+ url: https://repository.jboss.org/nexus/content/groups/public/
+ layout: default
+snapshots: [enabled => true, update => never]
+ releases: [enabled => true, update => never]
+, id: central
+ url: http://repo1.maven.org/maven2
+ layout: default
+snapshots: [enabled => false, update => daily]
+ releases: [enabled => true, update => never]
+]
+[DEBUG] (f) reportFormat = brief
+[DEBUG] (f) reportsDirectory = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/surefire-reports
+[DEBUG] (f) session = org.apache.maven.execution.MavenSession@69408a75
+[DEBUG] (f) testClassesDirectory = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/test-classes
+[DEBUG] (f) testFailureIgnore = true
+[DEBUG] (f) testNGArtifactName = org.testng:testng
+[DEBUG] (f) testSourceDirectory = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/src/test/java
+[DEBUG] (f) trimStackTrace = false
+[DEBUG] (f) useFile = false
+[DEBUG] (f) useManifestOnlyJar = true
+[DEBUG] (f) workingDirectory = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg
+[DEBUG] -- end configuration --
+[INFO] No tests to run.
+[INFO]
+[INFO] --- maven-war-plugin:2.2:war (default-war) @ picketlink-reg-as7 ---
+[DEBUG] org.apache.maven.plugins:maven-war-plugin:jar:2.2:
+[DEBUG] org.apache.maven:maven-plugin-api:jar:2.0.6:compile
+[DEBUG] org.apache.maven:maven-artifact:jar:2.0.6:compile
+[DEBUG] org.apache.maven:maven-model:jar:2.0.6:compile
+[DEBUG] org.apache.maven:maven-project:jar:2.0.6:compile
+[DEBUG] org.apache.maven:maven-profile:jar:2.0.6:compile
+[DEBUG] org.apache.maven:maven-artifact-manager:jar:2.0.6:compile
+[DEBUG] org.apache.maven:maven-plugin-registry:jar:2.0.6:compile
+[DEBUG] org.apache.maven:maven-core:jar:2.0.6:compile
+[DEBUG] org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.6:compile
+[DEBUG] org.apache.maven.reporting:maven-reporting-api:jar:2.0.6:compile
+[DEBUG] org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-7:compile
+[DEBUG] org.apache.maven:maven-repository-metadata:jar:2.0.6:compile
+[DEBUG] org.apache.maven:maven-error-diagnostics:jar:2.0.6:compile
+[DEBUG] commons-cli:commons-cli:jar:1.0:compile
+[DEBUG] org.apache.maven:maven-plugin-descriptor:jar:2.0.6:compile
+[DEBUG] org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile
+[DEBUG] classworlds:classworlds:jar:1.1:compile
+[DEBUG] org.apache.maven:maven-settings:jar:2.0.6:compile
+[DEBUG] org.apache.maven:maven-monitor:jar:2.0.6:compile
+[DEBUG] org.apache.maven:maven-archiver:jar:2.5:compile
+[DEBUG] org.codehaus.plexus:plexus-io:jar:2.0.2:compile
+[DEBUG] org.codehaus.plexus:plexus-archiver:jar:2.1:compile
+[DEBUG] org.codehaus.plexus:plexus-interpolation:jar:1.15:compile
+[DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile
+[DEBUG] junit:junit:jar:3.8.1:compile
+[DEBUG] com.thoughtworks.xstream:xstream:jar:1.3.1:compile
+[DEBUG] xpp3:xpp3_min:jar:1.1.4c:compile
+[DEBUG] org.codehaus.plexus:plexus-utils:jar:3.0:compile
+[DEBUG] org.apache.maven.shared:maven-filtering:jar:1.0-beta-2:compile
+[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-war-plugin:2.2
+[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-war-plugin:2.2
+[DEBUG] Imported: < maven.api
+[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-war-plugin:2.2
+[DEBUG] Included: org.apache.maven.plugins:maven-war-plugin:jar:2.2
+[DEBUG] Included: org.apache.maven.reporting:maven-reporting-api:jar:2.0.6
+[DEBUG] Included: org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-7
+[DEBUG] Included: commons-cli:commons-cli:jar:1.0
+[DEBUG] Included: org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4
+[DEBUG] Included: org.apache.maven:maven-archiver:jar:2.5
+[DEBUG] Included: org.codehaus.plexus:plexus-io:jar:2.0.2
+[DEBUG] Included: org.codehaus.plexus:plexus-archiver:jar:2.1
+[DEBUG] Included: org.codehaus.plexus:plexus-interpolation:jar:1.15
+[DEBUG] Included: junit:junit:jar:3.8.1
+[DEBUG] Included: com.thoughtworks.xstream:xstream:jar:1.3.1
+[DEBUG] Included: xpp3:xpp3_min:jar:1.1.4c
+[DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:3.0
+[DEBUG] Included: org.apache.maven.shared:maven-filtering:jar:1.0-beta-2
+[DEBUG] Excluded: org.apache.maven:maven-plugin-api:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-artifact:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-model:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-project:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-profile:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-artifact-manager:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-plugin-registry:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-core:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-repository-metadata:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-error-diagnostics:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-plugin-descriptor:jar:2.0.6
+[DEBUG] Excluded: classworlds:classworlds:jar:1.1
+[DEBUG] Excluded: org.apache.maven:maven-settings:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-monitor:jar:2.0.6
+[DEBUG] Excluded: org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-war-plugin:2.2:war from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-war-plugin:2.2, parent: sun.misc.Launcher$AppClassLoader@1a45a877]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-war-plugin:2.2:war' with basic configurator -->
+[DEBUG] (s) archiveClasses = false
+[DEBUG] (s) attachClasses = false
+[DEBUG] (s) cacheFile = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/war/work/webapp-cache.xml
+[DEBUG] (s) classesClassifier = classes
+[DEBUG] (s) classesDirectory = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/classes
+[DEBUG] (f) escapedBackslashesInFilePath = false
+[DEBUG] (s) failOnMissingWebXml = true
+[DEBUG] (f) filteringDeploymentDescriptors = false
+[DEBUG] (s) outputDirectory = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target
+[DEBUG] (s) packagingExcludes = **/.svn/,WEB-INF/lib/guice-2.0.jar,WEB-INF/lib/jcip-annotations-1.0.jar
+[DEBUG] (s) primaryArtifact = true
+[DEBUG] (s) project = MavenProject: org.picketlink:picketlink-reg-as7:2.0.0.Beta1-SNAPSHOT @ /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/pom.xml
+[DEBUG] (f) session = org.apache.maven.execution.MavenSession@69408a75
+[DEBUG] (s) useCache = false
+[DEBUG] (s) warName = picketlink-reg
+[DEBUG] (s) warSourceDirectory = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/src/main/webapp
+[DEBUG] (s) warSourceIncludes = **
+[DEBUG] (s) webappDirectory = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/../../picketlink-reg/resources
+[DEBUG] (s) workDirectory = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/war/work
+[DEBUG] -- end configuration --
+[INFO] Packaging webapp
+[INFO] Assembling webapp [picketlink-reg-as7] in [/home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/../../picketlink-reg/resources]
+[DEBUG] properties used {env.DESKTOP_SESSION=gnome, file.encoding.pkg=sun.io, version.assembly.plugin=2.2-beta-4, java.home=/home/anil/java/jdk1.6.0_31/jre, env.DISPLAY=:0, env.LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=01;05;37;41:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lz=01;31:*.xz=01;31:*.bz2=01;31:*.tbz=01;31:*.tbz2=01;31:*.bz=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:!
*.mkv=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.axv=01;35:*.anx=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=01;36:*.au=01;36:*.flac=01;36:*.mid=01;36:*.midi=01;36:*.mka=01;36:*.mp3=01;36:*.mpc=01;36:*.ogg=01;36:*.ra=01;36:*.wav=01;36:*.axa=01;36:*.oga=01;36:*.spx=01;36:*.xspf=01;36:*.pdf=00;33:*.ps=00;33:*.ps.gz=00;33:*.txt=00;33:*.patch=00;33:*.diff=00;33:*.log=00;33:*.tex=00;33:*.xls=00;33:*.xlsx=00;33:*.ppt=00;33:*.pptx=00;33:*.rtf=00;33:*.doc=00;33:*.docx=00;33:*.odt=00;33:*.ods=00;33:*.odp=00;33:*.xml=00;33:*.epub=00;33:*.abw=00;33:*.html=00;33:*.wpd=00;33:, env.XDG_VTNR=1, classworlds.conf=/opt/apache-maven-3.0.2/bin/m2.conf, env.XDG_SESSION_COOKIE=49aaafdaf7853547bcef9f320000000c-1331816034.260259-995781388, java.endorsed.dirs=/home/anil/java/jdk1.6.0!
_31/jre/lib/endorsed, env.LOGNAME=anil, env.USERNAME=anil, env!
.XDG_SEA
T=seat0, env.SESSION_MANAGER=local/unix:@/tmp/.ICE-unix/1192,unix/unix:/tmp/.ICE-unix/1192, env.KDEDIRS=/usr, sun.os.patch.level=unknown, java.vendor.url=http://java.sun.com/, version.javadoc.plugin=2.6.1, version.findbugs.plugin=2.2, java.version=1.6.0_31, arguments=-Prelease, java.vendor.url.bug=http://java.sun.com/cgi-bin/bugreport.cgi, version.deploy.plugin=2.4, version.pir.plugin=2.1.2, env.GNOME_KEYRING_CONTROL=/tmp/keyring-Qy8rWn, user.name=anil, env.LANG=en_US.UTF-8, version.site.plugin=2.0.1, sun.io.unicode.encoding=UnicodeLittle, env.CVSROOT=:ext:asaldhana@cvs.forge.jboss.com:/cvsroot/jboss, sun.jnu.encoding=UTF-8, env.DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-QmlohiCPYg,guid=d0238f4566dc3bf53efde65600000016, java.runtime.name=Java(TM) SE Runtime Environment, version.resources.plugin=2.4.1, java.specification.name=Java Platform API Specification, version.plugin.plugin=2.5.1, user.timezone=US/Central, env.LESSOPEN=||/usr/bin/lesspipe.sh %s, path.separator=:, !
env.XMODIFIERS=@im=none, file.encoding=UTF-8, version.war.plugin=2.1-beta-1, env.HOME=/home/anil, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher -X clean install, version.taglist.plugin=2.4, version.pmd.plugin=2.4, version.eclipse.plugin=2.7, env.HOSTNAME=sadbhav, version.javancss.plugin=2.0, java.io.tmpdir=/tmp, env.GNOME_KEYRING_PID=1186, user.language=en, env.HISTCONTROL=ignoredups, line.separator=
+, env.ANT_OPTS=-Xmx512m, env.HISTSIZE=1000, version.sonar.plugin=1.0-beta-1, version.enforcer.plugin=1.0-beta-1, version.antrun.plugin=1.3, version.cobertura.plugin=2.3, java.vm.info=mixed mode, sun.desktop=gnome, java.vm.specification.name=Java Virtual Machine Specification, jdk.min.version=1.5, version.install.plugin=2.3, env.COLORTERM=gnome-terminal, env.M2_HOME=/opt/apache-maven-3.0.2, env.CATALINA_OPTS=-Xms1024m -Xmx1024m -XX:MaxPermSize=128m, env.GDMSESSION=gnome, version.jxr.plugin=2.1, java.awt.printerjob=sun.print.PSPrinterJob, env.WINDOWID=23068677, env.CLASSPATH=:/opt/apache-ant-1.8.2/lib/ant-junit.jar:/opt/apache-ant-1.8.2/lib/ant-junit.jar, os.name=Linux, java.specification.vendor=Sun Microsystems Inc., version.ear.plugin=2.4, env.TERM=xterm, java.vm.name=Java HotSpot(TM) 64-Bit Server VM, version.checkstyle.plugin=2.4, env.QT_IM_MODULE=xim, java.library.path=/home/anil/java/jdk1.6.0_31/jre/lib/amd64/server:/home/anil/java/jdk1.6.0_31/jre/lib/amd64:/home/anil/!
java/jdk1.6.0_31/jre/../lib/amd64:/usr/lib64/qt-3.3/lib:/usr/lib64/qt-3.3/lib::/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib, env.PATH=/usr/lib/qt-3.3/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/usr/bin:/usr/sbin:/usr/java/latest/bin:/opt/apache-maven-3.0.2/bin:/home/anil/.local/bin:/home/anil/bin:/usr/bin:/usr/sbin:/usr/java/latest/bin:/opt/apache-maven-3.0.2/bin, jboss.snapshots.repo.url=https://repository.jboss.org/nexus/content/repos..., env.JDK_HOME=/usr/java/latest, version.jdepend.plugin=2.0-beta-2, targetJdk=1.5, java.class.version=50.0, env.SHLVL=2, env.LD_LIBRARY_PATH=/home/anil/java/jdk1.6.0_31/jre/lib/amd64/server:/home/anil/java/jdk1.6.0_31/jre/lib/amd64:/home/anil/java/jdk1.6.0_31/jre/../lib/amd64:/usr/lib64/qt-3.3/lib:/usr/lib64/qt-3.3/lib:, version.ejb.plugin=2.2, env.GJS_DEBUG_OUTPUT=stderr, version.clover2.plugin=2.5.1, sun.boot.library.path=/home/anil/java/jdk1.6.0_31/jre/lib/amd64, project.build.sourceE!
ncoding=UTF-8, sun.management.compiler=HotSpot 64-Bit Tiered C!
ompilers
, java.awt.graphicsenv=sun.awt.X11GraphicsEnvironment, env.USER=anil, version.buildnumber.plugin=1.0-beta-3, version.clean.plugin=2.3, java.vm.specification.version=1.0, env.KDE_IS_PRELINKED=1, version.source.plugin=2.1.1, env.NLSPATH=/usr/dt/lib/nls/msg/%L/%N.cat, sun.cpu.isalist=, version.release.plugin=2.0-beta-9, java.ext.dirs=/home/anil/java/jdk1.6.0_31/jre/lib/ext:/usr/java/packages/lib/ext, env.GJS_DEBUG_TOPICS=JS ERROR;JS LOG, os.version=3.2.9-2.fc16.x86_64, user.home=/home/anil, version.surefire.plugin=2.4.3, java.vm.vendor=Sun Microsystems Inc., jboss.releases.repo.url=https://repository.jboss.org/nexus/service/local/..., env.JAVA_HOME=/usr/java/latest, env.XDG_SESSION_ID=2, env.XAUTHORITY=/var/run/gdm/auth-for-anil-a9a0Bn/database, user.dir=/home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg, env.XFILESEARCHPATH=/usr/dt/app-defaults/%L/Dt, env.WINDOWPATH=1, env.MAIL=/var/spool/mail/anil, env.M2=/opt/apache-maven-3.0.2/bin, e!
nv.PWD=/home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg, version.rar.plugin=2.2, sun.cpu.endian=little, useReleaseProfile=false, env.QTLIB=/usr/lib/qt-3.3/lib, maven.min.version=2.0.9, java.vm.version=20.6-b01, java.class.path=/opt/apache-maven-3.0.2/boot/plexus-classworlds-2.4.jar, version.idea.plugin=2.2, downloadSources=true, env.QTDIR=/usr/lib/qt-3.3, os.arch=amd64, version.compiler.plugin=2.0.2, sun.java.launcher=SUN_STANDARD, env.IMSETTINGS_INTEGRATE_DESKTOP=yes, java.vm.specification.vendor=Sun Microsystems Inc., file.separator=/, java.runtime.version=1.6.0_31-b04, env.SSH_AUTH_SOCK=/tmp/keyring-Qy8rWn/ssh, sun.boot.class.path=/home/anil/java/jdk1.6.0_31/jre/lib/resources.jar:/home/anil/java/jdk1.6.0_31/jre/lib/rt.jar:/home/anil/java/jdk1.6.0_31/jre/lib/sunrsasign.jar:/home/anil/java/jdk1.6.0_31/jre/lib/jsse.jar:/home/anil/java/jdk1.6.0_31/jre/lib/jce.jar:/home/anil/java/jdk1.6.0_31/jre/lib/charsets.jar:/home/anil/java/jdk1.6.0_31/jre/lib/modu!
les/jdk.boot.jar:/home/anil/java/jdk1.6.0_31/jre/classes, env.!
XDG_RUNT
IME_DIR=/run/user/anil, version.dependency.plugin=2.1, env.QTINC=/usr/lib/qt-3.3/include, env.ANT_HOME=/opt/apache-ant-1.8.2, user.country=US, maven.home=/opt/apache-maven-3.0.2, env.SHELL=/bin/bash, maven.compiler.target=1.5, java.vendor=Sun Microsystems Inc., env.GPG_AGENT_INFO=/tmp/keyring-Qy8rWn/gpg:0:1, version.jar.plugin=2.2, env.IMSETTINGS_MODULE=none, maven.compiler.source=1.5, java.specification.version=1.6, env.GNOME_DESKTOP_SESSION_ID=this-is-deprecated, sun.arch.data.model=64}
+[INFO] Processing war project
+[INFO] Copying webapp resources [/home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/src/main/webapp]
+[DEBUG] + META-INF/jboss-deployment-structure.xml has been copied.
+[DEBUG] + WEB-INF/jboss-web.xml has been copied.
+[DEBUG] Dump of the current build pathSet content -->
+[DEBUG] META-INF/jboss-deployment-structure.xml
+[DEBUG] WEB-INF/jboss-web.xml
+[DEBUG] -- end of dump --
+[DEBUG] Processing: picketlink-consolidated-social-2.0.0.Beta1-SNAPSHOT.jar
+[DEBUG] + WEB-INF/lib/picketlink-consolidated-social-2.0.0.Beta1-SNAPSHOT.jar has been copied.
+[DEBUG] Processing: openid4java-nodeps-0.9.6.jar
+[DEBUG] + WEB-INF/lib/openid4java-nodeps-0.9.6.jar has been copied.
+[DEBUG] Processing: commons-logging-1.1.1.jar
+[DEBUG] + WEB-INF/lib/commons-logging-1.1.1.jar has been copied.
+[DEBUG] Processing: json-20090211.jar
+[DEBUG] + WEB-INF/lib/json-20090211.jar has been copied.
+[INFO] Webapp assembled in [40 msecs]
+[DEBUG] Excluding [**/.svn/, WEB-INF/lib/guice-2.0.jar, WEB-INF/lib/jcip-annotations-1.0.jar] from the generated webapp archive.
+[DEBUG] Including [**] in the generated webapp archive.
+[INFO] Building war: /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/picketlink-reg.war
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory auth/
+[DEBUG] adding directory auth/css/
+[DEBUG] adding directory css/
+[DEBUG] adding directory WEB-INF/
+[DEBUG] adding directory WEB-INF/classes/
+[DEBUG] adding directory WEB-INF/lib/
+[DEBUG] adding directory images/
+[DEBUG] adding entry auth/css/text.css
+[DEBUG] adding entry auth/css/960_12_col_rtl.css
+[DEBUG] adding entry auth/css/reset.css
+[DEBUG] adding entry auth/css/960_12_col.css
+[DEBUG] adding entry auth/css/reset_rtl.css
+[DEBUG] adding entry auth/css/demo.css
+[DEBUG] adding entry auth/css/960_24_col_rtl.css
+[DEBUG] adding entry auth/css/960_16_col.css
+[DEBUG] adding entry auth/css/text_rtl.css
+[DEBUG] adding entry auth/css/960.css
+[DEBUG] adding entry auth/css/960_24_col.css
+[DEBUG] adding entry auth/css/960_rtl.css
+[DEBUG] adding entry auth/css/960_16_col_rtl.css
+[DEBUG] adding entry auth/auth.jsp
+[DEBUG] adding entry css/text.css
+[DEBUG] adding entry css/960_12_col_rtl.css
+[DEBUG] adding entry css/reset.css
+[DEBUG] adding entry css/960_12_col.css
+[DEBUG] adding entry css/reset_rtl.css
+[DEBUG] adding entry css/demo.css
+[DEBUG] adding entry css/960_24_col_rtl.css
+[DEBUG] adding entry css/960_16_col.css
+[DEBUG] adding entry css/text_rtl.css
+[DEBUG] adding entry css/960.css
+[DEBUG] adding entry css/960_24_col.css
+[DEBUG] adding entry css/960_rtl.css
+[DEBUG] adding entry css/960_16_col_rtl.css
+[DEBUG] adding entry META-INF/jboss-deployment-structure.xml
+[DEBUG] adding entry WEB-INF/jboss-web.xml
+[DEBUG] adding entry WEB-INF/context.xml
+[DEBUG] adding entry WEB-INF/web.xml
+[DEBUG] adding entry WEB-INF/lib/json-20090211.jar
+[DEBUG] adding entry WEB-INF/lib/commons-httpclient-3.1.jar
+[DEBUG] adding entry WEB-INF/lib/commons-codec-1.4.jar
+[DEBUG] adding entry WEB-INF/lib/picketlink-consolidated-social-2.0.0.Beta1-SNAPSHOT.jar
+[DEBUG] adding entry WEB-INF/lib/openid4java-nodeps-0.9.6.jar
+[DEBUG] adding entry WEB-INF/lib/commons-logging-1.1.1.jar
+[DEBUG] adding entry index.jsp
+[DEBUG] adding entry images/picketlink_banner.png
+[DEBUG] adding entry images/login-with-facebook.png
+[DEBUG] adding entry images/login-with-google.png
+[INFO] WEB-INF/web.xml already added, skipping
+[DEBUG] adding directory META-INF/maven/
+[DEBUG] adding directory META-INF/maven/org.picketlink/
+[DEBUG] adding directory META-INF/maven/org.picketlink/picketlink-reg-as7/
+[DEBUG] adding entry META-INF/maven/org.picketlink/picketlink-reg-as7/pom.xml
+[DEBUG] adding entry META-INF/maven/org.picketlink/picketlink-reg-as7/pom.properties
+[INFO]
+[INFO] --- maven-source-plugin:2.1.1:jar-no-fork (attach-sources) @ picketlink-reg-as7 ---
+[DEBUG] org.apache.maven.plugins:maven-source-plugin:jar:2.1.1:
+[DEBUG] org.apache.maven:maven-model:jar:2.0.9:compile
+[DEBUG] org.apache.maven:maven-artifact:jar:2.0.9:compile
+[DEBUG] org.apache.maven:maven-plugin-api:jar:2.0.9:compile
+[DEBUG] org.apache.maven:maven-project:jar:2.0.9:compile
+[DEBUG] org.apache.maven:maven-settings:jar:2.0.9:compile
+[DEBUG] org.apache.maven:maven-profile:jar:2.0.9:compile
+[DEBUG] org.apache.maven:maven-artifact-manager:jar:2.0.9:compile
+[DEBUG] org.apache.maven:maven-repository-metadata:jar:2.0.9:compile
+[DEBUG] org.apache.maven:maven-plugin-registry:jar:2.0.9:compile
+[DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile
+[DEBUG] junit:junit:jar:3.8.1:compile
+[DEBUG] classworlds:classworlds:jar:1.1-alpha-2:compile
+[DEBUG] org.apache.maven:maven-archiver:jar:2.4:compile
+[DEBUG] org.codehaus.plexus:plexus-interpolation:jar:1.6:compile
+[DEBUG] org.codehaus.plexus:plexus-archiver:jar:1.0-alpha-9:compile
+[DEBUG] org.codehaus.plexus:plexus-io:jar:1.0-alpha-1:compile
+[DEBUG] org.codehaus.plexus:plexus-utils:jar:1.5.8:compile
+[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-source-plugin:2.1.1
+[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-source-plugin:2.1.1
+[DEBUG] Imported: < maven.api
+[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-source-plugin:2.1.1
+[DEBUG] Included: org.apache.maven.plugins:maven-source-plugin:jar:2.1.1
+[DEBUG] Included: junit:junit:jar:3.8.1
+[DEBUG] Included: org.apache.maven:maven-archiver:jar:2.4
+[DEBUG] Included: org.codehaus.plexus:plexus-interpolation:jar:1.6
+[DEBUG] Included: org.codehaus.plexus:plexus-archiver:jar:1.0-alpha-9
+[DEBUG] Included: org.codehaus.plexus:plexus-io:jar:1.0-alpha-1
+[DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:1.5.8
+[DEBUG] Excluded: org.apache.maven:maven-model:jar:2.0.9
+[DEBUG] Excluded: org.apache.maven:maven-artifact:jar:2.0.9
+[DEBUG] Excluded: org.apache.maven:maven-plugin-api:jar:2.0.9
+[DEBUG] Excluded: org.apache.maven:maven-project:jar:2.0.9
+[DEBUG] Excluded: org.apache.maven:maven-settings:jar:2.0.9
+[DEBUG] Excluded: org.apache.maven:maven-profile:jar:2.0.9
+[DEBUG] Excluded: org.apache.maven:maven-artifact-manager:jar:2.0.9
+[DEBUG] Excluded: org.apache.maven:maven-repository-metadata:jar:2.0.9
+[DEBUG] Excluded: org.apache.maven:maven-plugin-registry:jar:2.0.9
+[DEBUG] Excluded: org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1
+[DEBUG] Excluded: classworlds:classworlds:jar:1.1-alpha-2
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-source-plugin:2.1.1:jar-no-fork from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-source-plugin:2.1.1, parent: sun.misc.Launcher$AppClassLoader@1a45a877]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-source-plugin:2.1.1:jar-no-fork' with basic configurator -->
+[DEBUG] (f) attach = true
+[DEBUG] (f) defaultManifestFile = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/classes/META-INF/MANIFEST.MF
+[DEBUG] (f) excludeResources = false
+[DEBUG] (f) finalName = picketlink-reg-as7-2.0.0.Beta1-SNAPSHOT
+[DEBUG] (f) forceCreation = false
+[DEBUG] (f) includePom = false
+[DEBUG] (f) outputDirectory = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target
+[DEBUG] (f) project = MavenProject: org.picketlink:picketlink-reg-as7:2.0.0.Beta1-SNAPSHOT @ /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/pom.xml
+[DEBUG] (f) reactorProjects = [MavenProject: org.picketlink:picketlink-reg-as7:2.0.0.Beta1-SNAPSHOT @ /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/pom.xml]
+[DEBUG] (f) useDefaultExcludes = true
+[DEBUG] (f) useDefaultManifestFile = false
+[DEBUG] -- end configuration --
+[INFO] No sources in project. Archive not created.
+[INFO]
+[INFO] --- maven-install-plugin:2.3:install (default-install) @ picketlink-reg-as7 ---
+[DEBUG] org.apache.maven.plugins:maven-install-plugin:jar:2.3:
+[DEBUG] org.apache.maven:maven-plugin-api:jar:2.0.6:compile
+[DEBUG] org.apache.maven:maven-project:jar:2.0.6:compile
+[DEBUG] org.apache.maven:maven-settings:jar:2.0.6:compile
+[DEBUG] org.apache.maven:maven-profile:jar:2.0.6:compile
+[DEBUG] org.apache.maven:maven-plugin-registry:jar:2.0.6:compile
+[DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile
+[DEBUG] junit:junit:jar:3.8.1:compile
+[DEBUG] classworlds:classworlds:jar:1.1-alpha-2:compile
+[DEBUG] org.apache.maven:maven-model:jar:2.0.6:compile
+[DEBUG] org.apache.maven:maven-artifact-manager:jar:2.0.6:compile
+[DEBUG] org.apache.maven:maven-repository-metadata:jar:2.0.6:compile
+[DEBUG] org.apache.maven:maven-artifact:jar:2.0.6:compile
+[DEBUG] org.codehaus.plexus:plexus-utils:jar:1.5.6:compile
+[DEBUG] org.codehaus.plexus:plexus-digest:jar:1.0:compile
+[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-install-plugin:2.3
+[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-install-plugin:2.3
+[DEBUG] Imported: < maven.api
+[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-install-plugin:2.3
+[DEBUG] Included: org.apache.maven.plugins:maven-install-plugin:jar:2.3
+[DEBUG] Included: junit:junit:jar:3.8.1
+[DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:1.5.6
+[DEBUG] Included: org.codehaus.plexus:plexus-digest:jar:1.0
+[DEBUG] Excluded: org.apache.maven:maven-plugin-api:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-project:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-settings:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-profile:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-plugin-registry:jar:2.0.6
+[DEBUG] Excluded: org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1
+[DEBUG] Excluded: classworlds:classworlds:jar:1.1-alpha-2
+[DEBUG] Excluded: org.apache.maven:maven-model:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-artifact-manager:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-repository-metadata:jar:2.0.6
+[DEBUG] Excluded: org.apache.maven:maven-artifact:jar:2.0.6
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-install-plugin:2.3:install from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-install-plugin:2.3, parent: sun.misc.Launcher$AppClassLoader@1a45a877]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-install-plugin:2.3:install' with basic configurator -->
+[DEBUG] (f) artifact = org.picketlink:picketlink-reg-as7:war:2.0.0.Beta1-SNAPSHOT
+[DEBUG] (f) attachedArtifacts = []
+[DEBUG] (f) createChecksum = false
+[DEBUG] (f) localRepository = id: local
+ url: file:///home/anil/.m2/repository/
+ layout: none
+
+[DEBUG] (f) packaging = war
+[DEBUG] (f) pomFile = /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/pom.xml
+[DEBUG] (f) updateReleaseInfo = false
+[DEBUG] -- end configuration --
+[DEBUG] Using manager EnhancedLocalRepositoryManager with priority 10 for /home/anil/.m2/repository
+[INFO] Installing /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/target/picketlink-reg.war to /home/anil/.m2/repository/org/picketlink/picketlink-reg-as7/2.0.0.Beta1-SNAPSHOT/picketlink-reg-as7-2.0.0.Beta1-SNAPSHOT.war
+[INFO] Installing /home/anil/picketlink/picketlink/social/trunk/webapps/as7/picketlink-reg/pom.xml to /home/anil/.m2/repository/org/picketlink/picketlink-reg-as7/2.0.0.Beta1-SNAPSHOT/picketlink-reg-as7-2.0.0.Beta1-SNAPSHOT.pom
+[DEBUG] Installing org.picketlink:picketlink-reg-as7:2.0.0.Beta1-SNAPSHOT/maven-metadata.xml to /home/anil/.m2/repository/org/picketlink/picketlink-reg-as7/2.0.0.Beta1-SNAPSHOT/maven-metadata-local.xml
+[DEBUG] Installing org.picketlink:picketlink-reg-as7/maven-metadata.xml to /home/anil/.m2/repository/org/picketlink/picketlink-reg-as7/maven-metadata-local.xml
+[INFO] ------------------------------------------------------------------------
+[INFO] BUILD SUCCESS
+[INFO] ------------------------------------------------------------------------
+[INFO] Total time: 2.383s
+[INFO] Finished at: Thu Mar 15 13:37:44 CDT 2012
+[INFO] Final Memory: 6M/150M
+[INFO] ------------------------------------------------------------------------
Added: social/trunk/webapps/as7/picketlink-reg/pom.xml
===================================================================
--- social/trunk/webapps/as7/picketlink-reg/pom.xml (rev 0)
+++ social/trunk/webapps/as7/picketlink-reg/pom.xml 2012-03-19 15:59:04 UTC (rev 1524)
@@ -0,0 +1,68 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.picketlink.social.as7</groupId>
+ <artifactId>picketlink-reg</artifactId>
+ <version>2.0.0.Beta1-SNAPSHOT</version>
+ <packaging>war</packaging>
+ <name>PicketLink Social Registration</name>
+ <url>http://labs.jboss.org/portal/picketlink/</url>
+ <description>PicketLink Social Registration</description>
+ <licenses>
+ <license>
+ <name>lgpl</name>
+ <url>http://repository.jboss.com/licenses/lgpl.txt</url>
+ </license>
+ </licenses>
+ <organization>
+ <name>JBoss Inc.</name>
+ <url>http://www.jboss.org</url>
+ </organization>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-war-plugin</artifactId>
+ <version>2.2</version>
+ <configuration>
+ <warName>picketlink-reg</warName>
+ <webappDirectory>${basedir}/../../picketlink-reg/resources/</webappDirectory>
+ <packagingExcludes>**/.svn/,WEB-INF/lib/jcip-annotations-1.0.jar,WEB-INF/lib/commons-codec-1.4.jar,WEB-INF/lib/commons-httpclient-3.1.jar,WEB-INF/lib/commons-logging-1.1.1.jar</packagingExcludes>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.picketlink</groupId>
+ <artifactId>picketlink-consolidated-social</artifactId>
+ <version>${pom.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.openid4java</groupId>
+ <artifactId>openid4java-nodeps</artifactId>
+ <version>0.9.6</version>
+ <exclusions>
+ <exclusion>
+ <groupId>com.google.code.guice</groupId>
+ <artifactId>guice</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>net.jcip</groupId>
+ <artifactId>jcip-annotations</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.json</groupId>
+ <artifactId>json</artifactId>
+ <version>20090211</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.httpcomponents</groupId>
+ <artifactId>httpclient</artifactId>
+ <version>4.1.1</version>
+ </dependency>
+
+ </dependencies>
+</project>
Property changes on: social/trunk/webapps/as7/picketlink-reg/pom.xml
___________________________________________________________________
Added: svn:executable
+ *
Added: social/trunk/webapps/as7/picketlink-reg/src/main/webapp/META-INF/jboss-deployment-structure.xml
===================================================================
--- social/trunk/webapps/as7/picketlink-reg/src/main/webapp/META-INF/jboss-deployment-structure.xml (rev 0)
+++ social/trunk/webapps/as7/picketlink-reg/src/main/webapp/META-INF/jboss-deployment-structure.xml 2012-03-19 15:59:04 UTC (rev 1524)
@@ -0,0 +1,12 @@
+<jboss-deployment-structure>
+
+ <deployment>
+ <!-- Add picketlink module dependency -->
+ <dependencies>
+ <module name="org.picketlink" />
+ <module name="org.apache.commons.codec" />
+ <module name="org.apache.commons.logging" />
+ </dependencies>
+ </deployment>
+</jboss-deployment-structure>
+
Added: social/trunk/webapps/as7/picketlink-reg/src/main/webapp/WEB-INF/jboss-web.xml
===================================================================
--- social/trunk/webapps/as7/picketlink-reg/src/main/webapp/WEB-INF/jboss-web.xml (rev 0)
+++ social/trunk/webapps/as7/picketlink-reg/src/main/webapp/WEB-INF/jboss-web.xml 2012-03-19 15:59:04 UTC (rev 1524)
@@ -0,0 +1,29 @@
+<jboss-web>
+ <security-domain>external_auth</security-domain>
+ <valve>
+ <class-name>org.picketlink.social.auth.ExternalAuthenticator</class-name>
+ <param>
+ <param-name>returnURL</param-name>
+ <param-value>${RETURN_URL::http://localhost:8080/picketlink-reg/auth}</param-value>
+ </param>
+ <param>
+ <param-name>scope</param-name>
+ <param-value>${SCOPE::email}</param-value>
+ </param>
+ <param>
+ <param-name>clientID</param-name>
+ <param-value>${CLIENT_ID::11111111111}</param-value>
+ </param>
+ <param>
+ <param-name>clientSecret</param-name>
+ <param-value>${CLIENT_SECRET::ADD_YOUR_SECRET}</param-value>
+ </param>
+ <param>
+ <param-name>roleString</param-name>
+ <param-value>${ROLE_STRING::user}</param-value>
+ </param>
+ </valve>
+ <valve>
+ <class-name>org.picketlink.social.reg.RegistrationValve</class-name>
+ </valve>
+</jboss-web>
Added: social/trunk/webapps/as7/pom.xml
===================================================================
--- social/trunk/webapps/as7/pom.xml (rev 0)
+++ social/trunk/webapps/as7/pom.xml 2012-03-19 15:59:04 UTC (rev 1524)
@@ -0,0 +1,25 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.picketlink.social</groupId>
+ <artifactId>picketlink-social-as7-webapps</artifactId>
+ <version>2.0.0.Beta1-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <name>PicketLink Social Web Applications</name>
+ <url>http://labs.jboss.org/portal/jbosssecurity/</url>
+ <description>PicketLink Web Applications contains the web
+ applications for Federated Identity Needs.</description>
+ <licenses>
+ <license>
+ <name>lgpl</name>
+ <url>http://repository.jboss.com/licenses/lgpl.txt</url>
+ </license>
+ </licenses>
+ <organization>
+ <name>JBoss Inc.</name>
+ <url>http://www.jboss.org</url>
+ </organization>
+ <modules>
+ <module>openid-consumer</module>
+ <module>picketlink-reg</module>
+ </modules>
+</project>
Added: social/trunk/webapps/openid-consumer/resources/META-INF/jboss-deployment-structure.xml
===================================================================
--- social/trunk/webapps/openid-consumer/resources/META-INF/jboss-deployment-structure.xml (rev 0)
+++ social/trunk/webapps/openid-consumer/resources/META-INF/jboss-deployment-structure.xml 2012-03-19 15:59:04 UTC (rev 1524)
@@ -0,0 +1,10 @@
+<jboss-deployment-structure>
+
+ <deployment>
+ <!-- Add picketlink module dependency -->
+ <dependencies>
+ <module name="org.picketlink" />
+ </dependencies>
+ </deployment>
+</jboss-deployment-structure>
+
Added: social/trunk/webapps/picketlink-reg/resources/META-INF/context.xml
===================================================================
--- social/trunk/webapps/picketlink-reg/resources/META-INF/context.xml (rev 0)
+++ social/trunk/webapps/picketlink-reg/resources/META-INF/context.xml 2012-03-19 15:59:04 UTC (rev 1524)
@@ -0,0 +1,9 @@
+<Context>
+ <Valve className="org.picketlink.social.auth.ExternalAuthenticator"
+ returnURL="http://localhost:8080/picketlink-reg/auth"
+ scope="${SCOPE::email}"
+ clientID="${CLIENT_ID::11111111111}"
+ clientSecret="${CLIENT_SECRET::ADD_YOUR_SECRET}"
+ roleString="${ROLE_STRING::user}"/>
+ <Valve className="org.picketlink.social.reg.RegistrationValve"/>
+</Context>
Added: social/trunk/webapps/picketlink-reg/resources/META-INF/jboss-deployment-structure.xml
===================================================================
--- social/trunk/webapps/picketlink-reg/resources/META-INF/jboss-deployment-structure.xml (rev 0)
+++ social/trunk/webapps/picketlink-reg/resources/META-INF/jboss-deployment-structure.xml 2012-03-19 15:59:04 UTC (rev 1524)
@@ -0,0 +1,12 @@
+<jboss-deployment-structure>
+
+ <deployment>
+ <!-- Add picketlink module dependency -->
+ <dependencies>
+ <module name="org.picketlink" />
+ <module name="org.apache.commons.codec" />
+ <module name="org.apache.commons.logging" />
+ </dependencies>
+ </deployment>
+</jboss-deployment-structure>
+
Modified: social/trunk/webapps/picketlink-reg/resources/WEB-INF/context.xml
===================================================================
--- social/trunk/webapps/picketlink-reg/resources/WEB-INF/context.xml 2012-03-19 15:57:16 UTC (rev 1523)
+++ social/trunk/webapps/picketlink-reg/resources/WEB-INF/context.xml 2012-03-19 15:59:04 UTC (rev 1524)
@@ -1,9 +1,9 @@
<Context>
<Valve className="org.picketlink.social.auth.ExternalAuthenticator"
returnURL="http://localhost:8080/picketlink-reg/auth"
- scope="email"
- clientID="some_client_auth"
- clientSecret="some_client_secret"
- roleString="user"/>
+ scope="${SCOPE::email}"
+ clientID="${CLIENT_ID::11111111111}"
+ clientSecret="${CLIENT_SECRET::ADD_YOUR_SECRET}"
+ roleString="${ROLE_STRING::user}"/>
<Valve className="org.picketlink.social.reg.RegistrationValve"/>
</Context>
Modified: social/trunk/webapps/picketlink-reg/resources/WEB-INF/jboss-web.xml
===================================================================
--- social/trunk/webapps/picketlink-reg/resources/WEB-INF/jboss-web.xml 2012-03-19 15:57:16 UTC (rev 1523)
+++ social/trunk/webapps/picketlink-reg/resources/WEB-INF/jboss-web.xml 2012-03-19 15:59:04 UTC (rev 1524)
@@ -1,3 +1,29 @@
<jboss-web>
<security-domain>external_auth</security-domain>
+ <valve>
+ <class-name>org.picketlink.social.auth.ExternalAuthenticator</class-name>
+ <param>
+ <param-name>returnURL</param-name>
+ <param-value>${RETURN_URL::http://localhost:8080/picketlink-reg/auth}</param-value>
+ </param>
+ <param>
+ <param-name>scope</param-name>
+ <param-value>${SCOPE::email}</param-value>
+ </param>
+ <param>
+ <param-name>clientID</param-name>
+ <param-value>${CLIENT_ID::11111111111}</param-value>
+ </param>
+ <param>
+ <param-name>clientSecret</param-name>
+ <param-value>${CLIENT_SECRET::ADD_YOUR_SECRET}</param-value>
+ </param>
+ <param>
+ <param-name>roleString</param-name>
+ <param-value>${ROLE_STRING::user}</param-value>
+ </param>
+ </valve>
+ <valve>
+ <class-name>org.picketlink.social.reg.RegistrationValve</class-name>
+ </valve>
</jboss-web>
Added: social/trunk/webapps/picketlink-reg/src/main/webapp/META-INF/context.xml
===================================================================
--- social/trunk/webapps/picketlink-reg/src/main/webapp/META-INF/context.xml (rev 0)
+++ social/trunk/webapps/picketlink-reg/src/main/webapp/META-INF/context.xml 2012-03-19 15:59:04 UTC (rev 1524)
@@ -0,0 +1,9 @@
+<Context>
+ <Valve className="org.picketlink.social.auth.ExternalAuthenticator"
+ returnURL="http://localhost:8080/picketlink-reg/auth"
+ scope="${SCOPE::email}"
+ clientID="${CLIENT_ID::11111111111}"
+ clientSecret="${CLIENT_SECRET::ADD_YOUR_SECRET}"
+ roleString="${ROLE_STRING::user}"/>
+ <Valve className="org.picketlink.social.reg.RegistrationValve"/>
+</Context>
Modified: social/trunk/webapps/picketlink-reg/src/main/webapp/WEB-INF/context.xml
===================================================================
--- social/trunk/webapps/picketlink-reg/src/main/webapp/WEB-INF/context.xml 2012-03-19 15:57:16 UTC (rev 1523)
+++ social/trunk/webapps/picketlink-reg/src/main/webapp/WEB-INF/context.xml 2012-03-19 15:59:04 UTC (rev 1524)
@@ -1,9 +1,9 @@
<Context>
<Valve className="org.picketlink.social.auth.ExternalAuthenticator"
returnURL="http://localhost:8080/picketlink-reg/auth"
- scope="email"
- clientID="some_client_auth"
- clientSecret="some_client_secret"
- roleString="user"/>
+ scope="${SCOPE::email}"
+ clientID="${CLIENT_ID::11111111111}"
+ clientSecret="${CLIENT_SECRET::ADD_YOUR_SECRET}"
+ roleString="${ROLE_STRING::user}"/>
<Valve className="org.picketlink.social.reg.RegistrationValve"/>
</Context>
Modified: social/trunk/webapps/pom.xml
===================================================================
--- social/trunk/webapps/pom.xml 2012-03-19 15:57:16 UTC (rev 1523)
+++ social/trunk/webapps/pom.xml 2012-03-19 15:59:04 UTC (rev 1524)
@@ -26,5 +26,6 @@
<module>openid-provider</module>
<module>openid-consumer</module>
<module>picketlink-reg</module>
+ <module>as7</module>
</modules>
</project>
12 years, 9 months
Picketlink SVN: r1523 - social/trunk/social/src/main/java/org/picketlink/social/auth.
by picketlink-commits@lists.jboss.org
Author: anil.saldhana(a)jboss.com
Date: 2012-03-19 11:57:16 -0400 (Mon, 19 Mar 2012)
New Revision: 1523
Modified:
social/trunk/social/src/main/java/org/picketlink/social/auth/ExternalAuthenticator.java
Log:
deal with reload of page
Modified: social/trunk/social/src/main/java/org/picketlink/social/auth/ExternalAuthenticator.java
===================================================================
--- social/trunk/social/src/main/java/org/picketlink/social/auth/ExternalAuthenticator.java 2012-03-19 15:56:46 UTC (rev 1522)
+++ social/trunk/social/src/main/java/org/picketlink/social/auth/ExternalAuthenticator.java 2012-03-19 15:57:16 UTC (rev 1523)
@@ -213,7 +213,14 @@
if(trace) log.trace("state="+ state);
if( STATES.FINISH.name().equals(state))
- return true;
+ {
+ Principal principal = request.getPrincipal();
+ if(principal == null)
+ {
+ principal = facebookProcessor.getPrincipal(request, response, context.getRealm());
+ }
+ return dealWithFacebookPrincipal(request, response, principal);
+ }
if( state == null || state.isEmpty())
{
@@ -237,21 +244,7 @@
if(principal == null)
throw new RuntimeException("Principal was null. Maybe login modules need to be configured properly. Or user chose no data");
- String userName = principal.getName();
-
- request.getSessionInternal().setNote(Constants.SESS_USERNAME_NOTE, userName);
- request.getSessionInternal().setNote(Constants.SESS_PASSWORD_NOTE, "");
- request.setUserPrincipal(principal);
-
- if (saveRestoreRequest)
- {
- this.restoreRequest(request, request.getSessionInternal());
- }
- registerWithAuthenticatorBase(request,response,principal,userName);
-
- request.getSession().setAttribute("STATE", STATES.FINISH.name());
-
- return true;
+ return dealWithFacebookPrincipal(request, response, principal);
}
return false;
}
@@ -353,4 +346,23 @@
}
}
}
+
+ private boolean dealWithFacebookPrincipal(Request request, Response response, Principal principal) throws IOException
+ {
+ String userName = principal.getName();
+
+ request.getSessionInternal().setNote(Constants.SESS_USERNAME_NOTE, userName);
+ request.getSessionInternal().setNote(Constants.SESS_PASSWORD_NOTE, "");
+ request.setUserPrincipal(principal);
+
+ if (saveRestoreRequest)
+ {
+ this.restoreRequest(request, request.getSessionInternal());
+ }
+ registerWithAuthenticatorBase(request,response,principal,userName);
+
+ request.getSession().setAttribute("STATE", STATES.FINISH.name());
+
+ return true;
+ }
}
\ No newline at end of file
12 years, 9 months