|
|
@ -4,7 +4,7 @@
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>me.goudham</groupId>
|
|
|
|
<groupId>me.goudham</groupId>
|
|
|
|
<artifactId>micronaut-trace</artifactId>
|
|
|
|
<artifactId>micronaut-trace</artifactId>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<version>0.1.0</version>
|
|
|
|
<packaging>${packaging}</packaging>
|
|
|
|
<packaging>${packaging}</packaging>
|
|
|
|
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<parent>
|
|
|
@ -23,11 +23,11 @@
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
</properties>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
|
|
<name>trace</name>
|
|
|
|
<name>micronaut-trace</name>
|
|
|
|
<description>
|
|
|
|
<description>
|
|
|
|
A Java annotation library to trace and time your method executions, written using Micronaut
|
|
|
|
Java annotation library to trace and time your method executions, written using Micronaut
|
|
|
|
</description>
|
|
|
|
</description>
|
|
|
|
<url>https://github.com/sgoudham/trace</url>
|
|
|
|
<url>https://github.com/sgoudham/micronaut-trace</url>
|
|
|
|
|
|
|
|
|
|
|
|
<distributionManagement>
|
|
|
|
<distributionManagement>
|
|
|
|
<snapshotRepository>
|
|
|
|
<snapshotRepository>
|
|
|
@ -41,9 +41,9 @@
|
|
|
|
</distributionManagement>
|
|
|
|
</distributionManagement>
|
|
|
|
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
<scm>
|
|
|
|
<connection>scm:git:git://github.com/sgoudham/trace.git</connection>
|
|
|
|
<connection>scm:git:git://github.com/sgoudham/micronaut-trace.git</connection>
|
|
|
|
<developerConnection>scm:git:ssh://github.com:sgoudham/trace.git</developerConnection>
|
|
|
|
<developerConnection>scm:git:ssh://github.com:sgoudham/micronaut-trace.git</developerConnection>
|
|
|
|
<url>https://github.com/sgoudham/trace/tree/main</url>
|
|
|
|
<url>https://github.com/sgoudham/micronaut-trace/tree/main</url>
|
|
|
|
</scm>
|
|
|
|
</scm>
|
|
|
|
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
<developers>
|
|
|
@ -82,13 +82,11 @@
|
|
|
|
<dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.micronaut</groupId>
|
|
|
|
<groupId>io.micronaut</groupId>
|
|
|
|
<artifactId>micronaut-aop</artifactId>
|
|
|
|
<artifactId>micronaut-aop</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
|
|
|
|
</dependency>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.micronaut.test</groupId>
|
|
|
|
<groupId>io.micronaut.test</groupId>
|
|
|
|
<artifactId>micronaut-test-junit5</artifactId>
|
|
|
|
<artifactId>micronaut-test-junit5</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
<scope>test</scope>
|
|
|
|
<optional>true</optional>
|
|
|
|
|
|
|
|
</dependency>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
@ -115,11 +113,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugins>
|
|
|
|
<!-- This makes the shaded-jar the default, which I don't want-->
|
|
|
|
<!-- This makes the shaded-jar the default, which I don't want-->
|
|
|
|
<!-- <plugin>-->
|
|
|
|
<!-- <plugin>-->
|
|
|
|
<!-- <groupId>io.micronaut.build</groupId>-->
|
|
|
|
<!-- <groupId>io.micronaut.build</groupId>-->
|
|
|
|
<!-- <artifactId>micronaut-maven-plugin</artifactId>-->
|
|
|
|
<!-- <artifactId>micronaut-maven-plugin</artifactId>-->
|
|
|
|
<!-- </plugin>-->
|
|
|
|
<!-- </plugin>-->
|
|
|
|
<plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|