Name Date Size #Lines LOC

..--

.github/H25-Apr-2025-121114

android-annotation-stubs/H25-Apr-2025-248145

common/H25-Apr-2025-9,0676,371

factory/H25-Apr-2025-7,8214,706

service/H25-Apr-2025-1,622925

util/H25-Apr-2025-3319

value/H25-Apr-2025-46,12834,246

.gitignoreH A D25-Apr-2025189 2721

Android.bpH A D25-Apr-2025409 1816

CONTRIBUTING.mdH A D25-Apr-20251.6 KiB3526

LICENSEH A D25-Apr-202511.1 KiB203169

METADATAH A D25-Apr-2025584 2422

MODULE_LICENSE_APACHE2HD25-Apr-20250

README.mdH A D25-Apr-20252.5 KiB6037

build-pom.xmlH A D25-Apr-2025812 2725

README.md

1# Auto
2
3[![Build Status](https://github.com/google/auto/actions/workflows/ci.yml/badge.svg)](https://github.com/google/auto/actions/workflows/ci.yml)
4
5A collection of source code generators for [Java][java].
6
7## Overview
8
9[Java][java] is full of code that is mechanical, repetitive, typically untested
10and sometimes the source of subtle bugs. _Sounds like a job for robots!_
11
12The Auto subprojects are a collection of code generators that automate those
13types of tasks. They create the code you would have written, but without
14the bugs.
15
16Save time.  Save code.  Save sanity.
17
18## Subprojects
19
20  * [AutoFactory] - JSR-330-compatible factories
21
22    [![Maven Central](https://img.shields.io/maven-central/v/com.google.auto.factory/auto-factory.svg)](https://mvnrepository.com/artifact/com.google.auto.factory/auto-factory)
23
24  * [AutoService] - Provider-configuration files for [`ServiceLoader`]
25
26    [![Maven Central](https://img.shields.io/maven-central/v/com.google.auto.service/auto-service.svg)](https://mvnrepository.com/artifact/com.google.auto.service/auto-service)
27
28  * [AutoValue] - Immutable [value-type] code generation for Java 7+.
29
30    [![Maven Central](https://img.shields.io/maven-central/v/com.google.auto.value/auto-value.svg)](https://mvnrepository.com/artifact/com.google.auto.value/auto-value)
31
32  * [Common] - Helper utilities for writing annotation processors.
33
34    [![Maven Central](https://img.shields.io/maven-central/v/com.google.auto/auto-common.svg)](https://mvnrepository.com/artifact/com.google.auto/auto-common)
35
36## License
37
38    Copyright 2013 Google LLC
39
40    Licensed under the Apache License, Version 2.0 (the "License");
41    you may not use this file except in compliance with the License.
42    You may obtain a copy of the License at
43
44       http://www.apache.org/licenses/LICENSE-2.0
45
46    Unless required by applicable law or agreed to in writing, software
47    distributed under the License is distributed on an "AS IS" BASIS,
48    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
49    See the License for the specific language governing permissions and
50    limitations under the License.
51
52[AutoFactory]: https://github.com/google/auto/tree/main/factory
53[AutoService]: https://github.com/google/auto/tree/main/service
54[AutoValue]: https://github.com/google/auto/tree/main/value
55[Common]: https://github.com/google/auto/tree/main/common
56
57[java]: https://en.wikipedia.org/wiki/Java_(programming_language)
58[value-type]: http://en.wikipedia.org/wiki/Value_object
59[`ServiceLoader`]: http://docs.oracle.com/javase/7/docs/api/java/util/ServiceLoader.html
60