|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | + |
| 4 | + Copyright © 2017 Sven Ruppert (sven.ruppert@gmail.com) |
| 5 | + |
| 6 | + Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | + you may not use this file except in compliance with the License. |
| 8 | + You may obtain a copy of the License at |
| 9 | + |
| 10 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | + |
| 12 | + Unless required by applicable law or agreed to in writing, software |
| 13 | + distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | + See the License for the specific language governing permissions and |
| 16 | + limitations under the License. |
| 17 | + |
| 18 | +--> |
| 19 | +<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 20 | + xmlns="http://maven.apache.org/POM/4.0.0" |
| 21 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 22 | + <modelVersion>4.0.0</modelVersion> |
| 23 | + |
| 24 | + <groupId>org.rapidpm.vaadin</groupId> |
| 25 | + <artifactId>rapidpm-vaadin10-imagecache-with-mapdb</artifactId> |
| 26 | + <version>01.02.00-RPM-SNAPSHOT</version> |
| 27 | + |
| 28 | + <name>RapidPM - Vaadin10 - Imagecache with MapDB</name> |
| 29 | + |
| 30 | + <packaging>jar</packaging> |
| 31 | + |
| 32 | + <inceptionYear>2018</inceptionYear> |
| 33 | + <organization> |
| 34 | + <name>Sven Ruppert</name> |
| 35 | + <url>http://www.sven-ruppert.de</url> |
| 36 | + </organization> |
| 37 | + <url>https://github.com/Java-Publications/javapro_002_vaadin-v10-image-cache-with-mapdb</url> |
| 38 | + <scm> |
| 39 | + <url>https://github.com/Java-Publications/javapro_002_vaadin-v10-image-cache-with-mapdb</url> |
| 40 | + <connection> |
| 41 | + scm:git:https://github.com/Java-Publications/javapro_002_vaadin-v10-image-cache-with-mapdb.git |
| 42 | + </connection> |
| 43 | + <developerConnection> |
| 44 | + scm:git:https://github.com/Java-Publications/javapro_002_vaadin-v10-image-cache-with-mapdb.git |
| 45 | + </developerConnection> |
| 46 | + <tag>HEAD</tag> |
| 47 | + </scm> |
| 48 | + <developers> |
| 49 | + <developer> |
| 50 | + <name>Sven Ruppert</name> |
| 51 | + <email>sven.ruppert@gmail.com</email> |
| 52 | + <roles> |
| 53 | + <role>Developer</role> |
| 54 | + </roles> |
| 55 | + <timezone>+1</timezone> |
| 56 | + </developer> |
| 57 | + </developers> |
| 58 | + <issueManagement> |
| 59 | + <system>Github</system> |
| 60 | + <url> |
| 61 | + https://github.com/Java-Publications/javapro_002_vaadin-v10-image-cache-with-mapdb/issues |
| 62 | + </url> |
| 63 | + </issueManagement> |
| 64 | + <licenses> |
| 65 | + <license> |
| 66 | + <name>The Apache Software License, Version 2.0</name> |
| 67 | + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 68 | + <distribution>repo</distribution> |
| 69 | + <comments>A business-friendly OSS license</comments> |
| 70 | + </license> |
| 71 | + </licenses> |
| 72 | + |
| 73 | + <properties> |
| 74 | + <!--technical--> |
| 75 | + <!--<maven.compiler.release>11</maven.compiler.release>--> |
| 76 | + <maven.compiler.target>8</maven.compiler.target> |
| 77 | + <maven.compiler.source>8</maven.compiler.source> |
| 78 | + |
| 79 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 80 | + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 81 | + |
| 82 | + <!--Frameworks--> |
| 83 | + <vaadin.version>10.0.9</vaadin.version> |
| 84 | + <meecrowave.version>1.2.5</meecrowave.version> |
| 85 | + </properties> |
| 86 | + |
| 87 | + <!--<repositories>--> |
| 88 | + <!--<repository>--> |
| 89 | + <!--<id>vaadin-addons</id>--> |
| 90 | + <!--<url>http://maven.vaadin.com/vaadin-addons</url>--> |
| 91 | + <!--<!–<url>http://maven.vaadin.com/</url>–>--> |
| 92 | + <!--</repository>--> |
| 93 | + <!--</repositories>--> |
| 94 | + |
| 95 | + <!-- Just to disable any accidental deployment to maven.central --> |
| 96 | + <distributionManagement> |
| 97 | + <repository> |
| 98 | + <id>localhost</id> |
| 99 | + <url>file://${basedir}/target/repo/</url> |
| 100 | + </repository> |
| 101 | + <snapshotRepository> |
| 102 | + <id>localhost</id> |
| 103 | + <url>file://${basedir}/target/snapshot-repo/</url> |
| 104 | + </snapshotRepository> |
| 105 | + </distributionManagement> |
| 106 | + |
| 107 | + <dependencyManagement> |
| 108 | + <dependencies> |
| 109 | + <!--Vaadin --> |
| 110 | + <dependency> |
| 111 | + <groupId>com.vaadin</groupId> |
| 112 | + <artifactId>vaadin-bom</artifactId> |
| 113 | + <version>${vaadin.version}</version> |
| 114 | + <type>pom</type> |
| 115 | + <scope>import</scope> |
| 116 | + </dependency> |
| 117 | + </dependencies> |
| 118 | + </dependencyManagement> |
| 119 | + |
| 120 | + <dependencies> |
| 121 | + <dependency> |
| 122 | + <groupId>org.rapidpm</groupId> |
| 123 | + <artifactId>rapidpm-logger-adapter</artifactId> |
| 124 | + <version>01.00.01-RPM</version> |
| 125 | + </dependency> |
| 126 | + |
| 127 | + <dependency> |
| 128 | + <groupId>org.rapidpm</groupId> |
| 129 | + <artifactId>rapidpm-functional-reactive</artifactId> |
| 130 | + <version>01.00.01-RPM</version> |
| 131 | + </dependency> |
| 132 | + |
| 133 | + <!--Infrastructure--> |
| 134 | + <dependency> |
| 135 | + <groupId>org.apache.meecrowave</groupId> |
| 136 | + <artifactId>meecrowave-core</artifactId> |
| 137 | + <version>${meecrowave.version}</version> |
| 138 | + <scope>compile</scope> |
| 139 | + </dependency> |
| 140 | + |
| 141 | + <!--Vaadin --> |
| 142 | + <dependency> |
| 143 | + <groupId>com.vaadin</groupId> |
| 144 | + <artifactId>vaadin</artifactId> |
| 145 | + </dependency> |
| 146 | + |
| 147 | + <dependency> |
| 148 | + <groupId>com.vaadin</groupId> |
| 149 | + <artifactId>vaadin-lumo-theme</artifactId> |
| 150 | + </dependency> |
| 151 | + |
| 152 | + <!--Logging--> |
| 153 | + <dependency> |
| 154 | + <groupId>org.slf4j</groupId> |
| 155 | + <artifactId>slf4j-api</artifactId> |
| 156 | + </dependency> |
| 157 | + <dependency> |
| 158 | + <groupId>org.slf4j</groupId> |
| 159 | + <artifactId>slf4j-simple</artifactId> |
| 160 | + </dependency> |
| 161 | + |
| 162 | + <!--Persistence--> |
| 163 | + <dependency> |
| 164 | + <groupId>org.mapdb</groupId> |
| 165 | + <artifactId>mapdb</artifactId> |
| 166 | + <version>3.0.7</version> |
| 167 | + </dependency> |
| 168 | + |
| 169 | + </dependencies> |
| 170 | + |
| 171 | + <build> |
| 172 | + <plugins> |
| 173 | + <plugin> |
| 174 | + <groupId>org.apache.meecrowave</groupId> |
| 175 | + <artifactId>meecrowave-maven-plugin</artifactId> |
| 176 | + <version>${meecrowave.version}</version> |
| 177 | + </plugin> |
| 178 | + <plugin> |
| 179 | + <groupId>org.apache.maven.plugins</groupId> |
| 180 | + <artifactId>maven-war-plugin</artifactId> |
| 181 | + <version>3.2.2</version> |
| 182 | + <configuration> |
| 183 | + <failOnMissingWebXml>false</failOnMissingWebXml> |
| 184 | + </configuration> |
| 185 | + </plugin> |
| 186 | + </plugins> |
| 187 | + </build> |
| 188 | + |
| 189 | +</project> |
0 commit comments