to fix this, edit your maven's settings.xml and update the entry below:
C:\docume~1\consul~1\.m2\repository
you need a brain that works like a sponge to absorb all the kewl stuffs about java
C:\docume~1\consul~1\.m2\repository
package com.walgreens.sysconf.dao;
import java.util.List;
import com.walgreens.sysconf.domain.AbstractDomain;
import com.walgreens.sysconf.domain.AppEvent;
/**
* Standard DAO Interface for AppEvent Domain Object
*
* @author Edwin Quita
* @version 1.0
*/
public interface AppEventDAO {
/**
* Inserts an AppEvent Record
*
* @param ad AppEvent Domain Object
*/
public void insert(AbstractDomain ad);
/**
* Updates an AppEvent Record
*
* @param ad AppEvent Domain Object
*/
public void update(AbstractDomain ad);
/**
* Deletes an AppEvent Record
*
* @param id Record Id
*/
public void delete(long id);
/**
* Retrieves an AppEvent Record
*
* @param id Record Id
* @return AbstractDomain AppEvent domain object
*/
public AbstractDomain findById(long id);
/**
* Retrieves a List of AppEvent Records
*
* @return List A List of AppEvent domain objects
*/
public List<AppEvent> findAll();
/**
* Retrieves a List of AppEvent Records using AUTH_ID as filter
*
* @return List A List of AppEvent domain objects
*/
public List<AppEvent> findAllByAuthId(String authId);
}
org.apache.maven.plugins
maven-source-plugin
attach-sources
jar