CCM NG: Package structure refactoring in ccm-cms
git-svn-id: https://svn.libreccm.org/ccm/ccm_ng@3699 8810af33-2d31-482b-a856-94f89814c4dfpull/2/head
parent
488d0b5b38
commit
94e29ca7ba
|
|
@ -22,13 +22,13 @@ import static org.librecms.article.ArticleConstants.*;
|
|||
|
||||
import org.hibernate.envers.Audited;
|
||||
|
||||
import org.libreccm.cms.contentsection.ContentItem;
|
||||
import org.librecms.contentsection.ContentItem;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Table;
|
||||
import org.libreccm.cms.contenttypes.GenericArticle;
|
||||
import org.librecms.contenttypes.GenericArticle;
|
||||
|
||||
/**
|
||||
* This type simply exposes the {@link GenericArticle} type from the
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
/**
|
||||
* Add your license here, for example LGPL
|
||||
*/
|
||||
package org.libreccm.cms;
|
||||
package org.librecms;
|
||||
|
||||
import org.libreccm.modules.CcmModule;
|
||||
import org.libreccm.modules.InitEvent;
|
||||
|
|
@ -16,7 +16,7 @@
|
|||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
||||
* MA 02110-1301 USA
|
||||
*/
|
||||
package org.libreccm.cms;
|
||||
package org.librecms;
|
||||
|
||||
/**
|
||||
*
|
||||
|
|
@ -16,11 +16,11 @@
|
|||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
||||
* MA 02110-1301 USA
|
||||
*/
|
||||
package org.libreccm.cms.contentsection;
|
||||
package org.librecms.contentsection;
|
||||
|
||||
import org.hibernate.envers.Audited;
|
||||
|
||||
import static org.libreccm.cms.CmsConstants.*;
|
||||
import static org.librecms.CmsConstants.*;
|
||||
|
||||
import org.libreccm.core.CcmObject;
|
||||
import org.libreccm.l10n.LocalizedString;
|
||||
|
|
@ -16,7 +16,7 @@
|
|||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
||||
* MA 02110-1301 USA
|
||||
*/
|
||||
package org.libreccm.cms.contentsection;
|
||||
package org.librecms.contentsection;
|
||||
|
||||
/**
|
||||
*
|
||||
|
|
@ -16,7 +16,7 @@
|
|||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
||||
* MA 02110-1301 USA
|
||||
*/
|
||||
package org.libreccm.cms.contentsection;
|
||||
package org.librecms.contentsection;
|
||||
|
||||
/**
|
||||
*
|
||||
|
|
@ -16,9 +16,9 @@
|
|||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
||||
* MA 02110-1301 USA
|
||||
*/
|
||||
package org.libreccm.cms.contentsection;
|
||||
package org.librecms.contentsection;
|
||||
|
||||
import static org.libreccm.cms.CmsConstants.*;
|
||||
import static org.librecms.CmsConstants.*;
|
||||
|
||||
import org.libreccm.core.Group;
|
||||
import org.libreccm.web.CcmApplication;
|
||||
|
|
@ -16,9 +16,9 @@
|
|||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
||||
* MA 02110-1301 USA
|
||||
*/
|
||||
package org.libreccm.cms.contentsection;
|
||||
package org.librecms.contentsection;
|
||||
|
||||
import static org.libreccm.cms.CmsConstants.*;
|
||||
import static org.librecms.CmsConstants.*;
|
||||
|
||||
import org.libreccm.core.CcmObject;
|
||||
import org.libreccm.l10n.LocalizedString;
|
||||
|
|
@ -16,7 +16,7 @@
|
|||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
||||
* MA 02110-1301 USA
|
||||
*/
|
||||
package org.libreccm.cms.contenttypes;
|
||||
package org.librecms.contenttypes;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Objects;
|
||||
|
|
@ -28,9 +28,9 @@ import javax.persistence.JoinTable;
|
|||
import javax.persistence.Table;
|
||||
import org.hibernate.envers.Audited;
|
||||
|
||||
import static org.libreccm.cms.CmsConstants.*;
|
||||
import static org.librecms.CmsConstants.*;
|
||||
|
||||
import org.libreccm.cms.contentsection.ContentItem;
|
||||
import org.librecms.contentsection.ContentItem;
|
||||
import org.libreccm.l10n.LocalizedString;
|
||||
|
||||
/**
|
||||
|
|
@ -1 +1 @@
|
|||
org.libreccm.cms.Cms
|
||||
org.librecms.Cms
|
||||
|
|
|
|||
|
|
@ -0,0 +1,4 @@
|
|||
groupId=${project.groupId}
|
||||
artifactId=${project.artifactId}
|
||||
version=${project.version}
|
||||
build.date=${timestamp}
|
||||
|
|
@ -1,7 +1,9 @@
|
|||
/*
|
||||
* ToDo: Add your license
|
||||
*/
|
||||
package org.libreccm.cms;
|
||||
package org.librecms;
|
||||
|
||||
import org.librecms.Cms;
|
||||
|
||||
import static org.hamcrest.CoreMatchers.*;
|
||||
|
||||
Loading…
Reference in New Issue