Commit 9ec2f92bd7ee7cf96c494e7424a5f6fb4597296b

Authored by Ednara Oliveira
1 parent e698525a
Exists in master

Adição da dependência do hibernate-validator com escopo de teste.

Showing 1 changed file with 40 additions and 26 deletions   Show diff stats
impl/extension/jpa/pom.xml
1   -<!-- Demoiselle Framework Copyright (C) 2010 SERPRO ============================================================================
2   - This file is part of Demoiselle Framework. Demoiselle Framework is free software;
3   - you can redistribute it and/or modify it under the terms of the GNU Lesser
4   - General Public License version 3 as published by the Free Software Foundation.
5   - This program is distributed in the hope that it will be useful, but WITHOUT
6   - ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
7   - FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
8   - You should have received a copy of the GNU Lesser General Public License
9   - version 3 along with this program; if not, see <http://www.gnu.org/licenses
10   - /> or write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
11   - Floor, Boston, MA 02110-1301, USA. ============================================================================
12   - Este arquivo é parte do Framework Demoiselle. O Framework Demoiselle é um
13   - software livre; você pode redistribuí-lo e/ou modificá-lo dentro dos termos
14   - da GNU LGPL versão 3 como publicada pela Fundação do Software Livre (FSF).
15   - Este programa é distribuído na esperança que possa ser útil, mas SEM NENHUMA
16   - GARANTIA; sem uma garantia implícita de ADEQUAÇÃO a qualquer MERCADO ou APLICAÇÃO
17   - EM PARTICULAR. Veja a Licença Pública Geral GNU/LGPL em português para maiores
18   - detalhes. Você deve ter recebido uma cópia da GNU LGPL versão 3, sob o título
19   - "LICENCA.txt", junto com esse programa. Se não, acesse <http://www.gnu.org/licenses
20   - /> ou escreva para a Fundação do Software Livre (FSF) Inc., 51 Franklin St,
21   - Fifth Floor, Boston, MA 02111-1301, USA. -->
22   -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23   - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  1 +<!--
  2 + Demoiselle Framework
  3 + Copyright (C) 2010 SERPRO
  4 + ============================================================================
  5 + This file is part of Demoiselle Framework.
  6 +
  7 + Demoiselle Framework is free software; you can redistribute it and/or
  8 + modify it under the terms of the GNU Lesser General Public License version 3
  9 + as published by the Free Software Foundation.
  10 +
  11 + This program is distributed in the hope that it will be useful,
  12 + but WITHOUT ANY WARRANTY; without even the implied warranty of
  13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14 + GNU General Public License for more details.
  15 +
  16 + You should have received a copy of the GNU Lesser General Public License version 3
  17 + along with this program; if not, see <http://www.gnu.org/licenses />
  18 + or write to the Free Software Foundation, Inc., 51 Franklin Street,
  19 + Fifth Floor, Boston, MA 02110-1301, USA.
  20 + ============================================================================
  21 + Este arquivo é parte do Framework Demoiselle.
  22 +
  23 + O Framework Demoiselle é um software livre; você pode redistribuí-lo e/ou
  24 + modificá-lo dentro dos termos da GNU LGPL versão 3 como publicada pela Fundação
  25 + do Software Livre (FSF).
  26 +
  27 + Este programa é distribuído na esperança que possa ser útil, mas SEM NENHUMA
  28 + GARANTIA; sem uma garantia implícita de ADEQUAÇÃO a qualquer MERCADO ou
  29 + APLICAÇÃO EM PARTICULAR. Veja a Licença Pública Geral GNU/LGPL em português
  30 + para maiores detalhes.
  31 +
  32 + Você deve ter recebido uma cópia da GNU LGPL versão 3, sob o título
  33 + "LICENCA.txt", junto com esse programa. Se não, acesse <http://www.gnu.org/licenses />
  34 + ou escreva para a Fundação do Software Livre (FSF) Inc.,
  35 + 51 Franklin St, Fifth Floor, Boston, MA 02111-1301, USA.
  36 +-->
  37 +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
24 38  
25 39 <modelVersion>4.0.0</modelVersion>
26 40  
... ... @@ -63,11 +77,11 @@
63 77 <scope>test</scope>
64 78 </dependency>
65 79 <dependency>
66   - <groupId>br.gov.frameworkdemoiselle.component</groupId>
67   - <artifactId>demoiselle-junit</artifactId>
68   - <version>2.3.0-RC2-SNAPSHOT</version>
  80 + <groupId>org.hibernate</groupId>
  81 + <artifactId>hibernate-validator</artifactId>
69 82 <scope>test</scope>
70 83 </dependency>
  84 +
71 85 <dependency>
72 86 <groupId>hsqldb</groupId>
73 87 <artifactId>hsqldb</artifactId>
... ...