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     */
016    package org.kuali.common.util.spring;
017    
018    import java.util.Properties;
019    
020    import org.kuali.common.util.MavenUtils;
021    import org.kuali.common.util.property.Constants;
022    import org.kuali.common.util.property.ProjectProperties;
023    import org.springframework.beans.factory.annotation.Autowired;
024    import org.springframework.beans.factory.annotation.Qualifier;
025    import org.springframework.context.annotation.Configuration;
026    import org.springframework.util.Assert;
027    
028    /**
029     * Enhance the wired in Maven properties and create a <code>ProjectProperties</code> bean from them.
030     */
031    @Configuration
032    public class MavenPropertySourceConfig extends AbstractPropertySourceConfig {
033    
034            @Autowired
035            @Qualifier(Constants.DEFAULT_MAVEN_PROPERTIES_BEAN_NAME)
036            Properties mavenProperties;
037    
038            @Override
039            protected ProjectProperties getProjectProperties() {
040    
041                    // Make sure the maven properties got wired in correctly
042                    Assert.notNull(mavenProperties, "mavenProperties are null");
043    
044                    // Add in org, group, home, and enhanced version properties
045                    MavenUtils.augmentProjectProperties(mavenProperties);
046    
047                    // Create a ProjectProperties pojo from the properties
048                    return MavenUtils.getMavenProjectProperties(mavenProperties);
049            }
050    
051    }