time-it
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.dario-mr</groupId> <artifactId>time-it</artifactId> <version>1.0.2</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> <groupId>io.github.dario-mr</groupId> <artifactId>time-it</artifactId> <version>1.0.2</version> <name>Time It</name> <description> Library to log the execution time of your methods in Spring Boot components. For example usages, check the github page: https://github.com/dario-mr/time-it </description> <url>https://github.com/dario-mr/time-it</url> <licenses> <license> <name>GPL, Version 3.0</name> <url>https://www.gnu.org/licenses/gpl-3.0.txt</url> </license> </licenses> <developers> <developer> <name>Dario Mr</name> <email>dario.mr.github@gmail.com</email> <organization>dario-mr</organization> <organizationUrl>https://github.com/dario-mr</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git://github.com/dario-mr/time-it.git</connection> <developerConnection>scm:git:ssh://github.com:dario-mr/time-it.git</developerConnection> <url>https://github.com/dario-mr/time-it/tree/master</url> </scm> <properties> <java.version>17</java.version> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.target>17</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <!-- maven plugins --> <maven-surefire.version>3.2.5</maven-surefire.version> <maven-source.version>3.3.1</maven-source.version> <maven-javadoc.version>3.6.3</maven-javadoc.version> <maven-gpg.version>3.2.4</maven-gpg.version> <central-publishing-maven.version>0.4.0</central-publishing-maven.version> <!-- third party dependencies --> <spring-boot.version>3.2.5</spring-boot.version> <lombok.version>1.18.32</lombok.version> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-aop</artifactId> <version>${spring-boot.version}</version> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${lombok.version}</version> </dependency> <!-- Test --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <version>${spring-boot.version}</version> <scope>test</scope> </dependency> </dependencies> <!-- To deploy to Maven Central, run: mvn clean deploy -P deploy-maven-central --> <profiles> <profile> <id>deploy-maven-central</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc.version}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <keyname>0x52E8212E</keyname> <passphraseServerId>ossrh</passphraseServerId> </configuration> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>${central-publishing-maven.version}</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <tokenAuth>true</tokenAuth> <autoPublish>true</autoPublish> </configuration> </plugin> </plugins> </build> </profile> </profiles> <distributionManagement> <repository> <id>github</id> <name>GitHub Packages</name> <url>https://maven.pkg.github.com/dario-mr/time-it</url> </repository> </distributionManagement> </project>