softeu-rewriter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>cz.softeu</groupId>
<artifactId>softeu-rewriter</artifactId>
<version>1.1</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">
<modelVersion>4.0.0</modelVersion>
<groupId>cz.softeu</groupId>
<artifactId>softeu-rewriter</artifactId>
<packaging>jar</packaging>
<version>1.1</version>
<name>SoftEU URL Rewriter</name>
<url>http://software.softeu.com/rewriter/</url>
<description>URL Rewriter is a tool for rewriting URLs in Java Servlets. It is similar to apache mod_rewrite.</description>
<scm>
<connection>scm:svn:https://www.in.softeu.cz/svn/tools/rewriter/tags/softeu-rewriter-1.1</connection>
</scm>
<organization>
<name>SoftEU s.r.o.</name>
<url>http://www.softeu.com/</url>
</organization>
<licenses>
<license>
<name>LGPL</name>
<url>http://www.gnu.org/licenses/lgpl.html</url>
</license>
</licenses>
<developers>
<developer>
<id>fers</id>
<name>Petr Ferschmann</name>
<email>pferschmann (at) softeu (.) com</email>
<organization>SoftEU s.r.o.</organization>
<timezone>+1</timezone>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
<version>3.8.1</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.4</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>xom</groupId>
<artifactId>xom</artifactId>
<version>1.1</version>
<scope>compile</scope>
</dependency>
</dependencies>
<build>
<defaultGoal>install</defaultGoal>
<plugins>
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>maven-jetty-plugin</artifactId>
<version>6.0.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>cz.softeu.svn-info</groupId>
<artifactId>maven-svn-info-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.1</version>
<configuration>
<source>1.4</source>
<target>1.4</target>
<encoding>utf-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.0.1</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jxr-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.0</version>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<forkMode>pertest</forkMode>
<argLine>-enableassertions</argLine>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>softeu-repo</id>
<url>http://maven.in.softeu.cz/softeu/</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>softeu-repo</id>
<url>http://maven.in.softeu.cz/softeu/</url>
</pluginRepository>
</pluginRepositories>
<distributionManagement>
<repository>
<id>softeu-repo</id>
<name>SoftEU release Repository</name>
<url>scp://io.in.softeu.cz/www/maven.in.softeu.cz/softeu/</url>
</repository>
</distributionManagement>
</project>