Skip to content

Commit 4c8138d

Browse files
committed
Add Javadoc
1 parent 2970ce6 commit 4c8138d

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

pom.xml

+13
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,19 @@
167167
</execution>
168168
</executions>
169169
</plugin>
170+
<plugin>
171+
<groupId>org.apache.maven.plugins</groupId>
172+
<artifactId>maven-javadoc-plugin</artifactId>
173+
<version>3.11.2</version>
174+
<executions>
175+
<execution>
176+
<id>attach-javadocs</id>
177+
<goals>
178+
<goal>jar</goal>
179+
</goals>
180+
</execution>
181+
</executions>
182+
</plugin>
170183
<plugin>
171184
<groupId>org.apache.maven.plugins</groupId>
172185
<artifactId>maven-source-plugin</artifactId>

src/main/java/io/apitally/spring/UseApitally.java

+6
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@
88

99
import org.springframework.context.annotation.Import;
1010

11+
/**
12+
* Enables Apitally integration for a Spring Boot application.
13+
* Registers a filter that captures requests and responses, and creates an
14+
* ApitallyClient instance that handles background synchronization with
15+
* Apitally.
16+
*/
1117
@Target({ ElementType.TYPE })
1218
@Retention(RetentionPolicy.RUNTIME)
1319
@Import({ ApitallyAutoConfiguration.class })

0 commit comments

Comments
 (0)