Download cors-filter-2.5.jar file

Introduction

You can download cors-filter-2.5.jar in this page.

License

The Apache Software License, Version 2.0

Type List

cors-filter-2.5.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.thetransactioncompany/cors-filter/pom.properties
META-INF/maven/com.thetransactioncompany/cors-filter/pom.xml
com.thetransactioncompany.cors.CORSConfiguration.class
com.thetransactioncompany.cors.CORSConfigurationException.class
com.thetransactioncompany.cors.CORSConfigurationLoader.class
com.thetransactioncompany.cors.CORSException.class
com.thetransactioncompany.cors.CORSFilter.class
com.thetransactioncompany.cors.CORSRequestHandler.class
com.thetransactioncompany.cors.CORSRequestType.class
com.thetransactioncompany.cors.CORSResponseWrapper.class
com.thetransactioncompany.cors.HeaderName.class
com.thetransactioncompany.cors.HeaderUtils.class
com.thetransactioncompany.cors.Origin.class
com.thetransactioncompany.cors.OriginException.class
com.thetransactioncompany.cors.RequestTagger.class
com.thetransactioncompany.cors.ValidatedOrigin.class
com.thetransactioncompany.cors.autoreconf.AutoReconfigurableCORSFilter.class
com.thetransactioncompany.cors.autoreconf.CORSConfigurationFileWatcher.class
com.thetransactioncompany.cors.autoreconf.CORSConfigurationWatcher.class
com.thetransactioncompany.cors.environment.Environment.class
com.thetransactioncompany.cors.environment.SystemProperties.class

Pom

cors-filter-2.5.pom file content.

<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>com.thetransactioncompany</groupId>
	<artifactId>cors-filter</artifactId>
	<version>2.5</version>
	<packaging>jar</packaging>

	<name>Cross-Origin Resource Sharing (CORS) Filter</name>
	<description>
		CORS Filter is a universal solution for fitting Cross-Origin Resource
		Sharing (CORS) support to Java web applications. CORS is a recent W3C
		effort to introduce a standard mechanism for enabling cross-domain
		requests in web browsers and participating servers.
	</description>
	<inceptionYear>2010</inceptionYear>
	<url>http://software.dzhuvinov.com/cors-filter.html</url>

	<organization>
		<name>The Transaction Company</name>
		<url>http://software.dzhuvinov.com</url>
	</organization>

	<licenses>
		<license>
			<name>The Apache Software License, Version 2.0</name>
			<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
			<distribution>repo</distribution>
		</license>
	</licenses>

	<contributors>
		<contributor>
			<name>Vladimir Dzhuvinov</name>
			<email>vladimir@dzhuvinov.com</email>
			<roles>
				<role>maintainer</role>
			</roles>
		</contributor>
		<contributor>
			<name>Joost Cassee</name>
			<email>joost@cassee.net</email>
			<roles>
				<role>packager</role>
			</roles>
		</contributor>
	</contributors>

	<scm>
		<connection>scm:git:https://bitbucket.org/thetransactioncompany/cors-filter.git</connection>
		<developerConnection>scm:git:git@bitbucket.org:thetransactioncompany/cors-filter.git</developerConnection>
		<url>https://bitbucket.org/thetransactioncompany/cors-filter</url>
	  	<tag>2.5</tag>
	</scm>

	<dependencies>
		<dependency>
			<groupId>com.thetransactioncompany</groupId>
			<artifactId>java-property-utils</artifactId>
			<version>1.9.1</version>
		</dependency>
		<dependency>
			<groupId>javax.servlet</groupId>
			<artifactId>javax.servlet-api</artifactId>
			<version>3.0.1</version>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.11</version>
			<scope>test</scope>
		</dependency>
	</dependencies>


	<build>
		<pluginManagement>
			<plugins>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-compiler-plugin</artifactId>
					<version>2.3.2</version>
				</plugin>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-surefire-plugin</artifactId>
					<version>2.9</version>
				</plugin>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-jar-plugin</artifactId>
					<version>2.4</version>
				</plugin>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-war-plugin</artifactId>
					<version>2.3</version>
				</plugin>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-source-plugin</artifactId>
					<version>2.1.2</version>
				</plugin>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-javadoc-plugin</artifactId>
					<version>2.8</version>
				</plugin>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-deploy-plugin</artifactId>
					<version>2.7</version>
				</plugin>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-release-plugin</artifactId>
					<version>2.3.2</version>
				</plugin>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-gpg-plugin</artifactId>
					<version>1.1</version>
				</plugin>
				<plugin>
					<groupId>org.codehaus.mojo</groupId>
					<artifactId>buildnumber-maven-plugin</artifactId>
					<version>1.1</version>
				</plugin>
			</plugins>
		</pluginManagement>

		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<configuration>
					<source>1.6</source>
					<target>1.6</target>
					<compilerArgument>-Xlint</compilerArgument>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>buildnumber-maven-plugin</artifactId>
				<executions>
					<execution>
						<phase>validate</phase>
						<goals>
							<goal>create</goal>
						</goals>
					</execution>
				</executions>
				<configuration>
					<getRevisionOnlyOnce>true</getRevisionOnlyOnce>
					<doCheck>false</doCheck>
					<doUpdate>false</doUpdate>
					<timestampFormat>{0,date,yyyyMMdd.HHmmss.SSS}</timestampFormat>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-jar-plugin</artifactId>
				<configuration>
					<excludes>
						<exclude>**/demo/</exclude>
						<exclude>**/demo/*</exclude>
					</excludes>
					<archive>
						<manifestEntries>
							<Build-Date>${timestamp}</Build-Date>
							<Build-Number>${buildNumber}</Build-Number>
							<Build-Tag>${project.scm.tag}</Build-Tag>
						</manifestEntries>
						<manifest>
							<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
							<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
						</manifest>
					</archive>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-war-plugin</artifactId>
				<configuration>
					<classifier>demo</classifier>
					<archiveClasses>false</archiveClasses>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-javadoc-plugin</artifactId>
				<configuration>
					<linksource>true</linksource>
				</configuration>
				<executions>
					<execution>
						<goals>
							<goal>jar</goal>
						</goals>
					</execution>
				</executions>
			</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>org.apache.maven.plugins</groupId>
				<artifactId>maven-deploy-plugin</artifactId>
			</plugin>
		</plugins>
	</build>

	<profiles>
		<profile>
			<id>release-sign-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>
						<executions>
							<execution>
								<id>sign-artifacts</id>
								<phase>verify</phase>
								<goals>
									<goal>sign</goal>
								</goals>
							</execution>
						</executions>
					</plugin>
				</plugins>
			</build>
		</profile>
	</profiles>
</project>

POM Entry

<dependency>
   <groupId>com.thetransactioncompany</groupId>
   <artifactId>cors-filter</artifactId>
   <version>2.5</version>
</dependency>

Download

If you think the following cors-filter-2.5.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download cors-filter-2.5.jar file




PreviousNext

Related