Skip to content

Commit 5c78302

Browse files
committed
Add transformer to for jakarta artifact
1 parent dc4e201 commit 5c78302

1 file changed

Lines changed: 31 additions & 0 deletions

File tree

pom.xml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -394,5 +394,36 @@
394394
</plugin>
395395
</plugins>
396396
</pluginManagement>
397+
398+
<plugins>
399+
<plugin>
400+
<groupId>org.eclipse.transformer</groupId>
401+
<artifactId>transformer-maven-plugin</artifactId>
402+
<!-- Ideally this should be 1.0.0 but that requires JDK17 to run which then breaks PathMappedCacheProviderCassandraTest -->
403+
<version>0.5.0</version>
404+
<extensions>true</extensions>
405+
<configuration>
406+
<rules>
407+
<jakartaDefaults>true</jakartaDefaults>
408+
</rules>
409+
<classifier>jakarta</classifier>
410+
</configuration>
411+
<executions>
412+
<execution>
413+
<id>default-jar</id>
414+
<goals>
415+
<goal>jar</goal>
416+
</goals>
417+
<configuration>
418+
<artifact>
419+
<groupId>${project.groupId}</groupId>
420+
<artifactId>${project.artifactId}</artifactId>
421+
<version>${project.version}</version>
422+
</artifact>
423+
</configuration>
424+
</execution>
425+
</executions>
426+
</plugin>
427+
</plugins>
397428
</build>
398429
</project>

0 commit comments

Comments
 (0)