|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- ~ Copyright (C) open knowledge GmbH. ~ ~ Licensed under the Apache License, |
| 3 | + Version 2.0 (the "License"); you may not use this file except in compliance |
| 4 | + with ~ the License. You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 5 | + ~ ~ Unless required by applicable law or agreed to in writing, software distributed |
| 6 | + under the License is distributed on ~ an "AS IS" BASIS, WITHOUT WARRANTIES |
| 7 | + OR CONDITIONS OF ANY KIND, either express or implied. See the License for |
| 8 | + the ~ specific language governing permissions and limitations under the License. --> |
| 9 | + |
| 10 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 11 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 12 | + <modelVersion>4.0.0</modelVersion> |
| 13 | + |
| 14 | + <groupId>de.openkonwledge.sample.shop</groupId> |
| 15 | + <artifactId>${service.name}</artifactId> |
| 16 | + <version>1.0.0-SNAPSHOT</version> |
| 17 | + |
| 18 | + <properties> |
| 19 | + <service.name>online-shop</service.name> |
| 20 | + <maven.compiler.source>11</maven.compiler.source> |
| 21 | + <maven.compiler.target>11</maven.compiler.target> |
| 22 | + <failOnMissingWebXml>false</failOnMissingWebXml> |
| 23 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 24 | + <meecrowave.version>1.2.15</meecrowave.version> |
| 25 | + <deltaspike.version>1.9.6</deltaspike.version> |
| 26 | + <junit.version>5.8.2</junit.version> |
| 27 | + </properties> |
| 28 | + |
| 29 | + <dependencies> |
| 30 | + |
| 31 | + <dependency> |
| 32 | + <groupId>org.apache.meecrowave</groupId> |
| 33 | + <artifactId>meecrowave-specs-api</artifactId> |
| 34 | + <version>${meecrowave.version}</version> |
| 35 | + <scope>provided</scope> |
| 36 | + </dependency> |
| 37 | + <dependency> |
| 38 | + <groupId>org.apache.meecrowave</groupId> |
| 39 | + <artifactId>meecrowave-core</artifactId> |
| 40 | + <version>${meecrowave.version}</version> |
| 41 | + <scope>provided</scope> |
| 42 | + </dependency> |
| 43 | + <dependency> |
| 44 | + <groupId>org.apache.geronimo.specs</groupId> |
| 45 | + <artifactId>geronimo-validation_1.0_spec</artifactId> |
| 46 | + <version>1.1</version> |
| 47 | + </dependency> |
| 48 | + <dependency> |
| 49 | + <groupId>org.eclipse.microprofile.config</groupId> |
| 50 | + <artifactId>microprofile-config-api</artifactId> |
| 51 | + <version>1.4</version> |
| 52 | + </dependency> |
| 53 | + <dependency> |
| 54 | + <groupId>org.apache.geronimo.config</groupId> |
| 55 | + <artifactId>geronimo-config-impl</artifactId> |
| 56 | + <version>1.2.2</version> |
| 57 | + </dependency> |
| 58 | + <dependency> |
| 59 | + <groupId>org.eclipse.microprofile.jwt</groupId> |
| 60 | + <artifactId>microprofile-jwt-auth-api</artifactId> |
| 61 | + <version>1.2.1</version> |
| 62 | + </dependency> |
| 63 | + <dependency> |
| 64 | + <groupId>org.apache.geronimo</groupId> |
| 65 | + <artifactId>geronimo-jwt-auth</artifactId> |
| 66 | + <version>1.0.4</version> |
| 67 | + </dependency> |
| 68 | + <dependency> |
| 69 | + <groupId>org.apache.deltaspike.modules</groupId> |
| 70 | + <artifactId>deltaspike-security-module-api</artifactId> |
| 71 | + <version>${deltaspike.version}</version> |
| 72 | + <scope>compile</scope> |
| 73 | + </dependency> |
| 74 | + <dependency> |
| 75 | + <groupId>org.apache.deltaspike.modules</groupId> |
| 76 | + <artifactId>deltaspike-security-module-impl</artifactId> |
| 77 | + <version>${deltaspike.version}</version> |
| 78 | + <scope>runtime</scope> |
| 79 | + </dependency> |
| 80 | + <dependency> |
| 81 | + <groupId>org.apache.commons</groupId> |
| 82 | + <artifactId>commons-lang3</artifactId> |
| 83 | + <version>3.9</version> |
| 84 | + </dependency> |
| 85 | + |
| 86 | + <dependency> |
| 87 | + <groupId>org.junit.jupiter</groupId> |
| 88 | + <artifactId>junit-jupiter-api</artifactId> |
| 89 | + <version>${junit.version}</version> |
| 90 | + <scope>test</scope> |
| 91 | + </dependency> |
| 92 | + <dependency> |
| 93 | + <groupId>org.junit.jupiter</groupId> |
| 94 | + <artifactId>junit-jupiter-engine</artifactId> |
| 95 | + <version>${junit.version}</version> |
| 96 | + <scope>test</scope> |
| 97 | + </dependency> |
| 98 | + <dependency> |
| 99 | + <groupId>org.assertj</groupId> |
| 100 | + <artifactId>assertj-core</artifactId> |
| 101 | + <version>3.22.0</version> |
| 102 | + <scope>test</scope> |
| 103 | + </dependency> |
| 104 | + <dependency> |
| 105 | + <groupId>org.mockito</groupId> |
| 106 | + <artifactId>mockito-core</artifactId> |
| 107 | + <version>2.28.2</version> |
| 108 | + <scope>test</scope> |
| 109 | + </dependency> |
| 110 | + <dependency> |
| 111 | + <groupId>org.apache.meecrowave</groupId> |
| 112 | + <artifactId>meecrowave-junit</artifactId> |
| 113 | + <version>${meecrowave.version}</version> |
| 114 | + <scope>test</scope> |
| 115 | + </dependency> |
| 116 | + <dependency> |
| 117 | + <groupId>rocks.limburg.cdimock</groupId> |
| 118 | + <artifactId>cdimock</artifactId> |
| 119 | + <version>1.0.4</version> |
| 120 | + <scope>test</scope> |
| 121 | + </dependency> |
| 122 | + <dependency> |
| 123 | + <groupId>com.tngtech.archunit</groupId> |
| 124 | + <artifactId>archunit</artifactId> |
| 125 | + <version>1.0.1</version> |
| 126 | + <scope>test</scope> |
| 127 | + </dependency> |
| 128 | + </dependencies> |
| 129 | + |
| 130 | + <build> |
| 131 | + <finalName>${project.artifactId}</finalName> |
| 132 | + <plugins> |
| 133 | + <plugin> |
| 134 | + <groupId>org.apache.maven.plugins</groupId> |
| 135 | + <artifactId>maven-surefire-plugin</artifactId> |
| 136 | + <version>3.0.0-M5</version> |
| 137 | + </plugin> |
| 138 | + <plugin> |
| 139 | + <groupId>org.apache.meecrowave</groupId> |
| 140 | + <artifactId>meecrowave-maven-plugin</artifactId> |
| 141 | + <version>${meecrowave.version}</version> |
| 142 | + </plugin> |
| 143 | + <plugin> |
| 144 | + <artifactId>maven-checkstyle-plugin</artifactId> |
| 145 | + <version>3.2.0</version> |
| 146 | + <configuration> |
| 147 | + <consoleOutput>true</consoleOutput> |
| 148 | + <headerLocation>${project.basedir}/src/main/checkstyle/java.header</headerLocation> |
| 149 | + <failsOnError>true</failsOnError> |
| 150 | + <consoleOutput>true</consoleOutput> |
| 151 | + </configuration> |
| 152 | + <executions> |
| 153 | + <execution> |
| 154 | + <id>compile</id> |
| 155 | + <phase>compile</phase> |
| 156 | + <goals> |
| 157 | + <goal>checkstyle</goal> |
| 158 | + </goals> |
| 159 | + <configuration> |
| 160 | + <configLocation>${project.basedir}/src/main/checkstyle/configuration.xml</configLocation> |
| 161 | + <includeTestSourceDirectory>true</includeTestSourceDirectory> |
| 162 | + </configuration> |
| 163 | + </execution> |
| 164 | + </executions> |
| 165 | + </plugin> |
| 166 | + </plugins> |
| 167 | + </build> |
| 168 | +</project> |
0 commit comments