# study **Repository Path**: wk_only_xj/study ## Basic Information - **Project Name**: study - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-04-22 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # API初始化 1. 项目clone下后,修改application-dev.properties内参数接口, 2. 打包用的配置文件为application-prod.properties # 目录结构说明 1. lib -------- 第三方库存放地址 2. doc -------- 文档,ddl等文件 # 使用方法 ``` 在~/.gradle/gradle.properties加入 artifactory_contextUrl=http://maven.wwhis.com/artifactory artifactory_username=repo artifactory_password=repo 在build.gradle中加入 repositories { maven { url "${artifactory_contextUrl}/libs-release-local" credentials { username = "${artifactory_username}" password = "${artifactory_password}" } } } ```