web-shell-app
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.net128.oss.web.application</groupId>
<artifactId>web-shell-app</artifactId>
<version>0.1.7</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>
<groupId>com.net128.oss.web.application</groupId>
<artifactId>web-shell-app</artifactId>
<version>0.1.7</version>
<packaging>war</packaging>
<name>web-shell-app</name>
<description>a web shell application based on the web-shell library</description>
<parent>
<groupId>com.net128.oss.web</groupId>
<artifactId>web-modules</artifactId>
<version>1.2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>com.net128.oss.web.lib</groupId>
<artifactId>webshell</artifactId>
<version>[0.1.4,)</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<scm>
<tag>web-shell-app-0.1.7</tag>
</scm>
</project>