Update of /cvsroot/ts2-pm/ts2-pm/ts2-pm-artifact/src/main/java/net/sf/ts2/pm/artifact/deployer
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29222/ts2-pm-artifact/src/main/java/net/sf/ts2/pm/artifact/deployer
Modified Files:
ArtifactDeployer.java DefaultArtifactDeployer.java
Log Message:
model general usage
Index: ArtifactDeployer.java
===================================================================
RCS file: /cvsroot/ts2-pm/ts2-pm/ts2-pm-artifact/src/main/java/net/sf/ts2/pm/artifact/deployer/ArtifactDeployer.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** ArtifactDeployer.java 28 Apr 2005 17:55:59 -0000 1.1
--- ArtifactDeployer.java 27 May 2005 16:32:22 -0000 1.2
***************
*** 22,28 ****
import java.io.File;
- import net.sf.ts2.pm.artifact.Artifact;
import net.sf.ts2.pm.artifact.history.manager.ArtifactHistoryManager;
! import net.sf.ts2.pm.artifact.repository.ArtifactRepository;
/**
--- 22,28 ----
import java.io.File;
import net.sf.ts2.pm.artifact.history.manager.ArtifactHistoryManager;
! import net.sf.ts2.pm.model.Artifact;
! import net.sf.ts2.pm.model.Repository;
/**
***************
*** 31,40 ****
public interface ArtifactDeployer
{
! void deploy( String basedir, String finalName, Artifact artifact, ArtifactRepository deploymentRepository,
! ArtifactRepository localRepository )
throws ArtifactDeploymentException;
! void deploy( File source, Artifact artifact, ArtifactRepository deploymentRepository,
! ArtifactRepository localRepository )
throws ArtifactDeploymentException;
--- 31,40 ----
public interface ArtifactDeployer
{
! void deploy( String basedir, String finalName, Artifact artifact, Repository deploymentRepository,
! Repository localRepository )
throws ArtifactDeploymentException;
! void deploy( File source, Artifact artifact, Repository deploymentRepository,
! Repository localRepository )
throws ArtifactDeploymentException;
Index: DefaultArtifactDeployer.java
===================================================================
RCS file: /cvsroot/ts2-pm/ts2-pm/ts2-pm-artifact/src/main/java/net/sf/ts2/pm/artifact/deployer/DefaultArtifactDeployer.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** DefaultArtifactDeployer.java 28 Apr 2005 17:55:59 -0000 1.1
--- DefaultArtifactDeployer.java 27 May 2005 16:32:22 -0000 1.2
***************
*** 22,28 ****
import java.io.File;
- import net.sf.ts2.pm.artifact.Artifact;
import net.sf.ts2.pm.artifact.history.manager.ArtifactHistoryManager;
! import net.sf.ts2.pm.artifact.repository.ArtifactRepository;
/**
--- 22,28 ----
import java.io.File;
import net.sf.ts2.pm.artifact.history.manager.ArtifactHistoryManager;
! import net.sf.ts2.pm.model.Artifact;
! import net.sf.ts2.pm.model.Repository;
/**
***************
*** 58,63 ****
* @throws ArtifactDeploymentException
*/
! public void deploy(File source, Artifact artifact, ArtifactRepository deploymentRepository,
! ArtifactRepository localRepository) throws ArtifactDeploymentException
{
// TODO Auto-generated method stub
--- 58,63 ----
* @throws ArtifactDeploymentException
*/
! public void deploy(File source, Artifact artifact, Repository deploymentRepository,
! Repository localRepository) throws ArtifactDeploymentException
{
// TODO Auto-generated method stub
***************
*** 73,78 ****
* @throws ArtifactDeploymentException
*/
! public void deploy(String basedir, String finalName, Artifact artifact, ArtifactRepository deploymentRepository,
! ArtifactRepository localRepository) throws ArtifactDeploymentException
{
// TODO Auto-generated method stub
--- 73,78 ----
* @throws ArtifactDeploymentException
*/
! public void deploy(String basedir, String finalName, Artifact artifact, Repository deploymentRepository,
! Repository localRepository) throws ArtifactDeploymentException
{
// TODO Auto-generated method stub
|