| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| ~ Copyright (C) 2007-2010 JĂșlio Vilmar Gesser. |
| ~ Copyright (C) 2011, 2013-2015 The JavaParser Team. |
| ~ |
| ~ This file is part of JavaParser. |
| ~ |
| ~ JavaParser is free software: you can redistribute it and/or modify |
| ~ it under the terms of the GNU Lesser General Public License as published by |
| ~ the Free Software Foundation, either version 3 of the License, or |
| ~ (at your option) any later version. |
| ~ |
| ~ JavaParser is distributed in the hope that it will be useful, |
| ~ but WITHOUT ANY WARRANTY; without even the implied warranty of |
| ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| ~ GNU Lesser General Public License for more details. |
| ~ |
| ~ You should have received a copy of the GNU Lesser General Public License |
| ~ along with JavaParser. If not, see <http://www.gnu.org/licenses />. |
| --> |
| |
| <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/xsd/maven-4.0.0.xsd"> |
| <parent> |
| <artifactId>javaparser-parent</artifactId> |
| <groupId>com.github.javaparser</groupId> |
| <version>2.1.0</version> |
| </parent> |
| <modelVersion>4.0.0</modelVersion> |
| |
| <artifactId>javaparser-testing</artifactId> |
| |
| <properties> |
| <junit.version>4.11</junit.version> |
| <jbehave.version>3.9.3</jbehave.version> |
| </properties> |
| |
| <dependencies> |
| <dependency> |
| <groupId>com.github.javaparser</groupId> |
| <artifactId>javaparser-core</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <version>${junit.version}</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.jbehave</groupId> |
| <artifactId>jbehave-core</artifactId> |
| <version>${jbehave.version}</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>de.codecentric</groupId> |
| <artifactId>jbehave-junit-runner</artifactId> |
| <version>1.1.0</version> |
| </dependency> |
| </dependencies> |
| |
| </project> |