разработка для teamcity
This commit is contained in:
parent
0892d5786f
commit
5c700b9a90
@ -1,4 +1,4 @@
|
|||||||
package org.sadtech.bot.vcs.core.config.properties;
|
package org.sadtech.bot.vcs.bitbucket.app.config.property;
|
||||||
|
|
||||||
import lombok.Getter;
|
import lombok.Getter;
|
||||||
import lombok.Setter;
|
import lombok.Setter;
|
||||||
@ -6,8 +6,6 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
|
|||||||
import org.springframework.stereotype.Component;
|
import org.springframework.stereotype.Component;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Данные для конфигурации {@link SchedulerComments}
|
|
||||||
*
|
|
||||||
* @author upagge
|
* @author upagge
|
||||||
*/
|
*/
|
||||||
@Getter
|
@Getter
|
@ -4,11 +4,11 @@ import lombok.NonNull;
|
|||||||
import lombok.RequiredArgsConstructor;
|
import lombok.RequiredArgsConstructor;
|
||||||
import org.sadtech.basic.context.page.Sheet;
|
import org.sadtech.basic.context.page.Sheet;
|
||||||
import org.sadtech.basic.core.page.PaginationImpl;
|
import org.sadtech.basic.core.page.PaginationImpl;
|
||||||
|
import org.sadtech.bot.vcs.bitbucket.app.config.property.CommentSchedulerProperty;
|
||||||
import org.sadtech.bot.vcs.bitbucket.app.service.executor.DataScan;
|
import org.sadtech.bot.vcs.bitbucket.app.service.executor.DataScan;
|
||||||
import org.sadtech.bot.vcs.bitbucket.sdk.domain.CommentJson;
|
import org.sadtech.bot.vcs.bitbucket.sdk.domain.CommentJson;
|
||||||
import org.sadtech.bot.vcs.bitbucket.sdk.domain.Severity;
|
import org.sadtech.bot.vcs.bitbucket.sdk.domain.Severity;
|
||||||
import org.sadtech.bot.vcs.core.config.properties.BitbucketProperty;
|
import org.sadtech.bot.vcs.core.config.properties.BitbucketProperty;
|
||||||
import org.sadtech.bot.vcs.core.config.properties.CommentSchedulerProperty;
|
|
||||||
import org.sadtech.bot.vcs.core.config.properties.InitProperty;
|
import org.sadtech.bot.vcs.core.config.properties.InitProperty;
|
||||||
import org.sadtech.bot.vcs.core.domain.entity.Comment;
|
import org.sadtech.bot.vcs.core.domain.entity.Comment;
|
||||||
import org.sadtech.bot.vcs.core.domain.entity.PullRequest;
|
import org.sadtech.bot.vcs.core.domain.entity.PullRequest;
|
||||||
|
@ -6,5 +6,6 @@
|
|||||||
<include file="liquibase/v.2.0.0/2020-09-06-create-table.xml"/>
|
<include file="liquibase/v.2.0.0/2020-09-06-create-table.xml"/>
|
||||||
<include file="liquibase/v.2.0.0/2020-09-15-fix-task-comments.xml"/>
|
<include file="liquibase/v.2.0.0/2020-09-15-fix-task-comments.xml"/>
|
||||||
<include file="liquibase/v.2.0.0/2020-09-20-setting-notify.xml"/>
|
<include file="liquibase/v.2.0.0/2020-09-20-setting-notify.xml"/>
|
||||||
|
<include file="liquibase/v.2.0.0/2020-09-20-teamcity.xml"/>
|
||||||
|
|
||||||
</databaseChangeLog>
|
</databaseChangeLog>
|
@ -0,0 +1,20 @@
|
|||||||
|
<databaseChangeLog
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
|
||||||
|
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.1.xsd">
|
||||||
|
|
||||||
|
<changeSet id="2020-09-20-create-table-teamcity_builds" author="upagge">
|
||||||
|
<createTable tableName="teamcity_builds">
|
||||||
|
<column name="id" type="int">
|
||||||
|
<constraints primaryKey="true" nullable="false"/>
|
||||||
|
</column>
|
||||||
|
</createTable>
|
||||||
|
</changeSet>
|
||||||
|
|
||||||
|
<changeSet id="2020-09-20-create-table-teamcity-setting" author="upagge">
|
||||||
|
<createTable tableName="teamcity_setting">
|
||||||
|
<column name=""></column>
|
||||||
|
</createTable>
|
||||||
|
</changeSet>
|
||||||
|
|
||||||
|
</databaseChangeLog>
|
@ -18,7 +18,7 @@
|
|||||||
</appender>
|
</appender>
|
||||||
|
|
||||||
<root level="info">
|
<root level="info">
|
||||||
<appender-ref ref="STDOUT"/>
|
<appender-ref ref="FILE"/>
|
||||||
</root>
|
</root>
|
||||||
|
|
||||||
</configuration>
|
</configuration>
|
Loading…
Reference in New Issue
Block a user