antisamy-project
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.owasp.antisamy</groupId> <artifactId>antisamy-project</artifactId> <version>1.5.3</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"> <name>OWASP AntiSamy Project</name> <description>The OWASP AntiSamy project is a collection of APIs for safely allowing users to supply their own HTML and CSS without exposing the site to XSS vulnerabilities. </description> <url>http://www.owasp.org/index.php/Category:OWASP_AntiSamy_Project</url> <modelVersion>4.0.0</modelVersion> <groupId>org.owasp.antisamy</groupId> <artifactId>antisamy-project</artifactId> <packaging>pom</packaging> <version>1.5.3</version> <developers> <developer> <name>Arshan Dabirsiaghi</name> <email>arshan.dabirsiaghi@gmail.com</email> <organization>OWASP</organization> <organizationUrl>http://www.owasp.org</organizationUrl> <roles> <role>architect</role> <role>developer</role> </roles> </developer> <developer> <name>Jason Li</name> <email>li.jason.c@gmail.com</email> <organization>OWASP</organization> <organizationUrl>http://www.owasp.org</organizationUrl> <roles> <role>developer</role> </roles> </developer> <developer> <name>J Irving</name> <email>j@lollyshouse.net</email> <roles> <role>developer</role> </roles> </developer> <developer> <name>Chris Schmidt</name> <email>chris.schmidt@owasp.org</email> <roles> <role>Buildmonkey</role> </roles> </developer> </developers> <organization> <name>The Open Web Application Security Project (OWASP)</name> <url>http://www.owasp.org/</url> </organization> <scm> <url>http://http://code.google.com/p/owaspantisamy</url> <connection>scm:git:https://code.google.com/p/owaspantisamy/</connection> <developerConnection>scm:git:https://code.google.com/p/owaspantisamy/</developerConnection> <tag>antisamy-project-1.5.3</tag> </scm> <licenses> <license> <name>BSD License</name> <url>http://www.opensource.org/licenses/bsd-license.php</url> <distribution>repo</distribution> </license> </licenses> <issueManagement> <system>Google Code</system> <url>http://code.google.com/p/owaspantisamy/issues/list</url> </issueManagement> <!-- Sonatype Maven Repository --> <distributionManagement> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>sonatype-nexus-staging</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> </distributionManagement> <modules> <module>antisamy</module> <module>antisamy-sample-configs</module> <module>antisamy-distribution</module> <module>antisamy-demo</module> </modules> <dependencyManagement> <dependencies> <dependency> <groupId>org.owasp.antisamy</groupId> <artifactId>antisamy-sample-configs</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.owasp.antisamy</groupId> <artifactId>antisamy</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.owasp.antisamy</groupId> <artifactId>antisamy-demo</artifactId> <version>${project.version}</version> <type>war</type> </dependency> <dependency> <groupId>org.apache.xmlgraphics</groupId> <artifactId>batik-css</artifactId> <version>1.7</version> </dependency> <dependency> <groupId>net.sourceforge.nekohtml</groupId> <artifactId>nekohtml</artifactId> <version>1.9.16</version> </dependency> <dependency> <groupId>commons-httpclient</groupId> <artifactId>commons-httpclient</artifactId> <version>3.1</version> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5</version> </dependency> <dependency> <groupId>org.apache.struts</groupId> <artifactId>struts-core</artifactId> <version>1.3.10</version> </dependency> <dependency> <groupId>org.apache.struts</groupId> <artifactId>struts-taglib</artifactId> <version>1.3.10</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> </dependencies> </dependencyManagement> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.5.1</version> <configuration> <source>1.5</source> <target>1.5</target> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.13</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.3.2</version> <configuration> <releaseProfiles>sign-release-artifacts</releaseProfiles> <tagBase>https://owaspantisamy.googlecode.com/svn/tags/Java/</tagBase> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>1.2</version> <executions> <execution> <id>check-for-updates</id> <goals> <goal>display-dependency-updates</goal> <goal>display-plugin-updates</goal> </goals> <phase>initialize</phase> </execution> </executions> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9</version> </plugin> </plugins> </reporting> <profiles> <profile> <id>sign-release-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.4</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>