Skip to content

Commit

Permalink
#302 invoker tests disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Jul 12, 2022
1 parent f920e13 commit 7bde2d2
Show file tree
Hide file tree
Showing 33 changed files with 76 additions and 27 deletions.
11 changes: 4 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -192,16 +192,13 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
<version>0.18.19</version>
<configuration>
<excludes combine.children="append">
<exclude>checkstyle:/src/it/.*</exclude>
<exclude>checkstyle:/src/it.*</exclude>
<exclude>checkstyle:/src/site/apt/.*</exclude>
<exclude>pmd:/src/it/.*</exclude>
<exclude>findbugs:.*</exclude>
<exclude>xml:/src/it/settings.xml</exclude>
<exclude>checkstyle:\\src\\it\\.*</exclude>
<exclude>pmd:/src/it.*</exclude>
<exclude>checkstyle:\\src\\it.*</exclude>
<exclude>checkstyle:\\src\\site\\apt\\.*</exclude>
<exclude>pmd:\\src\\it\\.*</exclude>
<exclude>pmd:\\src\\it.*</exclude>
<exclude>findbugs:.*</exclude>
<exclude>xml:\\src\\it\\settings.xml</exclude>
</excludes>
</configuration>
</plugin>
Expand Down
File renamed without changes.
File renamed without changes.
37 changes: 25 additions & 12 deletions src/it/weaving/pom.xml → src/it-disabled/loggable/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
<parent>
<groupId>com.jcabi</groupId>
<artifactId>parent</artifactId>
<version>0.37.1</version>
<version>0.58.0</version>
</parent>
<artifactId>jcabi-test</artifactId>
<name>test</name>
<version>1.0</version>
<artifactId>loggable</artifactId>
<name>loggable</name>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<dependencies>
<dependency>
Expand All @@ -58,20 +58,33 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
</exclusions>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<version>1.9.7</version>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.6.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>5.6.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<version>5.6.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
<parent>
<groupId>com.jcabi</groupId>
<artifactId>parent</artifactId>
<version>0.37.1</version>
<version>0.58.0</version>
</parent>
<artifactId>jcabi-test</artifactId>
<name>test</name>
<version>1.0</version>
<artifactId>processor</artifactId>
<name>processor</name>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<dependencies>
<dependency>
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
47 changes: 43 additions & 4 deletions src/it/loggable/pom.xml → src/it-disabled/weaving/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
<parent>
<groupId>com.jcabi</groupId>
<artifactId>parent</artifactId>
<version>0.37.1</version>
<version>0.58.0</version>
</parent>
<artifactId>jcabi-test</artifactId>
<name>test</name>
<version>1.0</version>
<artifactId>weaving</artifactId>
<name>weaving</name>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<dependencies>
<dependency>
Expand All @@ -57,9 +57,48 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>2.0.1.Final</version>
</dependency>
<dependency>
<groupId>org.hibernate.validator</groupId>
<artifactId>hibernate-validator</artifactId>
<version>6.0.13.Final</version>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<version>1.9.7</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.6.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>5.6.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<version>5.6.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
File renamed without changes.
Empty file.
File renamed without changes.

0 comments on commit 7bde2d2

Please sign in to comment.