本文整理了Java中org.apache.maven.continuum.model.project.Project.removeBuildDefinition()
方法的一些代码示例,展示了Project.removeBuildDefinition()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Project.removeBuildDefinition()
方法的具体详情如下:
包路径:org.apache.maven.continuum.model.project.Project
类名称:Project
方法名:removeBuildDefinition
[英]Method removeBuildDefinition
[中]方法removeBuildDefinition
代码示例来源:origin: org.apache.maven.continuum/continuum-core
public void removeBuildDefinition( int projectId, int buildDefinitionId )
throws ContinuumException
{
Project project = getProjectWithAllDetails( projectId );
BuildDefinition buildDefinition = getBuildDefinition( projectId, buildDefinitionId );
if ( buildDefinition != null )
{
project.removeBuildDefinition( buildDefinition );
updateProject( project );
}
}
代码示例来源:origin: org.apache.continuum/continuum-core
public void removeBuildDefinition( int projectId, int buildDefinitionId )
throws ContinuumException
{
Project project = getProjectWithAllDetails( projectId );
BuildDefinition buildDefinition = getBuildDefinition( projectId, buildDefinitionId );
if ( buildDefinition != null )
{
project.removeBuildDefinition( buildDefinition );
updateProject( project );
}
}
代码示例来源:origin: org.apache.continuum/continuum-core
public void execute( Map context )
throws Exception
{
BuildDefinition buildDefinition = getBuildDefinition( context );
int projectId = getProjectId( context );
Project project = projectDao.getProjectWithAllDetails( projectId );
// removing build definition from project doesn't effect anything if it is the default for the proejct, the
// default will just change automatically to the default build definition of the project group.
project.removeBuildDefinition( buildDefinition );
projectDao.updateProject( project );
}
}
代码示例来源:origin: org.apache.maven.continuum/continuum-core
public void execute( Map map )
throws Exception
{
BuildDefinition buildDefinition = getBuildDefinition( map );
int projectId = getProjectId( map );
Project project = store.getProjectWithAllDetails( projectId );
// removing build definition from project doesn't effect anything if it is the default for the proejct, the
// default will just change automatically to the default build definition of the project group.
project.removeBuildDefinition( buildDefinition );
store.updateProject( project );
}
}
内容来源于网络,如有侵权,请联系作者删除!