# gradle-seed **Repository Path**: wxmlabs/gradle-seed ## Basic Information - **Project Name**: gradle-seed - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: seed - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2017-04-01 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README `gradle-seed` -- the seed for Gradle projects ==== 国内访问gradle官方分发点较慢。初始化工程浪费了大量的时间与精力。于是决定自建Gradle wrapper源并修改Gralde工程的配置repositories使用 开源中国镜像。以此作为种子工程,方便今后的工程构建。 使用方法 ---- ### 下载种子工程 直接使用git克隆(检出)仓库代码 ``` git clone https://git.oschina.net/wxmlabs/gradle-seed.git cd gradle-seed ``` 或,从网站下载zip包并解压缩。 ### 应用种子工程 创建新Git仓库 ``` git init git add . git commit -m "init with wxmLabs/gradle-seed" ``` 上传远程仓库 ``` git remote add origin git@git.oschina.net:your_group/your_project.git git push -u origin master ```