Skip to content

Commit 413c986

Browse files
committed
final commit
1 parent 658df61 commit 413c986

File tree

20 files changed

+264
-158
lines changed

20 files changed

+264
-158
lines changed

.idea/compiler.xml

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/encodings.xml

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations/Payara_6_25_0.xml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ActiveMQ-Client/.gitignore

Lines changed: 0 additions & 38 deletions
This file was deleted.

ActiveMQ-Client/.idea/.gitignore

Lines changed: 0 additions & 8 deletions
This file was deleted.

ActiveMQ-Client/.idea/encodings.xml

Lines changed: 0 additions & 7 deletions
This file was deleted.

ActiveMQ-Client/.idea/misc.xml

Lines changed: 0 additions & 14 deletions
This file was deleted.

ActiveMQ-Client/src/main/java/com/tharindu.me/ee/activemq/MessageReceiver.java

Lines changed: 0 additions & 39 deletions
This file was deleted.

ActiveMQ-Client/src/main/java/com/tharindu.me/ee/activemq/MessageSender.java

Lines changed: 0 additions & 30 deletions
This file was deleted.

ActiveMQ-Client/pom.xml renamed to ActiveMQ/pom.xml

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,31 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
6+
<parent>
7+
<groupId>com.tharindu.me.auctionSystem</groupId>
8+
<artifactId>Online-Auction-System</artifactId>
9+
<version>1.0</version>
10+
</parent>
611

7-
<groupId>com.deltacodex.ee</groupId>
8-
<artifactId>ActiveMQ-Client</artifactId>
9-
<version>1.0</version>
12+
<artifactId>ActiveMQ</artifactId>
1013

1114
<properties>
12-
<maven.compiler.source>11</maven.compiler.source>
13-
<maven.compiler.target>11</maven.compiler.target>
15+
<maven.compiler.source>17</maven.compiler.source>
16+
<maven.compiler.target>17</maven.compiler.target>
1417
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1518
</properties>
1619

1720
<dependencies>
21+
<dependency>
22+
<groupId>jakarta.jms</groupId>
23+
<artifactId>jakarta.jms-api</artifactId>
24+
<version>3.0.0</version>
25+
<scope>provided</scope> <!-- Payara already includes this -->
26+
</dependency>
1827
<dependency>
1928
<groupId>org.apache.activemq</groupId>
2029
<artifactId>activemq-all</artifactId>
21-
<version>5.18.6</version>
30+
<version>5.18.6</version> <!-- has jakarta.jms APIs -->
2231
</dependency>
2332
<dependency>
2433
<groupId>org.apache.logging.log4j</groupId>

0 commit comments

Comments
 (0)