-
Notifications
You must be signed in to change notification settings - Fork 0
Release version 1.0.0
Yash edited this page Mar 31, 2026
·
5 revisions
Far Jar Issue:
java.lang.IllegalStateException: Unable to read meta-data for class com.github.yash777.apirequestlogging.autoconfigure.ApiRequestLoggingAutoConfiguration
at org.springframework.boot.autoconfigure.AutoConfigurationSorter$AutoConfigurationClass.getAnnotationMetadata(AutoConfigurationSorter.java:237) ~[spring-boot-autoconfigure-2.7.18.jar:2.7.18]
Caused by: java.io.FileNotFoundException: class path resource [com/github/yash777/apirequestlogging/autoconfigure/ApiRequestLoggingAutoConfiguration.class] cannot be opened because it does not exist
| Fat JAR (what was published) | Fat JAR (vs) Plain library JAR |
|---|---|
Your JAR was packaged as a Spring Boot executable fat JAR (BOOT-INF/classes/...) instead of a plain library JAR (com/... at the root)
|
![]() |
Spring Boot's auto-configuration scanner looks for classes at the root of the JAR — it cannot find them inside BOOT-INF/classes/.The root cause is one thing: spring-boot-maven-plugin's repackage goal ran and converted your plain library JAR into an executable fat JAR. The fix is a single pom.xml change.
The one-line fix in pom.xml
Add <skip>true</skip> to the spring-boot-maven-plugin configuration:
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<skip>true</skip> <!-- ← ADD THIS — prevents repackage into fat JAR -->
<!-- keep your existing jvmArguments for mvn spring-boot:run -->
<mainClass>
com.github.yash777.apirequestlogging.demo.DemoApplication
</mainClass>
<jvmArguments>
-Dserver.servlet.context-path=/api-request-logging-demo
...
</jvmArguments>
</configuration>
</plugin>You can download form any of these Central Repositories like ,
- Sonatype nexus Central Repository, SeleniumWebDrivers, api-request-logging-spring-boot-starter
- Maven Repository Central
Downloading from Central Repositories
The artifact is published and available on:
-
Sonatype Central (new portal)
- Repository search — browse all artifacts under io.github.yash-777
- api-request-logging-spring-boot-starter — current artifact
- SeleniumWebDrivers — separate project
-
Maven Central (repo1 — the canonical download mirror)
- api-request-logging-spring-boot-starter 1.0.0 directory
- mvnrepository.com listing ← may take 1–2 hours to index after first publish
SeleniumWebDrivers (separate project, different groupId casing)
MVN Log:
mvn clean verify -P release 1.0.0
mvn clean verify -P release
C:\Yashwanth\WorkSetup\API_Request_Logging>mvn clean verify -P release
[INFO] Scanning for projects...
[INFO] Inspecting build with total of 1 modules
[INFO] Installing Central Publishing features
[INFO]
[INFO] -----< io.github.yash-777:api-request-logging-spring-boot-starter >-----
[INFO] Building io.github.yash-777:api-request-logging-spring-boot-starter 1.0.0
[INFO] from pom.xml
[INFO] --------------------------------[ jar ]---------------------------------
[INFO]
[INFO] --- clean:3.0.0:clean (default-clean) @ api-request-logging-spring-boot-starter ---
[INFO] Deleting C:\Yashwanth\WorkSetup\API_Request_Logging\target
[INFO]
[INFO] --- resources:3.0.1:resources (default-resources) @ api-request-logging-spring-boot-starter ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO] Copying 2 resources
[INFO]
[INFO] --- compiler:3.13.0:compile (default-compile) @ api-request-logging-spring-boot-starter ---
[INFO] Recompiling the module because of changed source code.
[INFO] Compiling 19 source files with javac [debug parameters target 8] to target\classes
[INFO]
[INFO] --- resources:3.0.1:testResources (default-testResources) @ api-request-logging-spring-boot-starter ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory C:\Yashwanth\WorkSetup\API_Request_Logging\src\test\resources
[INFO]
[INFO] --- compiler:3.13.0:testCompile (default-testCompile) @ api-request-logging-spring-boot-starter ---
[INFO] Recompiling the module because of changed dependency.
[INFO]
[INFO] --- surefire:3.2.5:test (default-test) @ api-request-logging-spring-boot-starter ---
[INFO]
[INFO] --- jar:3.0.2:jar (default-jar) @ api-request-logging-spring-boot-starter ---
[INFO] Building jar: C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.0.jar
[INFO]
[INFO] --- source:3.3.1:jar-no-fork (attach-sources) @ api-request-logging-spring-boot-starter ---
[INFO] Building jar: C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.0-sources.jar
[INFO]
[INFO] --- javadoc:3.6.3:jar (attach-javadocs) @ api-request-logging-spring-boot-starter ---
[INFO] No previous run data found, generating javadoc.
[INFO]
Loading source files for package com.github.yash777.apirequestlogging.autoconfigure...
Loading source files for package com.github.yash777.apirequestlogging.collector...
Loading source files for package com.github.yash777.apirequestlogging.demo.condition...
Loading source files for package com.github.yash777.apirequestlogging.demo.controller...
Loading source files for package com.github.yash777.apirequestlogging.demo...
Loading source files for package com.github.yash777.apirequestlogging.demo.service...
Loading source files for package com.github.yash777.apirequestlogging.filter...
Loading source files for package com.github.yash777.apirequestlogging.properties...
Loading source files for package com.github.yash777.apirequestlogging.util...
Constructing Javadoc information...
Standard Doclet version 1.8.0_482-482
Building tree for all the packages and classes...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\autoconfigure\ApiRequestLoggingAutoConfiguration.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\collector\RequestLogCollector.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\condition\ConditionalOnDemoEnvironment.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\condition\DemoEnvironmentCondition.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\condition\DummyBeanCondition.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\controller\OrderController.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\controller\OrderRequest.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\controller\OrderResponse.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\controller\PaymentController.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\DemoApplication.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\DemoContextInitializer.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\service\OrderService.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\service\PaymentRequest.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\service\PaymentResponse.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\service\PaymentService.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\filter\ApiLoggingFilter.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\filter\RequestBodyCachingFilter.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\properties\ApiRequestLoggingProperties.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\util\TimestampUtils.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\overview-frame.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\autoconfigure\package-frame.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\autoconfigure\package-summary.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\autoconfigure\package-tree.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\collector\package-frame.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\collector\package-summary.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\collector\package-tree.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\package-frame.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\package-summary.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\package-tree.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\condition\package-frame.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\condition\package-summary.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\condition\package-tree.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\controller\package-frame.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\controller\package-summary.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\controller\package-tree.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\service\package-frame.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\service\package-summary.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\service\package-tree.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\filter\package-frame.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\filter\package-summary.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\filter\package-tree.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\properties\package-frame.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\properties\package-summary.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\properties\package-tree.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\util\package-frame.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\util\package-summary.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\util\package-tree.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\constant-values.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\autoconfigure\class-use\ApiRequestLoggingAutoConfiguration.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\collector\class-use\RequestLogCollector.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\condition\class-use\DummyBeanCondition.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\condition\class-use\DemoEnvironmentCondition.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\condition\class-use\ConditionalOnDemoEnvironment.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\controller\class-use\PaymentController.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\controller\class-use\OrderResponse.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\controller\class-use\OrderRequest.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\controller\class-use\OrderController.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\class-use\DemoContextInitializer.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\class-use\DemoApplication.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\service\class-use\PaymentService.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\service\class-use\PaymentResponse.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\service\class-use\PaymentRequest.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\service\class-use\OrderService.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\filter\class-use\RequestBodyCachingFilter.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\filter\class-use\ApiLoggingFilter.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\properties\class-use\ApiRequestLoggingProperties.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\util\class-use\TimestampUtils.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\autoconfigure\package-use.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\collector\package-use.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\package-use.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\condition\package-use.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\controller\package-use.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\service\package-use.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\filter\package-use.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\properties\package-use.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\util\package-use.html...
Building index for all the packages and classes...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\overview-tree.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\index-all.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\deprecated-list.html...
Building index for all classes...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\allclasses-frame.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\allclasses-noframe.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\index.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\overview-summary.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\help-doc.html...
20 warnings
[WARNING] Javadoc Warnings
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\collector\RequestLogCollector.java:145: warning - Missing closing '}' character for inline tag: "{@code"
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\collector\RequestLogCollector.java:145: warning - @Service is an unknown tag.
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\collector\RequestLogCollector.java:145: warning - @Autowired is an unknown tag.
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\collector\RequestLogCollector.java:277: warning - #EXCEPTION_MAX_LINES (referenced by @value tag) is an unknown reference.
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\collector\RequestLogCollector.java:277: warning - #EXCEPTION_MAX_LINES (referenced by @value tag) is an unknown reference.
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\collector\RequestLogCollector.java:485: warning - #EXCEPTION_MAX_LINES (referenced by @value tag) is an unknown reference.
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\collector\RequestLogCollector.java:485: warning - #EXCEPTION_MAX_LINES (referenced by @value tag) is an unknown reference.
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\collector\RequestLogCollector.java:485: warning - #EXCEPTION_MAX_LINES (referenced by @value tag) is an unknown reference.
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\demo\condition\ConditionalOnDemoEnvironment.java:169: warning - Tag @link: reference not found: DemoApplication#main(String[])
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\demo\condition\ConditionalOnDemoEnvironment.java:169: warning - Tag @link: reference not found: DemoApplication
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\demo\condition\ConditionalOnDemoEnvironment.java:169: warning - Tag @see: reference not found: DemoApplication#main(String[])
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\demo\condition\ConditionalOnDemoEnvironment.java:169: warning - Tag @see: reference not found: DemoApplication#getNonConsumer()
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\demo\controller\PaymentController.java:66: warning - Tag @link: reference not found: OrderService
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\demo\DemoContextInitializer.java:57: warning - @SpringBootTest is an unknown tag.
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\demo\DemoContextInitializer.java:57: warning - @Conditional is an unknown tag.
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\demo\DemoContextInitializer.java:57: warning - @Autowired is an unknown tag.
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\filter\ApiLoggingFilter.java:85: warning - Tag @link: reference not found: FilterOrderConfig
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\filter\ApiLoggingFilter.java:85: warning - Tag @link: reference not found: FilterOrderConfig
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\util\TimestampUtils.java:82: warning - @example is an unknown tag.
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\util\TimestampUtils.java:120: warning - @example is an unknown tag.
[INFO] Building jar: C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.0-javadoc.jar
[INFO]
[INFO] --- spring-boot:2.0.1.RELEASE:repackage (default) @ api-request-logging-spring-boot-starter ---
[INFO]
[INFO] --- gpg:3.2.4:sign (sign-artifacts) @ api-request-logging-spring-boot-starter ---
[WARNING] Parameter 'passphraseServerId' (user property 'gpg.passphraseServerId') is deprecated: Do not use this configuration, it may leak sensitive information. Rely on gpg-agent or env variables instead.
[WARNING]
[WARNING] W A R N I N G
[WARNING]
[WARNING] Do not store passphrase in any file (disk or SCM repository),
[WARNING] instead rely on GnuPG agent or provide passphrase in
[WARNING] MAVEN_GPG_PASSPHRASE environment variable for batch mode.
[WARNING]
[WARNING] Sensitive content loaded from settings.xml
[WARNING]
[INFO] Signer 'gpg' is signing 4 files with key 54673F57962DC34B
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 11.174 s
[INFO] Finished at: 2026-03-30T22:01:12+05:30
[INFO] ------------------------------------------------------------------------
mvn clean deploy -P release 1.0.0, 1.0.1
1.0.1
C:\Yashwanth\WorkSetup\API_Request_Logging>mvn clean deploy -P release
[INFO] Scanning for projects...
[INFO] Inspecting build with total of 1 modules
[INFO] Installing Central Publishing features
[INFO]
[INFO] -----< io.github.yash-777:api-request-logging-spring-boot-starter >-----
[INFO] Building io.github.yash-777:api-request-logging-spring-boot-starter 1.0.1
[INFO] from pom.xml
[INFO] --------------------------------[ jar ]---------------------------------
[INFO]
[INFO] --- clean:3.0.0:clean (default-clean) @ api-request-logging-spring-boot-starter ---
[INFO] Deleting C:\Yashwanth\WorkSetup\API_Request_Logging\target
[INFO]
[INFO] --- resources:3.0.1:resources (default-resources) @ api-request-logging-spring-boot-starter ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO] Copying 2 resources
[INFO]
[INFO] --- compiler:3.13.0:compile (default-compile) @ api-request-logging-spring-boot-starter ---
[INFO] Recompiling the module because of changed source code.
[INFO] Compiling 18 source files with javac [debug parameters target 8] to target\classes
[INFO]
[INFO] --- resources:3.0.1:testResources (default-testResources) @ api-request-logging-spring-boot-starter ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory C:\Yashwanth\WorkSetup\API_Request_Logging\src\test\resources
[INFO]
[INFO] --- compiler:3.13.0:testCompile (default-testCompile) @ api-request-logging-spring-boot-starter ---
[INFO] Recompiling the module because of changed dependency.
[INFO]
[INFO] --- surefire:3.2.5:test (default-test) @ api-request-logging-spring-boot-starter ---
[INFO]
[INFO] --- jar:3.0.2:jar (default-jar) @ api-request-logging-spring-boot-starter ---
[INFO] Building jar: C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.1.jar
[INFO]
[INFO] --- source:3.3.1:jar-no-fork (attach-sources) @ api-request-logging-spring-boot-starter ---
[INFO] Building jar: C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.1-sources.jar
[INFO]
[INFO] --- javadoc:3.6.3:jar (attach-javadocs) @ api-request-logging-spring-boot-starter ---
[INFO] No previous run data found, generating javadoc.
[INFO]
Loading source files for package com.github.yash777.apirequestlogging.autoconfigure...
Loading source files for package com.github.yash777.apirequestlogging.collector...
Loading source files for package com.github.yash777.apirequestlogging.demo.condition...
Loading source files for package com.github.yash777.apirequestlogging.demo.controller...
Loading source files for package com.github.yash777.apirequestlogging.demo...
Loading source files for package com.github.yash777.apirequestlogging.demo.service...
Loading source files for package com.github.yash777.apirequestlogging.filter...
Loading source files for package com.github.yash777.apirequestlogging.properties...
Loading source files for package com.github.yash777.apirequestlogging.util...
Constructing Javadoc information...
Standard Doclet version 1.8.0_482-482
Building tree for all the packages and classes...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\autoconfigure\ApiRequestLoggingAutoConfiguration.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\collector\RequestLogCollector.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\condition\ConditionalOnDemoEnvironment.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\condition\DemoEnvironmentCondition.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\controller\OrderController.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\controller\OrderRequest.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\controller\OrderResponse.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\controller\PaymentController.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\DemoApplication.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\DemoContextInitializer.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\service\OrderService.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\service\PaymentRequest.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\service\PaymentResponse.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\service\PaymentService.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\filter\ApiLoggingFilter.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\filter\RequestBodyCachingFilter.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\properties\ApiRequestLoggingProperties.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\util\TimestampUtils.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\overview-frame.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\autoconfigure\package-frame.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\autoconfigure\package-summary.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\autoconfigure\package-tree.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\collector\package-frame.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\collector\package-summary.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\collector\package-tree.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\package-frame.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\package-summary.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\package-tree.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\condition\package-frame.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\condition\package-summary.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\condition\package-tree.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\controller\package-frame.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\controller\package-summary.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\controller\package-tree.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\service\package-frame.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\service\package-summary.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\service\package-tree.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\filter\package-frame.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\filter\package-summary.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\filter\package-tree.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\properties\package-frame.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\properties\package-summary.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\properties\package-tree.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\util\package-frame.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\util\package-summary.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\util\package-tree.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\constant-values.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\autoconfigure\class-use\ApiRequestLoggingAutoConfiguration.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\collector\class-use\RequestLogCollector.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\condition\class-use\DemoEnvironmentCondition.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\condition\class-use\ConditionalOnDemoEnvironment.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\controller\class-use\PaymentController.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\controller\class-use\OrderResponse.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\controller\class-use\OrderRequest.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\controller\class-use\OrderController.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\class-use\DemoContextInitializer.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\class-use\DemoApplication.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\service\class-use\PaymentService.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\service\class-use\PaymentResponse.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\service\class-use\PaymentRequest.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\service\class-use\OrderService.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\filter\class-use\RequestBodyCachingFilter.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\filter\class-use\ApiLoggingFilter.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\properties\class-use\ApiRequestLoggingProperties.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\util\class-use\TimestampUtils.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\autoconfigure\package-use.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\collector\package-use.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\package-use.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\condition\package-use.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\controller\package-use.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\service\package-use.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\filter\package-use.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\properties\package-use.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\util\package-use.html...
Building index for all the packages and classes...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\overview-tree.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\index-all.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\deprecated-list.html...
Building index for all classes...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\allclasses-frame.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\allclasses-noframe.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\index.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\overview-summary.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\help-doc.html...
22 warnings
[WARNING] Javadoc Warnings
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\collector\RequestLogCollector.java:145: warning - Missing closing '}' character for inline tag: "{@code"
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\collector\RequestLogCollector.java:145: warning - @Service is an unknown tag.
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\collector\RequestLogCollector.java:145: warning - @Autowired is an unknown tag.
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\collector\RequestLogCollector.java:277: warning - #EXCEPTION_MAX_LINES (referenced by @value tag) is an unknown reference.
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\collector\RequestLogCollector.java:277: warning - #EXCEPTION_MAX_LINES (referenced by @value tag) is an unknown reference.
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\collector\RequestLogCollector.java:485: warning - #EXCEPTION_MAX_LINES (referenced by @value tag) is an unknown reference.
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\collector\RequestLogCollector.java:485: warning - #EXCEPTION_MAX_LINES (referenced by @value tag) is an unknown reference.
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\collector\RequestLogCollector.java:485: warning - #EXCEPTION_MAX_LINES (referenced by @value tag) is an unknown reference.
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\demo\condition\ConditionalOnDemoEnvironment.java:133: warning - Tag @link: reference not found: DemoApplication#main(String[])
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\demo\condition\ConditionalOnDemoEnvironment.java:133: warning - Tag @link: reference not found: DemoApplication#getNonConsumer()
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\demo\condition\ConditionalOnDemoEnvironment.java:133: warning - Tag @link: reference not found: DemoApplication#main(String[])
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\demo\condition\ConditionalOnDemoEnvironment.java:133: warning - Tag @see: reference not found: DemoApplication#main(String[])
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\demo\condition\ConditionalOnDemoEnvironment.java:133: warning - Tag @see: reference not found: DemoApplication#getNonConsumer()
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\demo\controller\PaymentController.java:66: warning - Tag @link: reference not found: OrderService
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\demo\DemoApplication.java:153: warning - Tag @link: reference not found: DemoEnvironmentCondition#matches
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\demo\DemoContextInitializer.java:57: warning - @SpringBootTest is an unknown tag.
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\demo\DemoContextInitializer.java:57: warning - @Conditional is an unknown tag.
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\demo\DemoContextInitializer.java:57: warning - @Autowired is an unknown tag.
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\filter\ApiLoggingFilter.java:85: warning - Tag @link: reference not found: FilterOrderConfig
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\filter\ApiLoggingFilter.java:85: warning - Tag @link: reference not found: FilterOrderConfig
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\util\TimestampUtils.java:82: warning - @example is an unknown tag.
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\util\TimestampUtils.java:120: warning - @example is an unknown tag.
[INFO] Building jar: C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.1-javadoc.jar
[INFO]
[INFO] --- spring-boot:2.0.1.RELEASE:repackage (default) @ api-request-logging-spring-boot-starter ---
[INFO]
[INFO] --- gpg:3.2.4:sign (sign-artifacts) @ api-request-logging-spring-boot-starter ---
[WARNING] Parameter 'passphraseServerId' (user property 'gpg.passphraseServerId') is deprecated: Do not use this configuration, it may leak sensitive information. Rely on gpg-agent or env variables instead.
[WARNING]
[WARNING] W A R N I N G
[WARNING]
[WARNING] Do not store passphrase in any file (disk or SCM repository),
[WARNING] instead rely on GnuPG agent or provide passphrase in
[WARNING] MAVEN_GPG_PASSPHRASE environment variable for batch mode.
[WARNING]
[WARNING] Sensitive content loaded from settings.xml
[WARNING]
[INFO] Signer 'gpg' is signing 4 files with key 54673F57962DC34B
[INFO]
[INFO] --- install:2.5.2:install (default-install) @ api-request-logging-spring-boot-starter ---
[INFO] Installing C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.1.jar to C:\Users\srika\.m2\repository\io\github\yash-777\api-request-logging-spring-boot-starter\1.0.1\api-request-logging-spring-boot-starter-1.0.1.jar
[INFO] Installing C:\Yashwanth\WorkSetup\API_Request_Logging\pom.xml to C:\Users\srika\.m2\repository\io\github\yash-777\api-request-logging-spring-boot-starter\1.0.1\api-request-logging-spring-boot-starter-1.0.1.pom
[INFO] Installing C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.1-sources.jar to C:\Users\srika\.m2\repository\io\github\yash-777\api-request-logging-spring-boot-starter\1.0.1\api-request-logging-spring-boot-starter-1.0.1-sources.jar
[INFO] Installing C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.1-javadoc.jar to C:\Users\srika\.m2\repository\io\github\yash-777\api-request-logging-spring-boot-starter\1.0.1\api-request-logging-spring-boot-starter-1.0.1-javadoc.jar
[INFO] Installing C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.1.jar.asc to C:\Users\srika\.m2\repository\io\github\yash-777\api-request-logging-spring-boot-starter\1.0.1\api-request-logging-spring-boot-starter-1.0.1.jar.asc
[INFO] Installing C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.1.pom.asc to C:\Users\srika\.m2\repository\io\github\yash-777\api-request-logging-spring-boot-starter\1.0.1\api-request-logging-spring-boot-starter-1.0.1.pom.asc
[INFO] Installing C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.1-sources.jar.asc to C:\Users\srika\.m2\repository\io\github\yash-777\api-request-logging-spring-boot-starter\1.0.1\api-request-logging-spring-boot-starter-1.0.1-sources.jar.asc
[INFO] Installing C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.1-javadoc.jar.asc to C:\Users\srika\.m2\repository\io\github\yash-777\api-request-logging-spring-boot-starter\1.0.1\api-request-logging-spring-boot-starter-1.0.1-javadoc.jar.asc
[INFO]
[INFO] --- central-publishing:0.9.0:publish (injected-central-publishing) @ api-request-logging-spring-boot-starter ---
[INFO] Using Central baseUrl: https://central.sonatype.com
[INFO] Using credentials from server id central in settings.xml
[INFO] Using Usertoken auth, with namecode: JEsK3Q
[INFO] Staging 7 files
[INFO] Staging C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.1.jar
[INFO] Installing C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.1.jar to C:\Yashwanth\WorkSetup\API_Request_Logging\target\central-staging\io\github\yash-777\api-request-logging-spring-boot-starter\1.0.1\api-request-logging-spring-boot-starter-1.0.1.jar
[INFO] Installing C:\Yashwanth\WorkSetup\API_Request_Logging\pom.xml to C:\Yashwanth\WorkSetup\API_Request_Logging\target\central-staging\io\github\yash-777\api-request-logging-spring-boot-starter\1.0.1\api-request-logging-spring-boot-starter-1.0.1.pom
[INFO] Staging C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.1-sources.jar
[INFO] Installing C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.1-sources.jar to C:\Yashwanth\WorkSetup\API_Request_Logging\target\central-staging\io\github\yash-777\api-request-logging-spring-boot-starter\1.0.1\api-request-logging-spring-boot-starter-1.0.1-sources.jar
[INFO] Staging C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.1-javadoc.jar
[INFO] Installing C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.1-javadoc.jar to C:\Yashwanth\WorkSetup\API_Request_Logging\target\central-staging\io\github\yash-777\api-request-logging-spring-boot-starter\1.0.1\api-request-logging-spring-boot-starter-1.0.1-javadoc.jar
[INFO] Staging C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.1.jar.asc
[INFO] Installing C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.1.jar.asc to C:\Yashwanth\WorkSetup\API_Request_Logging\target\central-staging\io\github\yash-777\api-request-logging-spring-boot-starter\1.0.1\api-request-logging-spring-boot-starter-1.0.1.jar.asc
[INFO] Staging C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.1.pom.asc
[INFO] Installing C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.1.pom.asc to C:\Yashwanth\WorkSetup\API_Request_Logging\target\central-staging\io\github\yash-777\api-request-logging-spring-boot-starter\1.0.1\api-request-logging-spring-boot-starter-1.0.1.pom.asc
[INFO] Staging C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.1-sources.jar.asc
[INFO] Installing C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.1-sources.jar.asc to C:\Yashwanth\WorkSetup\API_Request_Logging\target\central-staging\io\github\yash-777\api-request-logging-spring-boot-starter\1.0.1\api-request-logging-spring-boot-starter-1.0.1-sources.jar.asc
[INFO] Staging C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.1-javadoc.jar.asc
[INFO] Installing C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.1-javadoc.jar.asc to C:\Yashwanth\WorkSetup\API_Request_Logging\target\central-staging\io\github\yash-777\api-request-logging-spring-boot-starter\1.0.1\api-request-logging-spring-boot-starter-1.0.1-javadoc.jar.asc
[INFO] Pre Bundling - deleted C:\Yashwanth\WorkSetup\API_Request_Logging\target\central-staging\io\github\yash-777\api-request-logging-spring-boot-starter\maven-metadata-central-staging.xml
[INFO] Generate checksums for dir: io\github\yash-777\api-request-logging-spring-boot-starter\1.0.1
[INFO] Going to create C:\Yashwanth\WorkSetup\API_Request_Logging\target\central-publishing\central-bundle.zip by bundling content at C:\Yashwanth\WorkSetup\API_Request_Logging\target\central-staging
[INFO] Created bundle successfully C:\Yashwanth\WorkSetup\API_Request_Logging\target\central-staging\central-bundle.zip
[INFO] Going to upload C:\Yashwanth\WorkSetup\API_Request_Logging\target\central-publishing\central-bundle.zip
[INFO] Uploaded bundle successfully, deployment name: api-request-logging-spring-boot-starter-1.0.1, deploymentId: 6cdb71c2-0822-4724-9da5-5e4c04c827d0. Deployment will publish automatically
[INFO] Waiting until Deployment 6cdb71c2-0822-4724-9da5-5e4c04c827d0 is published
[INFO] Deployment 6cdb71c2-0822-4724-9da5-5e4c04c827d0 was successfully published
Packages
- https://repo1.maven.org/maven2/io/github/yash-777/api-request-logging-spring-boot-starter/1.0.1/
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 15:28 min
[INFO] Finished at: 2026-03-31T18:35:00+05:30
[INFO] ------------------------------------------------------------------------
1.0.0
C:\Yashwanth\WorkSetup\API_Request_Logging>mvn clean deploy -P release
[INFO] Scanning for projects...
[INFO] Inspecting build with total of 1 modules
[INFO] Installing Central Publishing features
[INFO]
[INFO] -----< io.github.yash-777:api-request-logging-spring-boot-starter >-----
[INFO] Building io.github.yash-777:api-request-logging-spring-boot-starter 1.0.0
[INFO] from pom.xml
[INFO] --------------------------------[ jar ]---------------------------------
[INFO]
[INFO] --- clean:3.0.0:clean (default-clean) @ api-request-logging-spring-boot-starter ---
[INFO] Deleting C:\Yashwanth\WorkSetup\API_Request_Logging\target
[INFO]
[INFO] --- resources:3.0.1:resources (default-resources) @ api-request-logging-spring-boot-starter ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO] Copying 2 resources
[INFO]
[INFO] --- compiler:3.13.0:compile (default-compile) @ api-request-logging-spring-boot-starter ---
[INFO] Recompiling the module because of changed source code.
[INFO] Compiling 19 source files with javac [debug parameters target 8] to target\classes
[INFO]
[INFO] --- resources:3.0.1:testResources (default-testResources) @ api-request-logging-spring-boot-starter ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory C:\Yashwanth\WorkSetup\API_Request_Logging\src\test\resources
[INFO]
[INFO] --- compiler:3.13.0:testCompile (default-testCompile) @ api-request-logging-spring-boot-starter ---
[INFO] Recompiling the module because of changed dependency.
[INFO]
[INFO] --- surefire:3.2.5:test (default-test) @ api-request-logging-spring-boot-starter ---
[INFO]
[INFO] --- jar:3.0.2:jar (default-jar) @ api-request-logging-spring-boot-starter ---
[INFO] Building jar: C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.0.jar
[INFO]
[INFO] --- source:3.3.1:jar-no-fork (attach-sources) @ api-request-logging-spring-boot-starter ---
[INFO] Building jar: C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.0-sources.jar
[INFO]
[INFO] --- javadoc:3.6.3:jar (attach-javadocs) @ api-request-logging-spring-boot-starter ---
[INFO] No previous run data found, generating javadoc.
[INFO]
Loading source files for package com.github.yash777.apirequestlogging.autoconfigure...
Loading source files for package com.github.yash777.apirequestlogging.collector...
Loading source files for package com.github.yash777.apirequestlogging.demo.condition...
Loading source files for package com.github.yash777.apirequestlogging.demo.controller...
Loading source files for package com.github.yash777.apirequestlogging.demo...
Loading source files for package com.github.yash777.apirequestlogging.demo.service...
Loading source files for package com.github.yash777.apirequestlogging.filter...
Loading source files for package com.github.yash777.apirequestlogging.properties...
Loading source files for package com.github.yash777.apirequestlogging.util...
Constructing Javadoc information...
Standard Doclet version 1.8.0_482-482
Building tree for all the packages and classes...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\autoconfigure\ApiRequestLoggingAutoConfiguration.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\collector\RequestLogCollector.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\condition\ConditionalOnDemoEnvironment.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\condition\DemoEnvironmentCondition.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\condition\DummyBeanCondition.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\controller\OrderController.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\controller\OrderRequest.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\controller\OrderResponse.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\controller\PaymentController.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\DemoApplication.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\DemoContextInitializer.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\service\OrderService.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\service\PaymentRequest.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\service\PaymentResponse.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\service\PaymentService.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\filter\ApiLoggingFilter.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\filter\RequestBodyCachingFilter.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\properties\ApiRequestLoggingProperties.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\util\TimestampUtils.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\overview-frame.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\autoconfigure\package-frame.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\autoconfigure\package-summary.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\autoconfigure\package-tree.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\collector\package-frame.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\collector\package-summary.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\collector\package-tree.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\package-frame.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\package-summary.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\package-tree.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\condition\package-frame.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\condition\package-summary.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\condition\package-tree.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\controller\package-frame.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\controller\package-summary.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\controller\package-tree.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\service\package-frame.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\service\package-summary.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\service\package-tree.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\filter\package-frame.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\filter\package-summary.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\filter\package-tree.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\properties\package-frame.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\properties\package-summary.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\properties\package-tree.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\util\package-frame.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\util\package-summary.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\util\package-tree.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\constant-values.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\autoconfigure\class-use\ApiRequestLoggingAutoConfiguration.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\collector\class-use\RequestLogCollector.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\condition\class-use\DummyBeanCondition.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\condition\class-use\DemoEnvironmentCondition.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\condition\class-use\ConditionalOnDemoEnvironment.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\controller\class-use\PaymentController.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\controller\class-use\OrderResponse.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\controller\class-use\OrderRequest.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\controller\class-use\OrderController.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\class-use\DemoContextInitializer.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\class-use\DemoApplication.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\service\class-use\PaymentService.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\service\class-use\PaymentResponse.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\service\class-use\PaymentRequest.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\service\class-use\OrderService.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\filter\class-use\RequestBodyCachingFilter.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\filter\class-use\ApiLoggingFilter.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\properties\class-use\ApiRequestLoggingProperties.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\util\class-use\TimestampUtils.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\autoconfigure\package-use.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\collector\package-use.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\package-use.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\condition\package-use.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\controller\package-use.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\demo\service\package-use.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\filter\package-use.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\properties\package-use.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\com\github\yash777\apirequestlogging\util\package-use.html...
Building index for all the packages and classes...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\overview-tree.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\index-all.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\deprecated-list.html...
Building index for all classes...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\allclasses-frame.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\allclasses-noframe.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\index.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\overview-summary.html...
Generating C:\Yashwanth\WorkSetup\API_Request_Logging\target\apidocs\help-doc.html...
20 warnings
[WARNING] Javadoc Warnings
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\collector\RequestLogCollector.java:145: warning - Missing closing '}' character for inline tag: "{@code"
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\collector\RequestLogCollector.java:145: warning - @Service is an unknown tag.
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\collector\RequestLogCollector.java:145: warning - @Autowired is an unknown tag.
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\collector\RequestLogCollector.java:277: warning - #EXCEPTION_MAX_LINES (referenced by @value tag) is an unknown reference.
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\collector\RequestLogCollector.java:277: warning - #EXCEPTION_MAX_LINES (referenced by @value tag) is an unknown reference.
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\collector\RequestLogCollector.java:485: warning - #EXCEPTION_MAX_LINES (referenced by @value tag) is an unknown reference.
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\collector\RequestLogCollector.java:485: warning - #EXCEPTION_MAX_LINES (referenced by @value tag) is an unknown reference.
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\collector\RequestLogCollector.java:485: warning - #EXCEPTION_MAX_LINES (referenced by @value tag) is an unknown reference.
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\demo\condition\ConditionalOnDemoEnvironment.java:169: warning - Tag @link: reference not found: DemoApplication#main(String[])
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\demo\condition\ConditionalOnDemoEnvironment.java:169: warning - Tag @link: reference not found: DemoApplication
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\demo\condition\ConditionalOnDemoEnvironment.java:169: warning - Tag @see: reference not found: DemoApplication#main(String[])
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\demo\condition\ConditionalOnDemoEnvironment.java:169: warning - Tag @see: reference not found: DemoApplication#getNonConsumer()
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\demo\controller\PaymentController.java:66: warning - Tag @link: reference not found: OrderService
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\demo\DemoContextInitializer.java:57: warning - @SpringBootTest is an unknown tag.
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\demo\DemoContextInitializer.java:57: warning - @Conditional is an unknown tag.
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\demo\DemoContextInitializer.java:57: warning - @Autowired is an unknown tag.
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\filter\ApiLoggingFilter.java:85: warning - Tag @link: reference not found: FilterOrderConfig
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\filter\ApiLoggingFilter.java:85: warning - Tag @link: reference not found: FilterOrderConfig
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\util\TimestampUtils.java:82: warning - @example is an unknown tag.
[WARNING] C:\Yashwanth\WorkSetup\API_Request_Logging\src\main\java\com\github\yash777\apirequestlogging\util\TimestampUtils.java:120: warning - @example is an unknown tag.
[INFO] Building jar: C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.0-javadoc.jar
[INFO]
[INFO] --- spring-boot:2.0.1.RELEASE:repackage (default) @ api-request-logging-spring-boot-starter ---
[INFO]
[INFO] --- gpg:3.2.4:sign (sign-artifacts) @ api-request-logging-spring-boot-starter ---
[WARNING] Parameter 'passphraseServerId' (user property 'gpg.passphraseServerId') is deprecated: Do not use this configuration, it may leak sensitive information. Rely on gpg-agent or env variables instead.
[WARNING]
[WARNING] W A R N I N G
[WARNING]
[WARNING] Do not store passphrase in any file (disk or SCM repository),
[WARNING] instead rely on GnuPG agent or provide passphrase in
[WARNING] MAVEN_GPG_PASSPHRASE environment variable for batch mode.
[WARNING]
[WARNING] Sensitive content loaded from settings.xml
[WARNING]
[INFO] Signer 'gpg' is signing 4 files with key 54673F57962DC34B
[INFO]
[INFO] --- install:2.5.2:install (default-install) @ api-request-logging-spring-boot-starter ---
[INFO] Installing C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.0.jar to C:\Users\srika\.m2\repository\io\github\yash-777\api-request-logging-spring-boot-starter\1.0.0\api-request-logging-spring-boot-starter-1.0.0.jar
[INFO] Installing C:\Yashwanth\WorkSetup\API_Request_Logging\pom.xml to C:\Users\srika\.m2\repository\io\github\yash-777\api-request-logging-spring-boot-starter\1.0.0\api-request-logging-spring-boot-starter-1.0.0.pom
[INFO] Installing C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.0-sources.jar to C:\Users\srika\.m2\repository\io\github\yash-777\api-request-logging-spring-boot-starter\1.0.0\api-request-logging-spring-boot-starter-1.0.0-sources.jar
[INFO] Installing C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.0-javadoc.jar to C:\Users\srika\.m2\repository\io\github\yash-777\api-request-logging-spring-boot-starter\1.0.0\api-request-logging-spring-boot-starter-1.0.0-javadoc.jar
[INFO] Installing C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.0.jar.asc to C:\Users\srika\.m2\repository\io\github\yash-777\api-request-logging-spring-boot-starter\1.0.0\api-request-logging-spring-boot-starter-1.0.0.jar.asc
[INFO] Installing C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.0.pom.asc to C:\Users\srika\.m2\repository\io\github\yash-777\api-request-logging-spring-boot-starter\1.0.0\api-request-logging-spring-boot-starter-1.0.0.pom.asc
[INFO] Installing C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.0-sources.jar.asc to C:\Users\srika\.m2\repository\io\github\yash-777\api-request-logging-spring-boot-starter\1.0.0\api-request-logging-spring-boot-starter-1.0.0-sources.jar.asc
[INFO] Installing C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.0-javadoc.jar.asc to C:\Users\srika\.m2\repository\io\github\yash-777\api-request-logging-spring-boot-starter\1.0.0\api-request-logging-spring-boot-starter-1.0.0-javadoc.jar.asc
[INFO]
[INFO] --- central-publishing:0.9.0:publish (injected-central-publishing) @ api-request-logging-spring-boot-starter ---
[INFO] Using Central baseUrl: https://central.sonatype.com
[INFO] Using credentials from server id central in settings.xml
[INFO] Using Usertoken auth, with namecode: JEsK3Q
[INFO] Staging 7 files
[INFO] Staging C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.0.jar
[INFO] Installing C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.0.jar to C:\Yashwanth\WorkSetup\API_Request_Logging\target\central-staging\io\github\yash-777\api-request-logging-spring-boot-starter\1.0.0\api-request-logging-spring-boot-starter-1.0.0.jar
[INFO] Installing C:\Yashwanth\WorkSetup\API_Request_Logging\pom.xml to C:\Yashwanth\WorkSetup\API_Request_Logging\target\central-staging\io\github\yash-777\api-request-logging-spring-boot-starter\1.0.0\api-request-logging-spring-boot-starter-1.0.0.pom
[INFO] Staging C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.0-sources.jar
[INFO] Installing C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.0-sources.jar to C:\Yashwanth\WorkSetup\API_Request_Logging\target\central-staging\io\github\yash-777\api-request-logging-spring-boot-starter\1.0.0\api-request-logging-spring-boot-starter-1.0.0-sources.jar
[INFO] Staging C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.0-javadoc.jar
[INFO] Installing C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.0-javadoc.jar to C:\Yashwanth\WorkSetup\API_Request_Logging\target\central-staging\io\github\yash-777\api-request-logging-spring-boot-starter\1.0.0\api-request-logging-spring-boot-starter-1.0.0-javadoc.jar
[INFO] Staging C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.0.jar.asc
[INFO] Installing C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.0.jar.asc to C:\Yashwanth\WorkSetup\API_Request_Logging\target\central-staging\io\github\yash-777\api-request-logging-spring-boot-starter\1.0.0\api-request-logging-spring-boot-starter-1.0.0.jar.asc
[INFO] Staging C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.0.pom.asc
[INFO] Installing C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.0.pom.asc to C:\Yashwanth\WorkSetup\API_Request_Logging\target\central-staging\io\github\yash-777\api-request-logging-spring-boot-starter\1.0.0\api-request-logging-spring-boot-starter-1.0.0.pom.asc
[INFO] Staging C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.0-sources.jar.asc
[INFO] Installing C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.0-sources.jar.asc to C:\Yashwanth\WorkSetup\API_Request_Logging\target\central-staging\io\github\yash-777\api-request-logging-spring-boot-starter\1.0.0\api-request-logging-spring-boot-starter-1.0.0-sources.jar.asc
[INFO] Staging C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.0-javadoc.jar.asc
[INFO] Installing C:\Yashwanth\WorkSetup\API_Request_Logging\target\api-request-logging-spring-boot-starter-1.0.0-javadoc.jar.asc to C:\Yashwanth\WorkSetup\API_Request_Logging\target\central-staging\io\github\yash-777\api-request-logging-spring-boot-starter\1.0.0\api-request-logging-spring-boot-starter-1.0.0-javadoc.jar.asc
[INFO] Pre Bundling - deleted C:\Yashwanth\WorkSetup\API_Request_Logging\target\central-staging\io\github\yash-777\api-request-logging-spring-boot-starter\maven-metadata-central-staging.xml
[INFO] Generate checksums for dir: io\github\yash-777\api-request-logging-spring-boot-starter\1.0.0
[INFO] Going to create C:\Yashwanth\WorkSetup\API_Request_Logging\target\central-publishing\central-bundle.zip by bundling content at C:\Yashwanth\WorkSetup\API_Request_Logging\target\central-staging
[INFO] Created bundle successfully C:\Yashwanth\WorkSetup\API_Request_Logging\target\central-staging\central-bundle.zip
[INFO] Going to upload C:\Yashwanth\WorkSetup\API_Request_Logging\target\central-publishing\central-bundle.zip
[INFO] Uploaded bundle successfully, deployment name: api-request-logging-spring-boot-starter-1.0.0, deploymentId: 280b6421-1e61-4037-99cc-31027fc3f4ba. Deployment will publish automatically
[INFO] Waiting until Deployment 280b6421-1e61-4037-99cc-31027fc3f4ba is published
[INFO] Deployment 280b6421-1e61-4037-99cc-31027fc3f4ba was successfully published
Packages
- https://repo1.maven.org/maven2/io/github/yash-777/api-request-logging-spring-boot-starter/1.0.0/
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 06:23 min
[INFO] Finished at: 2026-03-30T22:07:45+05:30
[INFO] ------------------------------------------------------------------------
:: Check OS Architecture, OS Name and System Type
C:\Yashwanth\WorkSetup\API_Request_Logging>wmic os get osarchitecture
OSArchitecture
64-bit
C:\Yashwanth\WorkSetup\API_Request_Logging>systeminfo | findstr /B /C:"OS Name" /B /C:"System Type"
OS Name: Microsoft Windows 11 Home
System Type: x64-based PC
C:\Softwares>echo %PROCESSOR_ARCHITECTURE%
AMD64
:: Check Maven and Java version
C:\Yashwanth\WorkSetup\API_Request_Logging>java -version
java version "1.8.0_271"
Java(TM) SE Runtime Environment (build 1.8.0_271-b09)
Java HotSpot(TM) 64-Bit Server VM (build 25.271-b09, mixed mode)
C:\Yashwanth\WorkSetup\API_Request_Logging>echo %JAVA_HOME%
C:\Softwares\openlogic-openjdk-8u482-b08-windows-x64
