|
| 1 | +<?xml version="1.0"?> |
| 2 | +<!-- The MIT License Copyright (c) 2014-2016 Ilkka Seppälä Permission is |
| 3 | + hereby granted, free of charge, to any person obtaining a copy of this software |
| 4 | + and associated documentation files (the "Software"), to deal in the Software |
| 5 | + without restriction, including without limitation the rights to use, copy, |
| 6 | + modify, merge, publish, distribute, sublicense, and/or sell copies of the |
| 7 | + Software, and to permit persons to whom the Software is furnished to do so, |
| 8 | + subject to the following conditions: The above copyright notice and this |
| 9 | + permission notice shall be included in all copies or substantial portions |
| 10 | + of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY |
| 11 | + KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 12 | + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN |
| 13 | + NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, |
| 14 | + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, |
| 15 | + ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
| 16 | + DEALINGS IN THE SOFTWARE. --> |
| 17 | +<project |
| 18 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" |
| 19 | + xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
| 20 | + <modelVersion>4.0.0</modelVersion> |
| 21 | + <parent> |
| 22 | + <groupId>com.iluwatar</groupId> |
| 23 | + <artifactId>java-design-patterns</artifactId> |
| 24 | + <version>1.16.0-SNAPSHOT</version> |
| 25 | + </parent> |
| 26 | + <artifactId>cqrs</artifactId> |
| 27 | + <dependencies> |
| 28 | + <dependency> |
| 29 | + <groupId>junit</groupId> |
| 30 | + <artifactId>junit</artifactId> |
| 31 | + <scope>test</scope> |
| 32 | + </dependency> |
| 33 | + <dependency> |
| 34 | + <groupId>com.h2database</groupId> |
| 35 | + <artifactId>h2</artifactId> |
| 36 | + </dependency> |
| 37 | + <dependency> |
| 38 | + <groupId>org.hibernate</groupId> |
| 39 | + <artifactId>hibernate-core</artifactId> |
| 40 | + </dependency> |
| 41 | + </dependencies> |
| 42 | +</project> |
0 commit comments