Skip to content

Commit 872559f

Browse files
committed
#43 - Add MANIFEST with Automatic-Module-Name: io.avaje.metrics
1 parent b0ad70a commit 872559f

File tree

2 files changed

+23
-3
lines changed

2 files changed

+23
-3
lines changed

pom.xml

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<dependency>
3030
<groupId>org.slf4j</groupId>
3131
<artifactId>slf4j-api</artifactId>
32-
<version>1.7.21</version>
32+
<version>1.7.25</version>
3333
<scope>provided</scope>
3434
</dependency>
3535

@@ -66,17 +66,35 @@
6666
<dependency>
6767
<groupId>com.fasterxml.jackson.core</groupId>
6868
<artifactId>jackson-core</artifactId>
69-
<version>2.10.1</version>
69+
<version>2.11.2</version>
7070
<scope>test</scope>
7171
</dependency>
7272

7373
<dependency>
7474
<groupId>com.fasterxml.jackson.core</groupId>
7575
<artifactId>jackson-databind</artifactId>
76-
<version>2.10.1</version>
76+
<version>2.11.2</version>
7777
<scope>test</scope>
7878
</dependency>
7979

8080
</dependencies>
8181

82+
<build>
83+
<plugins>
84+
<plugin>
85+
<groupId>org.apache.maven.plugins</groupId>
86+
<artifactId>maven-jar-plugin</artifactId>
87+
<version>2.3.2</version>
88+
<configuration>
89+
<archive>
90+
<manifestEntries>
91+
<build-version>${project.version}</build-version>
92+
</manifestEntries>
93+
<manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile>
94+
</archive>
95+
</configuration>
96+
</plugin>
97+
</plugins>
98+
</build>
99+
82100
</project>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Manifest-Version: 1.0
2+
Automatic-Module-Name: io.avaje.metrics

0 commit comments

Comments
 (0)