Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
EasyTest Spring: An extension of EasyTest Core module to support Data Driven Testing for Spring based projects.
EasyTest Spring : An extension of EasyTest Core module to support Data Driven Testing for Spring based projects.
------------------------------------------------------------------------------------------------------

For details on using EasyTest Spring module look at : https://github.com/EaseTech/easytest/wiki/EasyTest-:-Spring-Integration
379 changes: 171 additions & 208 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,220 +1,183 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">
<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">

<!-- This is a version 4 POM file. -->
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>oss-parent</artifactId>
<groupId>org.sonatype.oss</groupId>
<version>7</version>
</parent>
<!-- The project details. -->
<groupId>org.easetech</groupId>
<artifactId>easytest-spring</artifactId>
<packaging>jar</packaging>
<name>EasyTest to ease Data Driven Testing</name>
<description>EasyTest is a JUnit extension perform Data Driven Testing with ease and simplicity.
<!-- This is a version 4 POM file. -->
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>oss-parent</artifactId>
<groupId>org.sonatype.oss</groupId>
<version>7</version>
</parent>
<!-- The project details. -->
<groupId>org.easetech</groupId>
<artifactId>easytest-spring</artifactId>
<packaging>jar</packaging>
<name>EasyTest to ease Data Driven Testing</name>
<description>EasyTest is a JUnit extension perform Data Driven Testing with ease and simplicity.
It supports method parameters with Test annotation and much more.</description>
<url>https://github.com/EaseTech/easytest</url>
<version>0.7.0-SNAPSHOT</version>
<url>https://github.com/EaseTech/easytest</url>
<version>1.0-SNAPSHOT</version>

<developers>
<developer>
<id>anujgandharv</id>
<name>Anuj Kumar</name>
<email>anuj.gandharv@gmail.com</email>
<url>http://www.kumaranuj.com</url>
</developer>
<developer>
<id>ravi-polampelli</id>
<name>Ravi Polampelli</name>
<email>ravi.polampelli@gmail.com</email>
</developer>
<developer>
<id>gpcmol</id>
<name>Christiaan Mol</name>
<email>gpcmol@gmail.com</email>
</developer>
</developers>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
<developers>
<developer>
<id>anujgandharv</id>
<name>Anuj Kumar</name>
<email>anuj.gandharv@gmail.com</email>
<url>http://www.kumaranuj.com</url>
</developer>
<developer>
<id>ravi-polampelli</id>
<name>Ravi Polampelli</name>
<email>ravi.polampelli@gmail.com</email>
</developer>
<developer>
<id>gpcmol</id>
<name>Christiaan Mol</name>
<email>gpcmol@gmail.com</email>
</developer>
</developers>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>

<scm>
<connection>scm:git:https://anujgandharv@github.com/EaseTech/easytest.git</connection>
<developerConnection>scm:git:https://anujgandharv@github.com/EaseTech/easytest.git</developerConnection>
<url>scm:git:https://anujgandharv@github.com/EaseTech/easytest</url>
</scm>
<scm>
<connection>scm:git:https://anujgandharv@github.com/EaseTech/easytest-spring.git</connection>
<developerConnection>scm:git:https://anujgandharv@github.com/EaseTech/easytest-spring.git</developerConnection>
<url>scm:git:https://anujgandharv@github.com/EaseTech/easytest-spring</url>
</scm>

<build>
<plugins>
<plugin>
<groupId>org.jvnet.jaxb2.maven2</groupId>
<artifactId>maven-jaxb2-plugin</artifactId>
<version>0.6.2</version>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<specVersion>2.2</specVersion>
<extension>true</extension>
<verbose>false</verbose>
<args>
<arg>-XtoString</arg>
<arg>-XhashCode</arg>
<arg>-Xequals</arg>
</args>
<plugins>
<plugin>
<groupId>org.jvnet.jaxb2_commons</groupId>
<artifactId>jaxb2-basics-annotate</artifactId>
<version>0.6.2</version>
</plugin>
<plugin>
<groupId>org.jvnet.jaxb2_commons</groupId>
<artifactId>jaxb2-basics</artifactId>
<version>0.6.2</version>
</plugin>
</plugins>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<showDeprecation>true</showDeprecation>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.1</version>
<configuration>
<useAgent>true</useAgent>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.2.2</version>
<configuration>
<username>anujgandharv</username>
<password>temp123</password>
<mavenExecutorId>forked-path</mavenExecutorId>
</configuration>
</plugin>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<showDeprecation>true</showDeprecation>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.1</version>
<configuration>
<useAgent>true</useAgent>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.2.2</version>
<configuration>
<username>anujgandharv</username>
<password>temp123</password>
<mavenExecutorId>forked-path</mavenExecutorId>
</configuration>
</plugin>

</plugins>
</build>
</plugins>
</build>

<profiles>
<profile>
<id>sourceAndjavadoc</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-source</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>release-sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<profiles>
<profile>
<id>sourceAndjavadoc</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-source</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>release-sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

<dependencies>
<dependency>
<groupId>org.easetech</groupId>
<artifactId>easytest-core</artifactId>
<version>0.7.0-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>3.0.6.RELEASE</version>
</dependency>
<dependencies>
<dependency>
<groupId>org.easetech</groupId>
<artifactId>easytest-core</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
<version>3.0.6.RELEASE</version>
<exclusions>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>3.0.6.RELEASE</version>
</dependency>

</exclusion>
<exclusion>
<groupId>junit</groupId>
<artifactId>junit</artifactId>

</exclusion>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>

</exclusion>

</exclusions>
</dependency>

</dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
<version>3.0.6.RELEASE</version>
<exclusions>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
<exclusion>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</exclusion>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>
Loading