Loading

我的"开发工具箱"

我使用的IDEA插件

Free Mybatis plugin

 

Alibaba Java Coding Guidelines

 

我的IDEA开发配置

配置Maven Runner

-DarchetypeCatalog=internal

 

 

 配置自动删除无用的导包

 

 

 配置编码方式

 

 

 

我常用的Java类库

hutools

guava

redission

curator

Lombok

 

我的Maven配置

配置settings.xml文件

阿里云镜像

<mirror>  
            <id>nexus-aliyun</id>  
            <mirrorOf>central</mirrorOf>  
            <name>Nexus aliyun</name>  
            <url>http://maven.aliyun.com/nexus/content/groups/public/</url>  
        </mirror>

我的gradle配置

.gradle/init.gradle

allprojects {
    repositories {
        maven { url 'http://maven.aliyun.com/nexus/content/repositories/google' }
        maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
        maven { url 'http://maven.aliyun.com/nexus/content/repositories/jcenter'}
        maven {
            url 'https://mirrors.huaweicloud.com/repository/maven/'
            credentials {
                username 'jameingh'
                password 'Iq-5P5_x-u'
            }
        }
    }
}

 

posted @ 2019-09-02 13:46  元宝爸爸  阅读(251)  评论(0编辑  收藏  举报