moskito-webui
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.anotheria</groupId>
<artifactId>moskito-webui</artifactId>
<version>5.0.0</version>
</dependency><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">
<parent>
<groupId>net.anotheria</groupId>
<artifactId>moskito</artifactId>
<version>5.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>moskito-webui</artifactId>
<version>5.0.0</version>
<name>moskito embedded web user interface</name>
<build>
<resources>
<resource>
<directory>${project.basedir}/src/main/resources</directory>
</resource>
<resource>
<directory>${project.basedir}/src/main/java</directory>
<includes>
<include>**/*.jsp</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.15.0</version>
<configuration>
<source>${source-version}</source>
<target>${target-version}</target>
<annotationProcessors>
<annotationProcessor>
org.distributeme.processors.GeneratorProcessorFactory
</annotationProcessor>
</annotationProcessors>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>net.anotheria</groupId>
<artifactId>ano-maf</artifactId>
</dependency>
<dependency>
<groupId>net.anotheria</groupId>
<artifactId>ano-plass</artifactId>
</dependency>
<dependency>
<groupId>net.anotheria</groupId>
<artifactId>ano-tags</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.web</groupId>
<artifactId>jakarta.servlet.jsp.jstl</artifactId>
<version>3.0.1</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
</dependency>
<!-- for obtaining name of the server -->
<dependency>
<groupId>net.anotheria</groupId>
<artifactId>ano-net</artifactId>
</dependency>
<!-- for json config -->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
</dependency>
<dependency>
<groupId>net.anotheria</groupId>
<artifactId>moskito-core</artifactId>
<version>${project.version}</version>
<exclusions>
<exclusion>
<artifactId>log4j</artifactId>
<groupId>log4j</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>net.anotheria</groupId>
<artifactId>moskito-web</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<version>4.0.5</version>
</dependency>
<dependency>
<groupId>jakarta.ws.rs</groupId>
<artifactId>jakarta.ws.rs-api</artifactId>
<version>3.1.0</version>
</dependency>
<!-- jax-rs -->
<dependency>
<groupId>net.anotheria</groupId>
<artifactId>distributeme-core</artifactId>
<version>${distributeme.version}</version>
</dependency>
<dependency>
<groupId>net.anotheria</groupId>
<artifactId>distributeme-generator</artifactId>
<version>${distributeme.version}</version>
</dependency>
<dependency>
<groupId>net.anotheria</groupId>
<artifactId>distributeme-support</artifactId>
<version>${distributeme.version}</version>
</dependency>
<dependency>
<groupId>net.anotheria</groupId>
<artifactId>ano-prise</artifactId>
<exclusions>
<exclusion>
<groupId>net.anotheria</groupId>
<artifactId>ano-db</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- re-added explicit dependency to dozer for form mapping -->
<dependency>
<groupId>net.anotheria</groupId>
<artifactId>ano-util</artifactId>
<exclusions>
<exclusion>
<groupId>blowfish</groupId>
<artifactId>blowfish</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<!--<scope>test</scope> -->
</dependency>
<dependency>
<groupId>jakarta.servlet.jsp</groupId>
<artifactId>jakarta.servlet.jsp-api</artifactId>
<version>3.1.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>2.22</version>
</dependency>
</dependencies>
</project>