Skip to content

Commit e1df34e

Browse files
committed
Add autoservice to the build
1 parent f5589c9 commit e1df34e

File tree

11 files changed

+45
-0
lines changed

11 files changed

+45
-0
lines changed

.idea/compiler.xml

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/libraries/auto_service.xml

Lines changed: 13 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

java/client/.classpath

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,7 @@
4343
<classpathentry kind="lib" path="/third-party/java/javaparser/javaparser-core-3.5.7.jar" sourcepath="/third-party/java/javaparser/javaparser-core-3.5.7-sources.jar"/>
4444
<classpathentry kind="lib" path="/third-party/java/okhttp3/okhttp-3.9.1.jar"/>
4545
<classpathentry kind="lib" path="/third-party/java/okio/okio-1.13.0.jar"/>
46+
<classpathentry kind="lib" path="/third-party/java/auto/auto-common-0.8.jar" sourcepath="/third-party/java/auto/auto-common-0.8-sources.jar"/>
47+
<classpathentry kind="lib" path="/third-party/java/service/auto-service-1.0-rc4.jar" sourcepath="/third-party/java/service/auto-service-1.0-rc4-sources.jar"/>
4648
<classpathentry kind="output" path="build/production"/>
4749
</classpath>

java/client/client.iml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444
<orderEntry type="library" name="javaparser" level="project" />
4545
<orderEntry type="library" name="okhttp" level="project" />
4646
<orderEntry type="library" scope="TEST" name="jetty-orig" level="project" />
47+
<orderEntry type="library" name="auto-service" level="project" />
4748
</component>
4849
<component name="sonarModuleSettings">
4950
<option name="alternativeWorkingDirPath" value="" />

java/server/server.iml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
<orderEntry type="library" name="mockito-core" level="project" />
2525
<orderEntry type="library" name="objenesis" level="project" />
2626
<orderEntry type="library" name="commons-httpclient" level="project" />
27+
<orderEntry type="library" name="auto-service" level="project" />
2728
</component>
2829
<component name="sonarModuleSettings">
2930
<option name="alternativeWorkingDirPath" value="" />

third_party/java/auto/BUCK

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
prebuilt_jar(
2+
name = 'auto-common',
3+
maven_coords = 'com.google.auto:auto-common:jar:0.8',
4+
binary_jar = 'auto-common-0.8.jar',
5+
source_jar = 'auto-common-0.8-sources.jar',
6+
deps = [
7+
'//third_party/java/guava:guava'
8+
],
9+
visibility = [
10+
'PUBLIC',
11+
],
12+
)
13+
Binary file not shown.
80.3 KB
Binary file not shown.

third_party/java/service/BUCK

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
prebuilt_jar(
2+
name = 'auto-service',
3+
maven_coords = 'com.google.auto.service:auto-service:jar:1.0-rc4',
4+
binary_jar = 'auto-service-1.0-rc4.jar',
5+
source_jar = 'auto-service-1.0-rc4-sources.jar',
6+
deps = [
7+
'//third_party/java/auto:auto-common',
8+
'//third_party/java/guava:guava'
9+
],
10+
visibility = ['PUBLIC'],
11+
)
12+
Binary file not shown.

0 commit comments

Comments
 (0)