|
| 1 | +<!-- |
| 2 | +
|
| 3 | + Copyright (c) 2013-2015 by The SeedStack authors. All rights reserved. |
| 4 | +
|
| 5 | + This file is part of SeedStack, An enterprise-oriented full development stack. |
| 6 | +
|
| 7 | + This Source Code Form is subject to the terms of the Mozilla Public |
| 8 | + License, v. 2.0. If a copy of the MPL was not distributed with this |
| 9 | + file, You can obtain one at http://mozilla.org/MPL/2.0/. |
| 10 | +
|
| 11 | +--> |
| 12 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 13 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 14 | + <modelVersion>4.0.0</modelVersion> |
| 15 | + |
| 16 | + <parent> |
| 17 | + <groupId>org.seedstack</groupId> |
| 18 | + <artifactId>parent</artifactId> |
| 19 | + <version>2.0.1-SNAPSHOT</version> |
| 20 | + </parent> |
| 21 | + |
| 22 | + <artifactId>seed-validation</artifactId> |
| 23 | + <version>2.0.1-SNAPSHOT</version> |
| 24 | + |
| 25 | + <properties> |
| 26 | + <seed.version>2.0.0</seed.version> |
| 27 | + <hibernate-validator.version>5.1.3.Final</hibernate-validator.version> |
| 28 | + |
| 29 | + <compatibility.groupId>org.seedstack.seed</compatibility.groupId> |
| 30 | + <compatibility.artifactId>seed-validation-support</compatibility.artifactId> |
| 31 | + <compatibility.version>2.0.0</compatibility.version> |
| 32 | + </properties> |
| 33 | + |
| 34 | + <build> |
| 35 | + <pluginManagement> |
| 36 | + <plugins> |
| 37 | + <plugin> |
| 38 | + <groupId>org.codehaus.mojo</groupId> |
| 39 | + <artifactId>license-maven-plugin</artifactId> |
| 40 | + <configuration> |
| 41 | + <includedLicenses> |
| 42 | + <includedLicense>Apache 2</includedLicense> |
| 43 | + <includedLicense>BSD</includedLicense> |
| 44 | + <includedLicense>EPL 1.0</includedLicense> |
| 45 | + <includedLicense>LGPL 2.1</includedLicense> |
| 46 | + <includedLicense>LGPL 3.0</includedLicense> |
| 47 | + <includedLicense>MIT License</includedLicense> |
| 48 | + <includedLicense>MPL 2.0</includedLicense> |
| 49 | + <includedLicense>The JSON License</includedLicense> |
| 50 | + <includedLicense>Public Domain</includedLicense> |
| 51 | + <includedLicense>WTFPL</includedLicense> |
| 52 | + |
| 53 | + <!-- Some licenses are ignored because they are alternatives to acceptable licenses and the plugin doesn't handle alternate licenses --> |
| 54 | + <includedLicense>IGNORED_LICENSE</includedLicense> |
| 55 | + </includedLicenses> |
| 56 | + <licenseMerges> |
| 57 | + <licenseMerge>Apache 2|Apache License, Version 2.0</licenseMerge> |
| 58 | + <licenseMerge>Apache 2|The Apache Software License, Version 2.0</licenseMerge> |
| 59 | + <licenseMerge>Apache 2|Apache License 2.0</licenseMerge> |
| 60 | + <licenseMerge>Apache 2|Apache License, version 2.0</licenseMerge> |
| 61 | + <licenseMerge>BSD|The New BSD License</licenseMerge> |
| 62 | + <licenseMerge>EPL 1.0|Eclipse Public License, Version 1.0</licenseMerge> |
| 63 | + <licenseMerge>LGPL 2.1|GNU Lesser General Public License, Version 2.1</licenseMerge> |
| 64 | + <licenseMerge>LGPL 3.0|GNU Lesser Public License</licenseMerge> |
| 65 | + <licenseMerge>IGNORED_LICENSE|MPL 1.1</licenseMerge> |
| 66 | + <licenseMerge>IGNORED_LICENSE|LGPL 2.1</licenseMerge> |
| 67 | + </licenseMerges> |
| 68 | + </configuration> |
| 69 | + </plugin> |
| 70 | + </plugins> |
| 71 | + </pluginManagement> |
| 72 | + </build> |
| 73 | + |
| 74 | + <dependencies> |
| 75 | + <dependency> |
| 76 | + <groupId>org.seedstack.seed</groupId> |
| 77 | + <artifactId>seed-core-support-core</artifactId> |
| 78 | + <version>${seed.version}</version> |
| 79 | + </dependency> |
| 80 | + <dependency> |
| 81 | + <groupId>org.hibernate</groupId> |
| 82 | + <artifactId>hibernate-validator</artifactId> |
| 83 | + <version>${hibernate-validator.version}</version> |
| 84 | + <optional>true</optional> |
| 85 | + </dependency> |
| 86 | + |
| 87 | + <dependency> |
| 88 | + <groupId>org.seedstack.seed</groupId> |
| 89 | + <artifactId>seed-integrationtest-support-core</artifactId> |
| 90 | + <version>${seed.version}</version> |
| 91 | + <scope>test</scope> |
| 92 | + </dependency> |
| 93 | + <dependency> |
| 94 | + <groupId>org.seedstack.seed</groupId> |
| 95 | + <artifactId>seed-el-support</artifactId> |
| 96 | + <version>${seed.version}</version> |
| 97 | + <scope>test</scope> |
| 98 | + </dependency> |
| 99 | + <dependency> |
| 100 | + <groupId>javax.el</groupId> |
| 101 | + <artifactId>javax.el-api</artifactId> |
| 102 | + <version>2.2.5</version> |
| 103 | + <scope>test</scope> |
| 104 | + </dependency> |
| 105 | + <dependency> |
| 106 | + <groupId>ch.qos.logback</groupId> |
| 107 | + <artifactId>logback-classic</artifactId> |
| 108 | + <version>1.1.3</version> |
| 109 | + <scope>test</scope> |
| 110 | + </dependency> |
| 111 | + </dependencies> |
| 112 | + |
| 113 | + <scm> |
| 114 | + <url>https://github.com/seedstack/validation-addon</url> |
| 115 | + <connection>scm:git:git://github.com/seedstack/validation-addon.git</connection> |
| 116 | + < developerConnection>scm:git: [email protected]:seedstack/validation-addon.git</ developerConnection> |
| 117 | + <tag>HEAD</tag> |
| 118 | + </scm> |
| 119 | + |
| 120 | + <profiles> |
| 121 | + <profile> |
| 122 | + <id>staging</id> |
| 123 | + <repositories> |
| 124 | + <repository> |
| 125 | + <id>sonatype-nexus-staging</id> |
| 126 | + <name>Sonatype Nexus Staging</name> |
| 127 | + <url>https://oss.sonatype.org/content/groups/staging</url> |
| 128 | + </repository> |
| 129 | + </repositories> |
| 130 | + <pluginRepositories> |
| 131 | + <pluginRepository> |
| 132 | + <id>sonatype-nexus-staging</id> |
| 133 | + <name>Sonatype Nexus Staging</name> |
| 134 | + <url>https://oss.sonatype.org/content/groups/staging</url> |
| 135 | + </pluginRepository> |
| 136 | + </pluginRepositories> |
| 137 | + </profile> |
| 138 | + </profiles> |
| 139 | +</project> |
0 commit comments