Skip to content

Commit f5f1ca8

Browse files
committed
Add @generated to http api (for generated code with java module system)
1 parent aac9d52 commit f5f1ca8

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

http-api/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44

55
<groupId>io.avaje</groupId>
66
<artifactId>avaje-http-api</artifactId>
7-
<version>1.1-SNAPSHOT</version>
7+
<version>1.1</version>
88

99
<parent>
1010
<groupId>org.avaje</groupId>
1111
<artifactId>java8-oss</artifactId>
12-
<version>2.2</version>
12+
<version>2.3</version>
1313
</parent>
1414

1515
<scm>
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package io.avaje.http.api;
2+
3+
/**
4+
* Marker for generated code.
5+
*/
6+
public @interface Generated {
7+
8+
/**
9+
* The name of the code generator.
10+
*/
11+
String value();
12+
}

0 commit comments

Comments
 (0)