spiral
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.shallowinggg</groupId>
<artifactId>spiral</artifactId>
<version>0.1.0</version>
</dependency><?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.github.shallowinggg</groupId>
<artifactId>parent</artifactId>
<version>1</version>
<relativePath />
</parent>
<artifactId>spiral</artifactId>
<version>0.1.0</version>
<packaging>jar</packaging>
<name>spiral</name>
<description>
The spiral project make it easier to do dubbo invocation tests.
It only should be used in dubbo 2.2.x - 2.6.x, for dubbo
2.7 provides tag route feature.
</description>
<url>https://github.com/shallowinggg/spiral</url>
<inceptionYear>2020</inceptionYear>
<licenses>
<license>
<name>Apache License Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Ding Shimin</name>
<id>shallowinggg</id>
<email>shallowinggg@icloud.com</email>
<roles>
<role>Developer</role>
<role>Owner</role>
</roles>
<timezone>+8</timezone>
</developer>
</developers>
<scm>
<url>https://github.com/shallowinggg/spiral</url>
<connection>scm:git:https://github.com/shallowinggg/spiral.git</connection>
<developerConnection>scm:git:https://github.com/shallowinggg/spiral.git</developerConnection>
<tag>HEAD</tag>
</scm>
<properties>
<clirr.comparisonVersion>0.1.0</clirr.comparisonVersion>
<wagon-git.version>2.0.3</wagon-git.version> <!-- Do not upgrade to 2.0.4 as it does not work with ssh properly -->
<wagon-ssh.version>3.4.0</wagon-ssh.version>
<fluido.version>1.9</fluido.version>
<dubbo.version>2.2.0</dubbo.version>
<jsr305.version>3.0.2</jsr305.version>
<spring-context.version>3.2.13.RELEASE</spring-context.version>
<mockio-core.version>3.5.13</mockio-core.version>
<junit.version>4.13.1</junit.version>
</properties>
<dependencies>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>${jsr305.version}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo</artifactId>
<version>${dubbo.version}</version>
<scope>provided</scope>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${spring-context.version}</version>
<scope>provided</scope>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- test dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockio-core.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<configLocation>${checkstyle.config}</configLocation>
</configuration>
<executions>
<execution>
<id>checkstyle</id>
<phase>verify</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- move this to parent -->
<!-- <plugin>-->
<!-- <groupId>org.apache.maven.plugins</groupId>-->
<!-- <artifactId>maven-site-plugin</artifactId>-->
<!-- <configuration>-->
<!-- <locales>en,es,ja,fr,zh_CN,ko</locales>-->
<!-- </configuration>-->
<!-- <dependencies>-->
<!-- <dependency>-->
<!-- <groupId>net.trajano.wagon</groupId>-->
<!-- <artifactId>wagon-git</artifactId>-->
<!-- <version>${wagon-git.version}</version>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>org.apache.maven.wagon</groupId>-->
<!-- <artifactId>wagon-ssh</artifactId>-->
<!-- <version>${wagon-ssh.version}</version>-->
<!-- </dependency>-->
<!-- <!– Additional entries for version site tracking only –>-->
<!-- <dependency>-->
<!-- <groupId>org.apache.maven.skins</groupId>-->
<!-- <artifactId>maven-fluido-skin</artifactId>-->
<!-- <version>${fluido.version}</version>-->
<!-- </dependency>-->
<!-- </dependencies>-->
<!-- </plugin>-->
</plugins>
</build>
</project>