75 lines
2.3 KiB
XML
75 lines
2.3 KiB
XML
<?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>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>2.6.4</version>
|
|
<relativePath></relativePath>
|
|
</parent>
|
|
|
|
<groupId>gr.cite</groupId>
|
|
<artifactId>notification-service-parent</artifactId>
|
|
<name>Argos Notification Parent</name>
|
|
<version>1.0.0</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<modules>
|
|
<module>notification</module>
|
|
<module>notification-web</module>
|
|
</modules>
|
|
|
|
<properties>
|
|
<maven.compiler.source>11</maven.compiler.source>
|
|
<maven.compiler.target>11</maven.compiler.target>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>gr.cite</groupId>
|
|
<artifactId>queue-inbox</artifactId>
|
|
<version>1.0.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>gr.cite</groupId>
|
|
<artifactId>queue-outbox</artifactId>
|
|
<version>1.0.0</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>devel</id>
|
|
<activation>
|
|
<activeByDefault>true</activeByDefault>
|
|
</activation>
|
|
<properties>
|
|
<packaging.type>jar</packaging.type>
|
|
</properties>
|
|
</profile>
|
|
<profile>
|
|
<id>production</id>
|
|
<properties>
|
|
<packaging.type>jar</packaging.type>
|
|
</properties>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
<activation>
|
|
<property>
|
|
<name>profile</name>
|
|
<value>production</value>
|
|
</property>
|
|
</activation>
|
|
</profile>
|
|
</profiles>
|
|
|
|
</project> |