rproxy
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.anotheria</groupId>
<artifactId>rproxy</artifactId>
<version>4.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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<!-- groupid net.anotheria artifact id: rproxy-->
<groupId>net.anotheria</groupId>
<artifactId>rproxy</artifactId>
<version>4.0.0</version>
<!-- packaging jar by default -->
<!-- parent net.anotheria:parent:2.8 -->
<parent>
<groupId>net.anotheria</groupId>
<artifactId>parent</artifactId>
<version>4.0</version>
</parent>
<properties>
<source-version>11</source-version>
<target-version>11</target-version>
<aspectj.version>1.9.20</aspectj.version>
<aspectj-maven-plugin.version>1.14.0</aspectj-maven-plugin.version>
<aspectj-maven-plugin.complianceLevel>11</aspectj-maven-plugin.complianceLevel>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.13</version>
</dependency>
<dependency>
<groupId>net.anotheria</groupId>
<artifactId>ano-util</artifactId>
<version>4.0.0</version>
</dependency>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>6.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.9</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.4.11</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>1.4.11</version>
</dependency>
<dependency>
<groupId>net.anotheria</groupId>
<artifactId>moskito-core</artifactId>
<version>4.0.1</version>
</dependency>
<dependency>
<groupId>net.anotheria</groupId>
<artifactId>moskito-aop</artifactId>
<version>4.0.1</version>
</dependency>
<dependency>
<groupId>net.anotheria</groupId>
<artifactId>ano-plass</artifactId>
<version>4.0.0</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.15.0</version>
</dependency>
<dependency>
<groupId>net.anotheria</groupId>
<artifactId>configureme</artifactId>
<version>4.0.0</version>
</dependency>
<dependency>
<groupId>org.brotli</groupId>
<artifactId>dec</artifactId>
<version>0.1.2</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<version>${aspectj-maven-plugin.version}</version>
<configuration>
<complianceLevel>${aspectj-maven-plugin.complianceLevel}</complianceLevel>
<source>${source-version}</source>
<target>${target-version}</target>
<aspectLibraries>
<aspectLibrary>
<groupId>net.anotheria</groupId>
<artifactId>moskito-aop</artifactId>
</aspectLibrary>
</aspectLibraries>
</configuration>
<dependencies>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<version>${aspectj.version}</version>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjtools</artifactId>
<version>${aspectj.version}</version>
</dependency>
</dependencies>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>test-compile</goal>
</goals>
<configuration>
<source>${source-version}</source>
<target>${target-version}</target>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<scm>
<url>https://github.com/anotheria/rproxy</url>
<connection>scm:git:git@github.com:anotheria/rproxy.git</connection>
<developerConnection>scm:git:git@github.com:anotheria/rproxy.git</developerConnection>
</scm>
</project>