Skip to content

Commit c669f45

Browse files
committedDec 27, 2022
bug: switch to onejar-maven-plugin to get rid of FipsOperationError: Module checksum failed while build jar using maven-assembly-plugin
1 parent ae92dbf commit c669f45

File tree

1 file changed

+37
-32
lines changed

1 file changed

+37
-32
lines changed
 

‎ashv/pom.xml

+37-32
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,12 @@
2424
<artifactId>jfreechart-fse</artifactId>
2525
<version>1.0-SNAPSHOT</version>
2626
</dependency>
27+
28+
<dependency>
29+
<groupId>com.jolira</groupId>
30+
<artifactId>onejar-maven-plugin</artifactId>
31+
<version>1.4.4</version>
32+
</dependency>
2733
</dependencies>
2834

2935
<build>
@@ -67,51 +73,50 @@
6773
<plugin>
6874
<groupId>org.apache.maven.plugins</groupId>
6975
<artifactId>maven-compiler-plugin</artifactId>
76+
<version>3.8.1</version>
7077
<configuration>
7178
<source>11</source>
7279
<target>11</target>
80+
<annotationProcessorPaths>
81+
<path>
82+
<groupId>com.google.dagger</groupId>
83+
<artifactId>dagger-compiler</artifactId>
84+
<version>2.29.1</version>
85+
</path>
86+
<path>
87+
<groupId>org.projectlombok</groupId>
88+
<artifactId>lombok</artifactId>
89+
<version>1.18.24</version>
90+
</path>
91+
<path>
92+
<groupId>com.google.auto.factory</groupId>
93+
<artifactId>auto-factory</artifactId>
94+
<version>1.0-beta8</version>
95+
</path>
96+
</annotationProcessorPaths>
7397
</configuration>
7498
</plugin>
7599

76100
<plugin>
77-
<groupId>org.apache.maven.plugins</groupId>
78-
<artifactId>maven-jar-plugin</artifactId>
79-
<version>3.1.1</version>
80-
</plugin>
81-
<plugin>
82-
<groupId>org.apache.maven.plugins</groupId>
83-
<artifactId>maven-assembly-plugin</artifactId>
84-
<version>3.1.1</version>
101+
<groupId>com.jolira</groupId>
102+
<artifactId>onejar-maven-plugin</artifactId>
103+
<version>1.4.4</version>
104+
<configuration>
105+
<mainClass>Main</mainClass>
106+
</configuration>
107+
<executions>
108+
<execution>
109+
<goals>
110+
<goal>one-jar</goal>
111+
</goals>
112+
</execution>
113+
</executions>
85114
</plugin>
86115

87116
</plugins>
88117

89118
<pluginManagement>
90119
<plugins>
91-
<plugin>
92-
<groupId>org.apache.maven.plugins</groupId>
93-
<artifactId>maven-assembly-plugin</artifactId>
94-
<version>3.1.1</version>
95-
<configuration>
96-
<descriptorRefs>
97-
<descriptorRef>jar-with-dependencies</descriptorRef>
98-
</descriptorRefs>
99-
<archive>
100-
<manifest>
101-
<mainClass>Main</mainClass>
102-
</manifest>
103-
</archive>
104-
</configuration>
105-
<executions>
106-
<execution>
107-
<id>make-assembly</id>
108-
<phase>package</phase>
109-
<goals>
110-
<goal>single</goal>
111-
</goals>
112-
</execution>
113-
</executions>
114-
</plugin>
115120
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
116121
<plugin>
117122
<groupId>org.eclipse.m2e</groupId>

0 commit comments

Comments
 (0)
Please sign in to comment.