All Downloads are FREE. Search and download functionalities are using the official Maven repository.

Download JAR files tagged by filter with all dependencies

Search JAR files by class name

jofilter from group com.jolira (version 1.2.3)

A simple filter to prevent access to certain web-sites (such as beta version of mobile applications) using a simple username-password combination. This filter is easy to use put provides only minimal security. This mechanism is meant to be a very light-weight security mechanism for, for instance, mobile application, to keep the public out while doing development.

Group: com.jolira Artifact: jofilter
Show all versions Show documentation Show source 
 

0 downloads
Artifact jofilter
Group com.jolira
Version 1.2.3
Last update 23. June 2011
Organization not specified
URL Not specified
License not specified
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

qa-testing-utils from group dev.aherscu.qa (version 1.0.4)

Group: dev.aherscu.qa Artifact: qa-testing-utils
Show all versions Show documentation Show source 
 

0 downloads
Artifact qa-testing-utils
Group dev.aherscu.qa
Version 1.0.4


MgntUtils from group com.github.michaelgantman (version 1.7.0.1)

Set of various Utils: stacktrace noise filter, String to/from unicode sequence converter, simple Http client JSON parser/serializer, Silent String parsing to Integer and other numeric types, Parsing String to time intervals with support for time unit suffixes, JSON parser that provides serialization/deserialization of classes to JSON, Version comparator and Version ranges operations, Self-throttling binary reader from Http request, File reader, A utility that automatically initiates a Factory with instances of all classes that implement user provided interface. An infrastructure for writing Scheduled Task classes where time interval for task execution is provided in humanly readable format (such as "9h" for 9 hours)

Group: com.github.michaelgantman Artifact: MgntUtils
Show all versions Show documentation Show source 
 

16 downloads
Artifact MgntUtils
Group com.github.michaelgantman
Version 1.7.0.1
Last update 27. December 2023
Organization not specified
URL https://github.com/michaelgantman/Mgnt
License The MIT License (MIT)
Dependencies amount 7
Dependencies javax.servlet-api, slf4j-api, commons-lang3, jackson-core, jackson-databind, jackson-datatype-jsr310, javax.annotation-api,
There are maybe transitive dependencies!

managedproperties-itest from group dk.netdesign (version 2.0.2)

Group: dk.netdesign Artifact: managedproperties-itest
Show all versions 
 

0 downloads
Artifact managedproperties-itest
Group dk.netdesign
Version 2.0.2
Last update 18. April 2018
Organization not specified
URL Not specified
License not specified
Dependencies amount 8
Dependencies managedproperties-service, managedproperties-feature, managedproperties-consumer, managedproperties-test-resources, features, paxwicket, slf4j-simple, javax.inject,
There are maybe transitive dependencies!

managedproperties-consumer from group dk.netdesign (version 2.0.2)

Group: dk.netdesign Artifact: managedproperties-consumer
Show all versions Show documentation Show source 
 

0 downloads
Artifact managedproperties-consumer
Group dk.netdesign
Version 2.0.2
Last update 18. April 2018
Organization not specified
URL Not specified
License not specified
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

managedproperties-wicket from group dk.netdesign (version 2.0.2)

Group: dk.netdesign Artifact: managedproperties-wicket
Show all versions Show documentation Show source 
 

0 downloads
Artifact managedproperties-wicket
Group dk.netdesign
Version 2.0.2
Last update 18. April 2018
Organization not specified
URL Not specified
License not specified
Dependencies amount 4
Dependencies easymock, log4j-slf4j-impl, log4j-core, easymock,
There are maybe transitive dependencies!

managedproperties-test-resources from group dk.netdesign (version 2.0.2)

Group: dk.netdesign Artifact: managedproperties-test-resources
Show all versions Show documentation Show source 
 

0 downloads
Artifact managedproperties-test-resources
Group dk.netdesign
Version 2.0.2
Last update 18. April 2018
Organization not specified
URL Not specified
License not specified
Dependencies amount 3
Dependencies managedproperties-service, log4j-slf4j-impl, log4j-core,
There are maybe transitive dependencies!

managedproperties-service from group dk.netdesign (version 2.0.2)

Group: dk.netdesign Artifact: managedproperties-service
Show all versions Show documentation Show source 
 

0 downloads
Artifact managedproperties-service
Group dk.netdesign
Version 2.0.2
Last update 18. April 2018
Organization not specified
URL Not specified
License not specified
Dependencies amount 3
Dependencies log4j-slf4j-impl, log4j-core, easymock,
There are maybe transitive dependencies!

managedproperties from group dk.netdesign (version 2.0.2)

This project is meant to simplyfy the usage of the excelent Configuration Admin and MetaType services for Felix OSGi. The bundle will create a service that allows other bundles to register an annotated interface. The ManagedProperties service will then create all the Metatype information, as well as ensuring that objects are cast to their right types. ManagedProperties also has a feature called Filters. A Filter is used to create an object, say a File, directly from a primitive Configuration Admin type. It can also contain logic, to allow the configuration to fail if, for example, a File doesn't exist.

Group: dk.netdesign Artifact: managedproperties
Show all versions 
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact managedproperties
Group dk.netdesign
Version 2.0.2
Last update 18. April 2018
Organization not specified
URL https://github.com/TDC-Netdesign/ManagedProperties
License The Apache License, Version 2.0
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

compress-maven-plugin from group com.github.eliayng (version 1.0.2)

配置监控信息,在web.xml中添加 <filter> <description>拦截获取js与css过滤</description> <filter-name>MergeFilter</filter-name> <filter-class>com.njzxw.filter.MergeFilter</filter-class> <init-param> <!-- js合并输出路径 --> <param-name>jsDir</param-name> <param-value>${js.path}</param-value> </init-param> <init-param> <!-- css合并输出路径 --> <param-name>cssDir</param-name> <param-value>${css.path}</param-value> </init-param> </filter> 同时添加一个合并js\css对应一个merge.xml,最好放置在同级,如: <merge> <group name="sss" > <js path="js/common/common.js" /> <js path="js/common/index.js" /> <css path="css/common/animate.css" /> <css path="css/common/normalize.css" /> </group> </merge> 访问项目:xxx/sss.js xxx/sss.css 同时配合maven插件: compress-maven-plugin结合使用: <plugin> <groupId>com.github.eliayng</groupId> <artifactId>compress-maven-plugin</artifactId> <version>1.0.0</version> <executions> <execution> <phase>compile</phase> <goals> <goal>compress</goal> </goals> </execution> </executions> <configuration> <skip>${skipCompress}</skip> <poolNum>50</poolNum> <jsOutDir>${jsOutDir}</jsOutDir> <cssOutDir>${cssOutDir}</cssOutDir> <!--是否监控编译class文件--> <isCompressClass>true</isCompressClass> <!-- 是否复制资源文件 --> <isResourcesCopy>true</isResourcesCopy> </configuration> </plugin>

Group: com.github.eliayng Artifact: compress-maven-plugin
Show all versions Show documentation Show source 
 

1 downloads
Artifact compress-maven-plugin
Group com.github.eliayng
Version 1.0.2
Last update 03. August 2017
Organization not specified
URL https://github.com/eliayng/compress-maven-plugin
License The Eliayng License, Version 1.0
Dependencies amount 5
Dependencies maven-plugin-api, maven-plugin-annotations, maven-project, yuicompressor, closure-compiler,
There are maybe transitive dependencies!



Page 85 from 88 (items total 880)


© 2015 - 2024 Weber Informatics LLC | Privacy Policy