| <?xml version="1.0" encoding="UTF-8"?> |
| <project xmlns="http://maven.apache.org/POM/4.0.0" |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| <modelVersion>4.0.0</modelVersion> |
| <parent> |
| <artifactId>optaplanner-activemq-quarkus-school-timetabling</artifactId> |
| <groupId>org.acme</groupId> |
| <version>1.0-SNAPSHOT</version> |
| <relativePath>../pom.xml</relativePath> |
| </parent> |
| |
| <artifactId>optaplanner-activemq-quarkus-school-timetabling-client</artifactId> |
| <description>ActiveMQ Quarkus School Timetabling Quickstart : Client</description> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.acme</groupId> |
| <artifactId>optaplanner-activemq-quarkus-school-timetabling-common</artifactId> |
| <exclusions> |
| <!-- Avoid bootstrapping the optaplanner-quarkus extension. --> |
| <exclusion> |
| <groupId>org.optaplanner</groupId> |
| <artifactId>optaplanner-quarkus</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>io.quarkus</groupId> |
| <artifactId>quarkus-resteasy</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>io.quarkus</groupId> |
| <artifactId>quarkus-resteasy-jackson</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.optaplanner</groupId> |
| <artifactId>optaplanner-quarkus-jackson</artifactId> |
| </dependency> |
| <!-- Messaging --> |
| <dependency> |
| <groupId>io.quarkus</groupId> |
| <artifactId>quarkus-smallrye-reactive-messaging</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>io.smallrye.reactive</groupId> |
| <artifactId>smallrye-reactive-messaging-amqp</artifactId> |
| </dependency> |
| |
| <!-- Testing --> |
| <dependency> |
| <groupId>io.quarkus</groupId> |
| <artifactId>quarkus-junit5</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>io.smallrye.reactive</groupId> |
| <artifactId>smallrye-reactive-messaging-in-memory</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.assertj</groupId> |
| <artifactId>assertj-core</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.awaitility</groupId> |
| <artifactId>awaitility</artifactId> |
| <scope>test</scope> |
| </dependency> |
| |
| <!-- UI --> |
| <dependency> |
| <groupId>io.quarkus</groupId> |
| <artifactId>quarkus-webjars-locator</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.webjars</groupId> |
| <artifactId>bootstrap</artifactId> |
| <scope>runtime</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.webjars</groupId> |
| <artifactId>jquery</artifactId> |
| <scope>runtime</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.webjars</groupId> |
| <artifactId>font-awesome</artifactId> |
| <scope>runtime</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.webjars</groupId> |
| <artifactId>momentjs</artifactId> |
| <scope>runtime</scope> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>io.quarkus</groupId> |
| <artifactId>quarkus-maven-plugin</artifactId> |
| <version>${version.io.quarkus}</version> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |