Package fr.openwide.maven.artifact.notifier.core.business.project.model

Examples of fr.openwide.maven.artifact.notifier.core.business.project.model.Project.addVersion()


      if (projectVersion == null) {
        projectVersion = new ProjectVersion(artifactVersion.getVersion());
        projectVersion.setStatus(ProjectVersionStatus.PUBLISHED_ON_MAVEN_CENTRAL);
        projectVersionService.create(projectVersion);
       
        project.addVersion(projectVersion);
        projectService.update(project);
      } else if (ProjectVersionStatus.IN_PROGRESS.equals(projectVersion.getStatus())) {
        projectVersion.setStatus(ProjectVersionStatus.PUBLISHED_ON_MAVEN_CENTRAL);
      }
      projectVersion.setLastUpdateDate(artifactVersion.getLastUpdateDate());
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.