### Summary
> this is a maven plugin that simplify container deployment. it will generate `kubernetes-deploy.yaml`、`Dockerfile` according to your configuration
### Requirement
- your project should be a Spring Boot project
- your project will running in container
### How to use
**First** add `integration-maven-plugin`  in the `pom.xml` , it must be added under the  `spring-boot-maven-plugin` . like this
```.xml
    
        
            
                org.springframework.boot
                spring-boot-maven-plugin
            
            
                com.schbrain.maven.plugin
                integration-maven-plugin
            
        
    
```
**Second** specify build-script repository. 
```.xml
  git@gitlab.xxx.com:tools/build-script.git
  main
```
---
The completion config like this:
```.xml
    
        
            
                org.springframework.boot
                spring-boot-maven-plugin
            
            
                com.schbrain.maven.plugin
                integration-maven-plugin
                
                    git@gitlab.xxx.com:tools/build-script.git
                    main
                
            
        
    
```