TimeZoneInterceptor
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.dineshsolanki</groupId> <artifactId>TimeZoneInterceptor</artifactId> <version>2.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.5.5</version> <relativePath/> <!-- lookup parent from repository --> </parent> <groupId>io.github.dineshsolanki</groupId> <artifactId>TimeZoneInterceptor</artifactId> <version>2.0.0</version> <name>TimeZoneInterceptor</name> <url>https://github.com/DineshSolanki/TimeZoneInterceptor</url> <description> this library offers a seamless solution for all your API requests that represent the timezone passed in the request header - 'X-TimeZone'. so that you can always get the client's timezone by doing 'TimeZoneInterceptor.getTimeZone()',all out of the box . What's more? The header name that it looks for can also be easily changed via property in application.properties/yml. </description> <scm> <connection>scm:git:git://github.com/DineshSolanki/TimeZoneInterceptor.git</connection> <developerConnection>scm:git:ssh://github.com/DineshSolanki/TimeZoneInterceptor.git</developerConnection> <url>https://github.com/DineshSolanki/TimeZoneInterceptor</url> </scm> <licenses> <license> <name>GNU General Public License v3.0</name> <url>https://www.gnu.org/licenses/gpl-3.0.en.html</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>DineshSolanki</id> <name>Dinesh Solanki</name> <email>solankid297+sonatype@gmail.com</email> <url>https://github.com/DineshSolanki</url> <roles> <role>developer</role> </roles> </developer> </developers> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <properties> <java.version>8</java.version> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> <build> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.4.1</version> <executions> <execution> <id>attach-javadoc</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-source</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.jreleaser</groupId> <artifactId>jreleaser-maven-plugin</artifactId> <version>1.3.1</version> <configuration> <jreleaser> <signing> <active>ALWAYS</active> <armored>true</armored> </signing> <deploy> <maven> <nexus2> <maven-central> <active>ALWAYS</active> <url>https://s01.oss.sonatype.org/service/local</url>; <closeRepository>true</closeRepository> <releaseRepository>true</releaseRepository> <stagingRepositories>target/staging-deploy</stagingRepositories> </maven-central> </nexus2> </maven> </deploy> </jreleaser> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>