「Android/開発環境/AndroidStudio/mavenリポジトリ作成」の版間の差分
提供: 初心者エンジニアの簡易メモ
(ページの作成:「参考: https://qiita.com/CUTBOSS/items/b4f180d4824fdd50e91a」) |
|||
行1: | 行1: | ||
− | + | (未完成) | |
+ | |||
+ | library/build.gradle | ||
+ | def repo = new File(rootDir, "./repository") | ||
+ | apply plugin: 'maven' | ||
+ | uploadArchives { | ||
+ | repositories { | ||
+ | mavenDeployer { | ||
+ | repository url: "file://${repo.absolutePath}" | ||
+ | pom.version = '1.2.2' | ||
+ | pom.groupId = 'hoge.support' | ||
+ | pom.artifactId = 'review' | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | |||
+ | |||
+ | ==参考== | ||
https://qiita.com/CUTBOSS/items/b4f180d4824fdd50e91a | https://qiita.com/CUTBOSS/items/b4f180d4824fdd50e91a |
2018年8月2日 (木) 19:09時点における版
(未完成)
library/build.gradle
def repo = new File(rootDir, "./repository") apply plugin: 'maven' uploadArchives { repositories { mavenDeployer { repository url: "file://${repo.absolutePath}" pom.version = '1.2.2' pom.groupId = 'hoge.support' pom.artifactId = 'review' } } }