001/** 002 * Copyright 2010-2013 The Kuali Foundation 003 * 004 * Licensed under the Educational Community License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.opensource.org/licenses/ecl2.php 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016package org.kuali.common.util.project; 017 018public final class KualiProjectConstants { 019 020 private KualiProjectConstants() { 021 } 022 023 // Kuali Group Id's 024 public static final String COMMON_GROUP_ID = "org.kuali.common"; 025 public static final String RICE_GROUP_ID = "org.kuali.rice"; 026 public static final String STUDENT_GROUP_ID = "org.kuali.student"; 027 public static final String MOBILITY_GROUP_ID = "org.kuali.mobility"; 028 public static final String OLE_GROUP_ID = "org.kuali.ole"; 029 public static final String KPME_GROUP_ID = "org.kuali.kpme"; 030 public static final String KFS_GROUP_ID = "org.kuali.kfs"; 031 public static final String READY_GROUP_ID = "org.kuali.ready"; 032 public static final String COEUS_GROUP_ID = "org.kuali.coeus"; 033 034}