This repository was archived by the owner on Jun 11, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +55
-2
lines changed
Expand file tree Collapse file tree 3 files changed +55
-2
lines changed Original file line number Diff line number Diff line change 1+ buildscript {
2+ repositories {
3+ jcenter()
4+ }
5+ dependencies {
6+ classpath ' com.novoda:bintray-release:0.3.4'
7+ }
8+ }
9+
10+ apply plugin : ' com.novoda.bintray-release'
11+
112dependencies {
213 testCompile ' junit:junit:4.11'
14+ }
15+
16+ publish {
17+ groupId = ' com.devindi.mapper'
18+ artifactId = ' library'
19+ publishVersion = ' 0.1'
20+ desc = ' An annotation processor for generating bean mappers'
21+ licences = [' MIT' ]
22+ website = ' https://github.com/devindi/mapper-generator'
323}
Original file line number Diff line number Diff line change 1+ buildscript {
2+ repositories {
3+ jcenter()
4+ }
5+ dependencies {
6+ classpath ' com.novoda:bintray-release:0.3.4'
7+
8+ }
9+ }
10+
11+ apply plugin : ' com.novoda.bintray-release'
12+
13+ repositories {
14+ maven {
15+ url ' https://dl.bintray.com/devindi/maven/'
16+ }
17+ }
18+
119dependencies {
2- compile project( ' :library' )
20+ compile ' com.devindi.mapper :library:0.1 '
321 compile ' com.squareup:javapoet:1.9.0'
22+ }
23+
24+ publish {
25+ groupId = ' com.devindi.mapper'
26+ artifactId = ' processor'
27+ publishVersion = ' 0.1.1'
28+ desc = ' An annotation processor for generating bean mappers'
29+ licences = [' MIT' ]
30+ website = ' https://github.com/devindi/mapper-generator'
431}
Original file line number Diff line number Diff line change @@ -14,7 +14,13 @@ apply plugin: 'net.ltgt.apt'
1414
1515mainClassName = ' com.example.Main'
1616
17+ repositories {
18+ maven {
19+ url ' https://dl.bintray.com/devindi/maven/'
20+ }
21+ }
22+
1723dependencies {
1824 compile project(' :library' )
19- apt project( ' :processor' )
25+ apt ' com.devindi.mapper :processor:0.1.1 '
2026}
You can’t perform that action at this time.
0 commit comments