<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.kicksolutions</groupId> <artifactId>mock-swagger-reactor</artifactId> <version>0.0.1-beta</version> </parent> <groupId>io.github.kicksolutions</groupId> <artifactId>mock-swagger-server</artifactId> <version>0.0.1-beta</version> <description>Server </description> <packaging>war</packaging> <name>${project.groupId}:${project.artifactId}</name> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>3.1.0</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>mock-swagger-core</artifactId> <version>${project.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.tomcat.maven</groupId> <artifactId>tomcat7-maven-plugin</artifactId> <version>2.1</version> <executions> <execution> <id>tomcat-run</id> <goals> <goal>exec-war-only</goal> </goals> <phase>package</phase> <configuration> <path>/</path> <enableNaming>false</enableNaming> <charset>utf-8</charset> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>
<dependency> <groupId>io.github.kicksolutions</groupId> <artifactId>mock-swagger-server</artifactId> <version>0.0.1-beta</version> <classifier>exec-war</classifier> </dependency>
io.github.kicksolutions:mock-swagger-server:0.0.1-beta:exec-war