Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 30 additions & 1 deletion jmslib/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) 2017 Red Hat, Inc.
~ Copyright (c) 2023 Red Hat, Inc.
~
~ Licensed to the Apache Software Foundation (ASF) under one or more
~ contributor license agreements. See the NOTICE file distributed with
Expand Down Expand Up @@ -31,6 +31,9 @@
</parent>

<artifactId>jmslib</artifactId>
<properties>
<transformer-tools-mvn.version>1.0.15.Final</transformer-tools-mvn.version>
</properties>

<dependencies>
<dependency>
Expand Down Expand Up @@ -71,6 +74,32 @@

<build>
<plugins>
<!--https://github.com/wildfly-extras/batavia/blob/master/tools/mvn/src/main/java/org/wildfly/extras/transformer/tool/maven/MavenPluginTransformer.java-->
<plugin>
<groupId>org.wildfly.extras.batavia</groupId>
<artifactId>transformer-tools-mvn</artifactId>
<version>${transformer-tools-mvn.version}</version>
<executions>
<execution>
<id>transform-sources</id>
<phase>generate-sources</phase>
<goals>
<goal>transform-sources</goal>
</goals>
<configuration>
<source-project>${project.basedir}/../jakartalib</source-project>
<invert>true</invert>
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>org.wildfly.extras.batavia</groupId>
<artifactId>transformer-impl-eclipse</artifactId>
<version>${transformer-tools-mvn.version}</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<!-- https://stackoverflow.com/questions/174560/sharing-test-code-in-maven#174670 -->
<artifactId>maven-jar-plugin</artifactId>
Expand Down

This file was deleted.

26 changes: 0 additions & 26 deletions jmslib/src/main/java/com/redhat/mqe/lib/Args.java

This file was deleted.

31 changes: 0 additions & 31 deletions jmslib/src/main/java/com/redhat/mqe/lib/Client.java

This file was deleted.

Loading