proxy
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>de.teiesti.proxy</groupId>
<artifactId>proxy</artifactId>
<version>1.0.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>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <groupId>de.teiesti.proxy</groupId> <artifactId>proxy</artifactId> <version>1.0.0</version> <packaging>jar</packaging> <name>proxy</name> <description>Provides high-level algorithms and data structures for proxy objects.</description> <url>https://github.com/teiesti/proxy</url> <developers> <developer> <id>teiesti</id> <name>Tobias Stolzmann</name> <email>tobias.stolzmann@gmail.com</email> </developer> </developers> <licenses> <license> <name>The MIT License (MIT)</name> <url>http://opensource.org/licenses/MIT</url> </license> </licenses> <scm> <connection>scm:git:git@github.com/teiesti/proxy.git</connection> <developerConnection>scm:git:ssh://git@github.com/teiesti/proxy.git</developerConnection> <url>https://github.com/teiesti/proxy</url> </scm> <!-- set UTF-8 encoding for compatible Maven plugins --> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <build> <!-- configure Java version --> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> </dependencies> </project>