|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | + <modelVersion>4.0.0</modelVersion> |
| 6 | + <parent> |
| 7 | + <groupId>org.springframework.boot</groupId> |
| 8 | + <artifactId>spring-boot-starter-parent</artifactId> |
| 9 | + <version>2.1.10.RELEASE</version> |
| 10 | + <relativePath /> <!-- lookup parent from repository --> |
| 11 | + </parent> |
| 12 | + <groupId>org.activiti.cloud.examples</groupId> |
| 13 | + <artifactId>activiti-cloud-notifications-graphql</artifactId> |
| 14 | + <version>7.1.0-SNAPSHOT</version> |
| 15 | + <name>Activiti Cloud :: Notifications GraphQL</name> |
| 16 | + <url>http://activiti.org</url> |
| 17 | + <scm> |
| 18 | + <url>https://github.com/Activiti/${project.artifactId}</url> |
| 19 | + <connection>scm:git:https://github.com/Activiti/${project.artifactId}.git</connection> |
| 20 | + <developerConnection>scm:git:https://github.com/Activiti/${project.artifactId}.git</developerConnection> |
| 21 | + <tag>HEAD</tag> |
| 22 | + </scm> |
| 23 | + <properties> |
| 24 | + <java.version>11</java.version> |
| 25 | + <activiti-cloud-notifications-service-graphql.version>7.1.187</activiti-cloud-notifications-service-graphql.version> |
| 26 | + <maven-compiler-plugin.version>3.8.0</maven-compiler-plugin.version> |
| 27 | + <maven-failsafe-plugin.version>3.0.0-M3</maven-failsafe-plugin.version> |
| 28 | + <maven-surefire-plugin.version>3.0.0-M3</maven-surefire-plugin.version> |
| 29 | + <maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version> <!-- required for jx --> |
| 30 | + </properties> |
| 31 | + <dependencyManagement> |
| 32 | + <dependencies> |
| 33 | + <dependency> |
| 34 | + <groupId>org.activiti.cloud.notifications.graphql</groupId> |
| 35 | + <artifactId>activiti-cloud-notifications-graphql-dependencies</artifactId> |
| 36 | + <version>${activiti-cloud-notifications-service-graphql.version}</version> |
| 37 | + <scope>import</scope> |
| 38 | + <type>pom</type> |
| 39 | + </dependency> |
| 40 | + </dependencies> |
| 41 | + </dependencyManagement> |
| 42 | + <dependencies> |
| 43 | + <dependency> |
| 44 | + <groupId>org.activiti.cloud.notifications.graphql</groupId> |
| 45 | + <artifactId>activiti-cloud-starter-notifications-graphql</artifactId> |
| 46 | + </dependency> |
| 47 | + <dependency> |
| 48 | + <groupId>org.activiti.cloud.common</groupId> |
| 49 | + <artifactId>activiti-cloud-services-common-security-keycloak</artifactId> |
| 50 | + </dependency> |
| 51 | + <dependency> |
| 52 | + <groupId>org.postgresql</groupId> |
| 53 | + <artifactId>postgresql</artifactId> |
| 54 | + <scope>runtime</scope> |
| 55 | + </dependency> |
| 56 | + <dependency> |
| 57 | + <groupId>junit</groupId> |
| 58 | + <artifactId>junit</artifactId> |
| 59 | + <scope>test</scope> |
| 60 | + </dependency> |
| 61 | + <dependency> |
| 62 | + <groupId>org.springframework.boot</groupId> |
| 63 | + <artifactId>spring-boot-test</artifactId> |
| 64 | + <scope>test</scope> |
| 65 | + </dependency> |
| 66 | + <dependency> |
| 67 | + <groupId>org.springframework</groupId> |
| 68 | + <artifactId>spring-test</artifactId> |
| 69 | + <scope>test</scope> |
| 70 | + </dependency> |
| 71 | + <dependency> |
| 72 | + <groupId>com.h2database</groupId> |
| 73 | + <artifactId>h2</artifactId> |
| 74 | + <optional>true</optional> |
| 75 | + </dependency> |
| 76 | + <dependency> |
| 77 | + <groupId>org.springframework.cloud</groupId> |
| 78 | + <artifactId>spring-cloud-starter-stream-rabbit</artifactId> |
| 79 | + </dependency> |
| 80 | + <!-- Marker Pom for Dependency Conversion Validation --> |
| 81 | + <dependency> |
| 82 | + <groupId>org.activiti.cloud.notifications.graphql</groupId> |
| 83 | + <artifactId>activiti-cloud-notifications-graphql-dependencies</artifactId> |
| 84 | + <version>${activiti-cloud-notifications-service-graphql.version}</version> |
| 85 | + <type>pom</type> |
| 86 | + </dependency> |
| 87 | + |
| 88 | + <dependency> |
| 89 | + <groupId>org.springframework.boot</groupId> |
| 90 | + <artifactId>spring-boot-starter-parent</artifactId> |
| 91 | + <version>${project.parent.version}</version> |
| 92 | + <type>pom</type> |
| 93 | + </dependency> |
| 94 | + <!-- Marker Pom for Dependency Conversion Validation --> |
| 95 | + |
| 96 | + </dependencies> |
| 97 | + <build> |
| 98 | + <plugins> |
| 99 | + <plugin> |
| 100 | + <groupId>org.apache.maven.plugins</groupId> |
| 101 | + <artifactId>maven-compiler-plugin</artifactId> |
| 102 | + <version>${maven-compiler-plugin.version}</version> |
| 103 | + <configuration> |
| 104 | + <release>${java.version}</release> |
| 105 | + <source>${java.version}</source> |
| 106 | + <target>${java.version}</target> |
| 107 | + <showDeprecation>true</showDeprecation> |
| 108 | + <showWarnings>true</showWarnings> |
| 109 | + <optimize>true</optimize> |
| 110 | + <compilerArgs> |
| 111 | + <arg>-parameters</arg> |
| 112 | + </compilerArgs> |
| 113 | + </configuration> |
| 114 | + </plugin> |
| 115 | + <plugin> |
| 116 | + <groupId>org.springframework.boot</groupId> |
| 117 | + <artifactId>spring-boot-maven-plugin</artifactId> |
| 118 | + <executions> |
| 119 | + <execution> |
| 120 | + <goals> |
| 121 | + <goal>repackage</goal> |
| 122 | + </goals> |
| 123 | + </execution> |
| 124 | + </executions> |
| 125 | + </plugin> |
| 126 | + <plugin> |
| 127 | + <groupId>org.apache.maven.plugins</groupId> |
| 128 | + <artifactId>maven-deploy-plugin</artifactId> |
| 129 | + <version>${maven-deploy-plugin.version}</version> |
| 130 | + </plugin> |
| 131 | + <plugin> |
| 132 | + <groupId>org.apache.maven.plugins</groupId> |
| 133 | + <artifactId>maven-surefire-plugin</artifactId> |
| 134 | + <version>${maven-surefire-plugin.version}</version> |
| 135 | + </plugin> |
| 136 | + <plugin> |
| 137 | + <groupId>org.apache.maven.plugins</groupId> |
| 138 | + <artifactId>maven-failsafe-plugin</artifactId> |
| 139 | + <version>${maven-failsafe-plugin.version}</version> |
| 140 | + <configuration> |
| 141 | + <forkCount>0</forkCount> |
| 142 | + <useSystemClassLoader>false</useSystemClassLoader> |
| 143 | + </configuration> |
| 144 | + <executions> |
| 145 | + <execution> |
| 146 | + <goals> |
| 147 | + <goal>integration-test</goal> |
| 148 | + <goal>verify</goal> |
| 149 | + </goals> |
| 150 | + </execution> |
| 151 | + </executions> |
| 152 | + </plugin> |
| 153 | + </plugins> |
| 154 | + </build> |
| 155 | + <repositories> |
| 156 | + <repository> |
| 157 | + <id>activiti-releases</id> |
| 158 | + <name>Activiti Releases</name> |
| 159 | + <url>https://artifacts.alfresco.com/nexus/content/repositories/activiti-releases/</url> |
| 160 | + </repository> |
| 161 | + </repositories> |
| 162 | +</project> |
0 commit comments