Index: continuum-webapp/src/main/java/org/apache/maven/continuum/web/action/admin/ProfileAction.java
===================================================================
--- continuum-webapp/src/main/java/org/apache/maven/continuum/web/action/admin/ProfileAction.java	(revision 680259)
+++ continuum-webapp/src/main/java/org/apache/maven/continuum/web/action/admin/ProfileAction.java	(working copy)
@@ -105,6 +105,18 @@
         try
         {
             Profile stored = profileService.getProfile( profile.getId() );
+
+            if ( StringUtils.isEmpty( profile.getName() ) )
+            {
+                if ( stored != null )
+                {
+                    profile = stored;
+                }
+
+                this.addFieldError( "profile.name", getResourceBundle().getString( "profile.name.required" ) );
+                return INPUT;
+            }
+
             if ( stored == null )
             {
                 this.profile = profileService.addProfile( profile );
Index: continuum-webapp/src/main/resources/org/apache/maven/continuum/web/action/admin/ProfileAction-saveProfile-validation.xml
===================================================================
--- continuum-webapp/src/main/resources/org/apache/maven/continuum/web/action/admin/ProfileAction-saveProfile-validation.xml	(revision 680316)
+++ continuum-webapp/src/main/resources/org/apache/maven/continuum/web/action/admin/ProfileAction-saveProfile-validation.xml	(working copy)
@@ -1,30 +0,0 @@
-<!--
-  ~ Licensed to the Apache Software Foundation (ASF) under one
-  ~ or more contributor license agreements.  See the NOTICE file
-  ~ distributed with this work for additional information
-  ~ regarding copyright ownership.  The ASF licenses this file
-  ~ to you under the Apache License, Version 2.0 (the
-  ~ "License"); you may not use this file except in compliance
-  ~ with the License.  You may obtain a copy of the License at
-  ~
-  ~   http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing,
-  ~ software distributed under the License is distributed on an
-  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-  ~ KIND, either express or implied.  See the License for the
-  ~ specific language governing permissions and limitations
-  ~ under the License.
-  -->
-
-<!DOCTYPE validators PUBLIC
-    "-//OpenSymphony Group//XWork Validator 1.0.2//EN"
-    "http://www.opensymphony.com/xwork/xwork-validator-1.0.2.dtd">
-
-<validators>
-  <field name="profile.name">
-    <field-validator type="requiredstring">
-      <message key="profile.name.required"/>
-    </field-validator>
-  </field>
-</validators>
Index: continuum-webapp/src/main/resources/localization/Continuum.properties
===================================================================
--- continuum-webapp/src/main/resources/localization/Continuum.properties	(revision 680259)
+++ continuum-webapp/src/main/resources/localization/Continuum.properties	(working copy)
@@ -685,6 +685,7 @@
 profile.jdk.path.message = The JDK Path (JAVA_HOME value)
 profile.no.installations = No installations available
 profile.name.already.exists = A Build Environment with the same name already exists
+profile.name.required = You must define a name.
 
 # ----------------------------------------------------------------------
 # Page: Installations List
Index: continuum-webapp/src/main/resources/localization/Continuum_pt_BR.properties
===================================================================
--- continuum-webapp/src/main/resources/localization/Continuum_pt_BR.properties	(revision 680259)
+++ continuum-webapp/src/main/resources/localization/Continuum_pt_BR.properties	(working copy)
@@ -400,6 +400,7 @@
 profile.page.title         = Continuum - Build do Perfil
 profile.section.title      = Perfil
 profile.name.already.exists = A Profile with the same name already exists
+profile.name.required = Você deve definir um nome.
 
 profilesList.page.title    = Perfis de Build 
 profilesList.section.title = Perfis de Build
Index: continuum-webapp/src/main/resources/localization/Continuum_fr.properties
===================================================================
--- continuum-webapp/src/main/resources/localization/Continuum_fr.properties	(revision 680259)
+++ continuum-webapp/src/main/resources/localization/Continuum_fr.properties	(working copy)
@@ -685,6 +685,7 @@
 profile.jdk.path.message = Le Chemin du JDK (Valeur de JAVA_HOME)
 profile.no.installations = Aucune installation disponible
 profile.name.already.exists = Un environnement de Build avec le meme nom existe deja.
+profile.name.required = Vous devez sp\u00e9cifier un nom.
 
 # ----------------------------------------------------------------------
 # Page: Installations List

